diff --git a/src/Accounts/Accounts/Utilities/CommandMappings.json b/src/Accounts/Accounts/Utilities/CommandMappings.json index 54b8d0e36e39..cd26828cb2c2 100644 --- a/src/Accounts/Accounts/Utilities/CommandMappings.json +++ b/src/Accounts/Accounts/Utilities/CommandMappings.json @@ -4109,6 +4109,12 @@ "New-AzOperationalInsightsPurgeWorkspace": {}, "Get-AzOperationalInsightsPurgeWorkspaceStatus": {}, "Get-AzOperationalInsightsAvailableServiceTier": {}, + "New-AzOperationalInsightsRestoreTable": {}, + "New-AzOperationalInsightsSearchTable": {}, + "New-AzOperationalInsightsTable": {}, + "Remove-AzOperationalInsightsTable": {}, + "Update-AzOperationalInsightsTable": {}, + "Invoke-AzOperationalInsightsMigrateTable": {}, "New-AzOperationalInsightsAzureAuditDataSource": {}, "Get-AzOperationalInsightsIntelligencePacks": {}, "Get-AzOperationalInsightsWorkspaceManagementGroups": {}, @@ -5220,21 +5226,75 @@ }, "Az.SpringCloud": { "Deploy-AzSpringCloudApp": {}, + "Disable-AzSpringCloudTestEndpoint": {}, + "Enable-AzSpringCloudTestEndpoint": {}, "Get-AzSpringCloud": {}, "Get-AzSpringCloudApp": {}, + "Get-AzSpringCloudAppBinding": {}, + "Get-AzSpringCloudAppCustomDomain": {}, "Get-AzSpringCloudAppDeployment": {}, + "Get-AzSpringCloudAppDeploymentLogFileUrl": {}, + "Get-AzSpringCloudBuildpackBinding": {}, + "Get-AzSpringCloudBuildService": {}, + "Get-AzSpringCloudBuildServiceAgentPool": {}, + "Get-AzSpringCloudBuildServiceBuilder": {}, + "Get-AzSpringCloudBuildServiceSupportedBuildpack": {}, + "Get-AzSpringCloudBuildServiceSupportedStack": {}, + "Get-AzSpringCloudCertificate": {}, + "Get-AzSpringCloudConfigServer": {}, + "Get-AzSpringCloudConfigurationService": {}, + "Get-AzSpringCloudMonitoringSetting": {}, + "Get-AzSpringCloudRegistry": {}, + "Get-AzSpringCloudRuntimeVersion": {}, + "Get-AzSpringCloudSku": {}, + "Get-AzSpringCloudTestKey": {}, "New-AzSpringCloud": {}, "New-AzSpringCloudApp": {}, + "New-AzSpringCloudAppBinding": {}, + "New-AzSpringCloudAppCustomDomain": {}, "New-AzSpringCloudAppDeployment": {}, + "New-AzSpringCloudAppDeploymentBuildResultObject": {}, + "New-AzSpringCloudAppDeploymentJarUploadedObject": {}, + "New-AzSpringCloudAppDeploymentNetCoreZipUploadedObject": {}, + "New-AzSpringCloudAppDeploymentSourceUploadedObject": {}, + "New-AzSpringCloudAppLoadedCertificateObject": {}, + "New-AzSpringCloudBuildpackBinding": {}, + "New-AzSpringCloudBuildpackObject": {}, + "New-AzSpringCloudBuildpacksGroupObject": {}, + "New-AzSpringCloudBuildServiceAgentPool": {}, + "New-AzSpringCloudBuildServiceBuilder": {}, + "New-AzSpringCloudCertificate": {}, + "New-AzSpringCloudConfigurationService": {}, + "New-AzSpringCloudConfigurationServiceGitRepositoryObject": {}, + "New-AzSpringCloudContentCertificateObject": {}, + "New-AzSpringCloudGitPatternRepositoryObject": {}, + "New-AzSpringCloudKeyVaultCertificateObject": {}, + "New-AzSpringCloudTestKey": {}, "Remove-AzSpringCloud": {}, "Remove-AzSpringCloudApp": {}, + "Remove-AzSpringCloudAppBinding": {}, + "Remove-AzSpringCloudAppCustomDomain": {}, "Remove-AzSpringCloudAppDeployment": {}, + "Remove-AzSpringCloudBuildpackBinding": {}, + "Remove-AzSpringCloudBuildServiceBuilder": {}, + "Remove-AzSpringCloudCertificate": {}, + "Remove-AzSpringCloudConfigurationService": {}, "Restart-AzSpringCloudAppDeployment": {}, "Start-AzSpringCloudAppDeployment": {}, + "Start-AzSpringCloudAppDeploymentJfr": {}, "Stop-AzSpringCloudAppDeployment": {}, + "Test-AzSpringCloudAppCustomDomain": {}, + "Test-AzSpringCloudConfigServer": {}, + "Test-AzSpringCloudConfigurationService": {}, + "Test-AzSpringCloudNameAvailability": {}, "Update-AzSpringCloud": {}, "Update-AzSpringCloudApp": {}, - "Update-AzSpringCloudAppDeployment": {} + "Update-AzSpringCloudAppActiveDeployment": {}, + "Update-AzSpringCloudAppBinding": {}, + "Update-AzSpringCloudAppCustomDomain": {}, + "Update-AzSpringCloudAppDeployment": {}, + "Update-AzSpringCloudConfigServer": {}, + "Update-AzSpringCloudMonitoringSetting": {} }, "Az.Sql": { "Get-AzSqlDatabaseTransparentDataEncryption": {}, diff --git a/src/SpringCloud/Az.SpringCloud.psd1 b/src/SpringCloud/Az.SpringCloud.psd1 index fc7876e9e5e2..44e2f992a7e4 100644 --- a/src/SpringCloud/Az.SpringCloud.psd1 +++ b/src/SpringCloud/Az.SpringCloud.psd1 @@ -12,7 +12,7 @@ RootModule = './Az.SpringCloud.psm1' # Version number of this module. -ModuleVersion = '0.2.0' +ModuleVersion = '0.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -165,7 +165,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - # ReleaseNotes = '' + ReleaseNotes = '* Updated API version to 2022-04-01.' # Prerelease string of this module # Prerelease = '' diff --git a/src/SpringCloud/Changelog.md b/src/SpringCloud/Changelog.md index 34a6535f0031..9605b1d02883 100644 --- a/src/SpringCloud/Changelog.md +++ b/src/SpringCloud/Changelog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.3.0 * Updated API version to 2022-04-01. ## Version 0.2.0 diff --git a/src/SpringCloud/Properties/AssemblyInfo.cs b/src/SpringCloud/Properties/AssemblyInfo.cs index 75380a627bbe..f195509bece9 100644 --- a/src/SpringCloud/Properties/AssemblyInfo.cs +++ b/src/SpringCloud/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("37fbef8b-1e31-424f-9d6c-4f27c0a49965")] -[assembly: AssemblyVersion("0.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("0.3.0")] +[assembly: AssemblyFileVersion("0.3.0")] diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1 index c98da661b489..36ba5b7e646b 100644 --- a/tools/AzPreview/AzPreview.psd1 +++ b/tools/AzPreview/AzPreview.psd1 @@ -176,7 +176,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.9.1'; }, @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '3.1.0'; }, @{ModuleName = 'Az.ServiceLinker'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.4.1'; }, - @{ModuleName = 'Az.SpringCloud'; RequiredVersion = '0.2.0'; }, + @{ModuleName = 'Az.SpringCloud'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'Az.Sql'; RequiredVersion = '3.11.0'; }, @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.StackHCI'; RequiredVersion = '1.3.0'; }, diff --git a/tools/Docs/az-ps-latest.csv b/tools/Docs/az-ps-latest.csv index 29cbe0dd4c02..446968580a6d 100644 --- a/tools/Docs/az-ps-latest.csv +++ b/tools/Docs/az-ps-latest.csv @@ -122,7 +122,7 @@ pac120,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Servic pac121,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.ServiceFabric,3.1.0 pac122,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.ServiceLinker,0.1.0 pac123,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.SignalR,1.4.1 -pac124,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.SpringCloud,0.2.0 +pac124,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.SpringCloud,0.3.0 pac125,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Sql,3.11.0 pac126,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.SqlVirtualMachine,1.1.0 pac127,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.StackHCI,1.3.0 diff --git a/tools/Tools.Common/AllowList.csv b/tools/Tools.Common/AllowList.csv index 289fbc22c4ee..87945458e11b 100644 --- a/tools/Tools.Common/AllowList.csv +++ b/tools/Tools.Common/AllowList.csv @@ -1,3 +1,4 @@ Module StackEdge -StackHCI \ No newline at end of file +StackHCI +Get-AzSpringCloudBuildServiceSupportedStack \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Az.SpringCloud.json b/tools/Tools.Common/SerializedCmdlets/Az.SpringCloud.json deleted file mode 100644 index 71c7f5b8f441..000000000000 --- a/tools/Tools.Common/SerializedCmdlets/Az.SpringCloud.json +++ /dev/null @@ -1,22434 +0,0 @@ -{ - "ProcessedTypes": {}, - "Cmdlets": [ - { - "VerbName": "Deploy", - "NounName": "AzSpringCloudApp", - "Name": "Deploy-AzSpringCloudApp", - "ClassName": "Deploy-AzSpringCloudApp", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType]", - "HttpsOnly": "System.Nullable`1[System.Boolean]", - "Public": "System.Nullable`1[System.Boolean]", - "CreatedTime": "System.Nullable`1[System.DateTime]", - "PersistentDiskSizeInGb": "System.Nullable`1[System.Int32]", - "PersistentDiskUsedInGb": "System.Nullable`1[System.Int32]", - "TemporaryDiskSizeInGb": "System.Nullable`1[System.Int32]", - "ActiveDeploymentName": "System.String", - "Fqdn": "System.String", - "IdentityPrincipalId": "System.String", - "IdentityTenantId": "System.String", - "Location": "System.String", - "PersistentDiskMountPath": "System.String", - "TemporaryDiskMountPath": "System.String", - "Url": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "JarPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "JarPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzSpringCloud", - "Name": "Get-AzSpringCloud", - "ClassName": "Get-AzSpringCloud", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "List", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IServiceResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IServiceResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState]", - "SkuCapacity": "System.Nullable`1[System.Int32]", - "Version": "System.Nullable`1[System.Int32]", - "NetworkProfileAppNetworkResourceGroup": "System.String", - "NetworkProfileAppSubnetId": "System.String", - "NetworkProfileServiceCidr": "System.String", - "NetworkProfileServiceRuntimeNetworkResourceGroup": "System.String", - "NetworkProfileServiceRuntimeSubnetId": "System.String", - "ServiceId": "System.String", - "SkuName": "System.String", - "SkuTier": "System.String", - "OutboundIPPublicIP": "System.String[]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "List1", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "Get", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzSpringCloudApp", - "Name": "Get-AzSpringCloudApp", - "ClassName": "Get-AzSpringCloudApp", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "List", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType]", - "HttpsOnly": "System.Nullable`1[System.Boolean]", - "Public": "System.Nullable`1[System.Boolean]", - "CreatedTime": "System.Nullable`1[System.DateTime]", - "PersistentDiskSizeInGb": "System.Nullable`1[System.Int32]", - "PersistentDiskUsedInGb": "System.Nullable`1[System.Int32]", - "TemporaryDiskSizeInGb": "System.Nullable`1[System.Int32]", - "ActiveDeploymentName": "System.String", - "Fqdn": "System.String", - "IdentityPrincipalId": "System.String", - "IdentityTenantId": "System.String", - "Location": "System.String", - "PersistentDiskMountPath": "System.String", - "TemporaryDiskMountPath": "System.String", - "Url": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SyncStatus", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Get", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SyncStatus", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SyncStatus", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzSpringCloudAppDeployment", - "Name": "Get-AzSpringCloudAppDeployment", - "ClassName": "Get-AzSpringCloudAppDeployment", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "List1", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Instance": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance[]", - "DeploymentSettingEnvironmentVariable": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentSettingsEnvironmentVariables", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState]", - "Status": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus]", - "DeploymentSettingRuntimeVersion": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion]", - "SourceType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType]", - "Active": "System.Nullable`1[System.Boolean]", - "CreatedTime": "System.Nullable`1[System.DateTime]", - "DeploymentSettingMemoryInGb": "System.Nullable`1[System.Int32]", - "SkuCapacity": "System.Nullable`1[System.Int32]", - "DeploymentSettingCpu": "System.Nullable`1[System.Int32]", - "DeploymentSettingJvmOption": "System.String", - "DeploymentSettingNetCoreMainEntryPath": "System.String", - "SourceVersion": "System.String", - "AppName": "System.String", - "SkuName": "System.String", - "SkuTier": "System.String", - "SourceArtifactSelector": "System.String", - "SourceRelativePath": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Version", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "List", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Version", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "Get", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List1", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Version", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "New", - "NounName": "AzSpringCloud", - "Name": "New-AzSpringCloud", - "ClassName": "New-AzSpringCloud", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IServiceResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IServiceResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState]", - "SkuCapacity": "System.Nullable`1[System.Int32]", - "Version": "System.Nullable`1[System.Int32]", - "NetworkProfileAppNetworkResourceGroup": "System.String", - "NetworkProfileAppSubnetId": "System.String", - "NetworkProfileServiceCidr": "System.String", - "NetworkProfileServiceRuntimeNetworkResourceGroup": "System.String", - "NetworkProfileServiceRuntimeSubnetId": "System.String", - "ServiceId": "System.String", - "SkuName": "System.String", - "SkuTier": "System.String", - "OutboundIPPublicIP": "System.String[]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GitPropertyUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuTier", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TraceAppInsightInstrumentationKey", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TraceEnabled", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "GitPropertyUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceAppInsightInstrumentationKey", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceEnabled", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "New", - "NounName": "AzSpringCloudApp", - "Name": "New-AzSpringCloudApp", - "ClassName": "New-AzSpringCloudApp", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType]", - "HttpsOnly": "System.Nullable`1[System.Boolean]", - "Public": "System.Nullable`1[System.Boolean]", - "CreatedTime": "System.Nullable`1[System.DateTime]", - "PersistentDiskSizeInGb": "System.Nullable`1[System.Int32]", - "PersistentDiskUsedInGb": "System.Nullable`1[System.Int32]", - "TemporaryDiskSizeInGb": "System.Nullable`1[System.Int32]", - "ActiveDeploymentName": "System.String", - "Fqdn": "System.String", - "IdentityPrincipalId": "System.String", - "IdentityTenantId": "System.String", - "Location": "System.String", - "PersistentDiskMountPath": "System.String", - "TemporaryDiskMountPath": "System.String", - "Url": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ActiveDeploymentName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Fqdn", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpsOnly", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PersistentDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PersistentDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Public", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TemporaryDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TemporaryDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ActiveDeploymentName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Fqdn", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpsOnly", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Public", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "New", - "NounName": "AzSpringCloudAppDeployment", - "Name": "New-AzSpringCloudAppDeployment", - "ClassName": "New-AzSpringCloudAppDeployment", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Instance": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance[]", - "DeploymentSettingEnvironmentVariable": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentSettingsEnvironmentVariables", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState]", - "Status": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus]", - "DeploymentSettingRuntimeVersion": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion]", - "SourceType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType]", - "Active": "System.Nullable`1[System.Boolean]", - "CreatedTime": "System.Nullable`1[System.DateTime]", - "DeploymentSettingMemoryInGb": "System.Nullable`1[System.Int32]", - "SkuCapacity": "System.Nullable`1[System.Int32]", - "DeploymentSettingCpu": "System.Nullable`1[System.Int32]", - "DeploymentSettingJvmOption": "System.String", - "DeploymentSettingNetCoreMainEntryPath": "System.String", - "SourceVersion": "System.String", - "AppName": "System.String", - "SkuName": "System.String", - "SkuTier": "System.String", - "SourceArtifactSelector": "System.String", - "SourceRelativePath": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Cpu", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnvironmentVariable", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "JvmOption", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MemoryInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuntimeVersion", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceArtifactSelector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceRelativePath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Cpu", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnvironmentVariable", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "JvmOption", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MemoryInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuntimeVersion", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceArtifactSelector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceRelativePath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Remove", - "NounName": "AzSpringCloud", - "Name": "Remove-AzSpringCloud", - "ClassName": "Remove-AzSpringCloud", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Remove", - "NounName": "AzSpringCloudApp", - "Name": "Remove-AzSpringCloudApp", - "ClassName": "Remove-AzSpringCloudApp", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Remove", - "NounName": "AzSpringCloudAppDeployment", - "Name": "Remove-AzSpringCloudAppDeployment", - "ClassName": "Remove-AzSpringCloudAppDeployment", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Restart", - "NounName": "AzSpringCloudAppDeployment", - "Name": "Restart-AzSpringCloudAppDeployment", - "ClassName": "Restart-AzSpringCloudAppDeployment", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "Restart", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Restart", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "RestartViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Start", - "NounName": "AzSpringCloudAppDeployment", - "Name": "Start-AzSpringCloudAppDeployment", - "ClassName": "Start-AzSpringCloudAppDeployment", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "Start", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Start", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "StartViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Stop", - "NounName": "AzSpringCloudAppDeployment", - "Name": "Stop-AzSpringCloudAppDeployment", - "ClassName": "Stop-AzSpringCloudAppDeployment", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "Stop", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Stop", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "StopViaIdentity", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "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.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Update", - "NounName": "AzSpringCloud", - "Name": "Update-AzSpringCloud", - "ClassName": "Update-AzSpringCloud", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IServiceResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IServiceResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState]", - "SkuCapacity": "System.Nullable`1[System.Int32]", - "Version": "System.Nullable`1[System.Int32]", - "NetworkProfileAppNetworkResourceGroup": "System.String", - "NetworkProfileAppSubnetId": "System.String", - "NetworkProfileServiceCidr": "System.String", - "NetworkProfileServiceRuntimeNetworkResourceGroup": "System.String", - "NetworkProfileServiceRuntimeSubnetId": "System.String", - "ServiceId": "System.String", - "SkuName": "System.String", - "SkuTier": "System.String", - "OutboundIPPublicIP": "System.String[]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GitPropertyUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuTier", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TraceAppInsightInstrumentationKey", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TraceEnabled", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "GitPropertyUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceAppInsightInstrumentationKey", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceEnabled", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpdateViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "GitPropertyUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceAppInsightInstrumentationKey", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceEnabled", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "GitPropertyUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceAppInsightInstrumentationKey", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TraceEnabled", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Update", - "NounName": "AzSpringCloudApp", - "Name": "Update-AzSpringCloudApp", - "ClassName": "Update-AzSpringCloudApp", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IAppResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType]", - "HttpsOnly": "System.Nullable`1[System.Boolean]", - "Public": "System.Nullable`1[System.Boolean]", - "CreatedTime": "System.Nullable`1[System.DateTime]", - "PersistentDiskSizeInGb": "System.Nullable`1[System.Int32]", - "PersistentDiskUsedInGb": "System.Nullable`1[System.Int32]", - "TemporaryDiskSizeInGb": "System.Nullable`1[System.Int32]", - "ActiveDeploymentName": "System.String", - "Fqdn": "System.String", - "IdentityPrincipalId": "System.String", - "IdentityTenantId": "System.String", - "Location": "System.String", - "PersistentDiskMountPath": "System.String", - "TemporaryDiskMountPath": "System.String", - "Url": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ActiveDeploymentName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Fqdn", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpsOnly", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PersistentDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PersistentDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Public", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TemporaryDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TemporaryDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "AppName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ActiveDeploymentName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Fqdn", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpsOnly", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Public", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpdateViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ActiveDeploymentName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Fqdn", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpsOnly", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Public", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ActiveDeploymentName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Fqdn", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpsOnly", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PersistentDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Public", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskMountPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TemporaryDiskSizeInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Update", - "NounName": "AzSpringCloudAppDeployment", - "Name": "Update-AzSpringCloudAppDeployment", - "ClassName": "Update-AzSpringCloudAppDeployment", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "UpdateExpanded", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentResource, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Instance": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance[]", - "DeploymentSettingEnvironmentVariable": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentSettingsEnvironmentVariables", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState]", - "Status": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus]", - "DeploymentSettingRuntimeVersion": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion]", - "SourceType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType]", - "Active": "System.Nullable`1[System.Boolean]", - "CreatedTime": "System.Nullable`1[System.DateTime]", - "DeploymentSettingMemoryInGb": "System.Nullable`1[System.Int32]", - "SkuCapacity": "System.Nullable`1[System.Int32]", - "DeploymentSettingCpu": "System.Nullable`1[System.Int32]", - "DeploymentSettingJvmOption": "System.String", - "DeploymentSettingNetCoreMainEntryPath": "System.String", - "SourceVersion": "System.String", - "AppName": "System.String", - "SkuName": "System.String", - "SkuTier": "System.String", - "SourceArtifactSelector": "System.String", - "SourceRelativePath": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Cpu", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnvironmentVariable", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "JvmOption", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MemoryInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuntimeVersion", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceArtifactSelector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceRelativePath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "UpdateExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AppName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ServiceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Cpu", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnvironmentVariable", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "JvmOption", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MemoryInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuntimeVersion", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceArtifactSelector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceRelativePath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "UpdateViaIdentityExpanded", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.ISpringCloudIdentity, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AppName": "System.String", - "BindingName": "System.String", - "CertificateName": "System.String", - "DeploymentName": "System.String", - "DomainName": "System.String", - "Id": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ServiceName": "System.String", - "SubscriptionId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Cpu", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnvironmentVariable", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "JvmOption", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MemoryInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuntimeVersion", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceArtifactSelector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceRelativePath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Cpu", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnvironmentVariable", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "JvmOption", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MemoryInGb", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuntimeVersion", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceArtifactSelector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceRelativePath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceType", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NoWait", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - } - ], - "TypeDictionary": { - "System.String": { - "Namespace": null, - "Name": "System.String", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Boolean": { - "Namespace": null, - "Name": "System.Boolean", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Byte": { - "Namespace": null, - "Name": "System.Byte", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.SByte": { - "Namespace": null, - "Name": "System.SByte", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Int16": { - "Namespace": null, - "Name": "System.Int16", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.UInt16": { - "Namespace": null, - "Name": "System.UInt16", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Int32": { - "Namespace": null, - "Name": "System.Int32", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.UInt32": { - "Namespace": null, - "Name": "System.UInt32", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Int64": { - "Namespace": null, - "Name": "System.Int64", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.UInt64": { - "Namespace": null, - "Name": "System.UInt64", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Single": { - "Namespace": null, - "Name": "System.Single", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Double": { - "Namespace": null, - "Name": "System.Double", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Decimal": { - "Namespace": null, - "Name": "System.Decimal", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Char": { - "Namespace": null, - "Name": "System.Char", - "AssemblyQualifiedName": null, - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.AppResourceProvisioningState" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Management.Automation.CompletionResult" - ], - "Methods": [], - "Constructors": [] - }, - "System.Management.Automation.CompletionResult": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Type": { - "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ManagedIdentityType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "System.Nullable`1[System.Boolean]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Boolean" - ], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[System.DateTime]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.DateTime" - ], - "Methods": [], - "Constructors": [] - }, - "System.DateTime": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[System.Int32]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Int32" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.SendAsyncStep, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Target": "System.Object", - "Method": "System.Reflection.MethodInfo" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Invoke", - "Parameters": [ - { - "Name": "request", - "Type": "System.Net.Http.HttpRequestMessage" - }, - { - "Name": "callback", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Runtime.IEventListener" - }, - { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.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.SpringCloud.Runtime.IEventListener" - }, - { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.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", - "Parameters": [], - "ReturnType": "System.Delegate[]" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "Clone", - "Parameters": [], - "ReturnType": "System.Object" - }, - { - "Name": "DynamicInvoke", - "Parameters": [ - { - "Name": "args", - "Type": "System.Object[]" - } - ], - "ReturnType": "System.Object" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - } - ], - "Constructors": [ - { - "Name": "", - "Parameters": [ - { - "Name": "object", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "method", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": null - } - ] - }, - "System.Object": { - "Namespace": "System", - "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Reflection.MethodInfo": { - "Namespace": "System.Reflection", - "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { - "Namespace": "System.Threading.Tasks", - "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Net.Http.HttpResponseMessage" - ], - "Methods": [], - "Constructors": [] - }, - "System.Net.Http.HttpResponseMessage": { - "Namespace": "System.Net.Http", - "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.IAsyncResult": { - "Namespace": "System", - "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Delegate[]": { - "Namespace": "System", - "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.Delegate", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Delegate": { - "Namespace": "System", - "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.ProvisioningState" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "System.String[]": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance[], Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentInstance, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DiscoveryStatus": "System.String", - "Name": "System.String", - "Reason": "System.String", - "StartTime": "System.String", - "Status": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentSettingsEnvironmentVariables": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentSettingsEnvironmentVariables", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Models.Api20200701.IDeploymentSettingsEnvironmentVariables, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceProvisioningState" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.DeploymentResourceStatus" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.RuntimeVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType, Az.SpringCloud.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.SpringCloud.Support.UserSourceType" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - } - } -}