diff --git a/src/SignalR/SignalR/ChangeLog.md b/src/SignalR/SignalR/ChangeLog.md index 468e0d7ceba4..28b3bb3d95de 100644 --- a/src/SignalR/SignalR/ChangeLog.md +++ b/src/SignalR/SignalR/ChangeLog.md @@ -18,6 +18,11 @@ - Additional information about change #1 --> ## Upcoming Release +* Breaking change: + - Removed `HostNamePrefix` property of output type `PSSignalRResource` of following cmdlets: + - `Get-AzSignalR` + - `New-AzSignalR` + - `Update-AzSignalR` ## Version 1.5.0 * Updated to API version 2022-08-01-preview diff --git a/src/SignalR/SignalR/Cmdlets/GetAzureRmSignalR.cs b/src/SignalR/SignalR/Cmdlets/GetAzureRmSignalR.cs index 27bdfffc5bb5..05799d46c285 100644 --- a/src/SignalR/SignalR/Cmdlets/GetAzureRmSignalR.cs +++ b/src/SignalR/SignalR/Cmdlets/GetAzureRmSignalR.cs @@ -18,13 +18,11 @@ using Microsoft.Azure.Commands.SignalR.Models; using Microsoft.Azure.Commands.SignalR.Properties; using Microsoft.Azure.Management.SignalR; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.SignalR.Cmdlets { [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SignalR", DefaultParameterSetName = ListSignalRServiceParameterSet)] [OutputType(typeof(PSSignalRResource))] - [CmdletOutputBreakingChange(typeof(PSSignalRResource), DeprecatedOutputProperties = new String[] { nameof(PSSignalRResource.HostNamePrefix) })] public class GetAzureRmSignalR : SignalRCmdletBase, IWithResourceId { [Parameter( diff --git a/src/SignalR/SignalR/Cmdlets/NewAzureRmSignalR.cs b/src/SignalR/SignalR/Cmdlets/NewAzureRmSignalR.cs index 58aa07631c40..8a93fa0f028e 100644 --- a/src/SignalR/SignalR/Cmdlets/NewAzureRmSignalR.cs +++ b/src/SignalR/SignalR/Cmdlets/NewAzureRmSignalR.cs @@ -12,7 +12,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.Common.Strategies; @@ -21,14 +20,12 @@ using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.SignalR; using Microsoft.Azure.Management.SignalR.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Newtonsoft.Json; namespace Microsoft.Azure.Commands.SignalR.Cmdlets { [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SignalR", SupportsShouldProcess = true)] [OutputType(typeof(PSSignalRResource))] - [CmdletOutputBreakingChange(typeof(PSSignalRResource), DeprecatedOutputProperties = new String[] { nameof(PSSignalRResource.HostNamePrefix) })] public sealed class NewAzureRmSignalR : SignalRCmdletBase { private const string DefaultSku = "Standard_S1"; diff --git a/src/SignalR/SignalR/Cmdlets/UpdateAzureRmSignalR.cs b/src/SignalR/SignalR/Cmdlets/UpdateAzureRmSignalR.cs index 399fdc4008cc..44a0ad5a9987 100644 --- a/src/SignalR/SignalR/Cmdlets/UpdateAzureRmSignalR.cs +++ b/src/SignalR/SignalR/Cmdlets/UpdateAzureRmSignalR.cs @@ -21,13 +21,11 @@ using Microsoft.Azure.Commands.SignalR.Properties; using Microsoft.Azure.Management.SignalR; using Microsoft.Azure.Management.SignalR.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.SignalR.Cmdlets { [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SignalR", SupportsShouldProcess = true, DefaultParameterSetName = ResourceGroupParameterSet)] [OutputType(typeof(PSSignalRResource))] - [CmdletOutputBreakingChange(typeof(PSSignalRResource), DeprecatedOutputProperties = new String[] { nameof(PSSignalRResource.HostNamePrefix) })] public class UpdateAzureRmSignalR : SignalRCmdletBase, IWithInputObject, IWithResourceId { private const int DefaultUnitCount = 1; diff --git a/src/SignalR/SignalR/Models/PSSignalRResource.cs b/src/SignalR/SignalR/Models/PSSignalRResource.cs index bf296d8fc88c..f163993c021c 100644 --- a/src/SignalR/SignalR/Models/PSSignalRResource.cs +++ b/src/SignalR/SignalR/Models/PSSignalRResource.cs @@ -23,8 +23,6 @@ public sealed class PSSignalRResource : PSTrackedResource public string HostName { get; } - public string HostNamePrefix { get; } - public string ProvisioningState { get; } public int? PublicPort { get; } diff --git a/src/SignalR/SignalR/SignalR.csproj b/src/SignalR/SignalR/SignalR.csproj index 45492e9a56f4..b81299bea93b 100644 --- a/src/SignalR/SignalR/SignalR.csproj +++ b/src/SignalR/SignalR/SignalR.csproj @@ -21,10 +21,6 @@ - - - - diff --git a/src/SignalR/SignalR/help/Get-AzSignalR.md b/src/SignalR/SignalR/help/Get-AzSignalR.md index 6ac5cbd2dd55..2c3e8d30decb 100644 --- a/src/SignalR/SignalR/help/Get-AzSignalR.md +++ b/src/SignalR/SignalR/help/Get-AzSignalR.md @@ -150,9 +150,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### System.String + ## OUTPUTS ### Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource + ## NOTES ## RELATED LINKS diff --git a/src/SignalR/SignalR/help/Get-AzSignalRKey.md b/src/SignalR/SignalR/help/Get-AzSignalRKey.md index 74aedfe86c9b..ba49f257d981 100644 --- a/src/SignalR/SignalR/help/Get-AzSignalRKey.md +++ b/src/SignalR/SignalR/help/Get-AzSignalRKey.md @@ -148,10 +148,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### System.String + ### Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource + ## OUTPUTS ### Microsoft.Azure.Commands.SignalR.Models.PSSignalRKeys + ## NOTES ## RELATED LINKS diff --git a/src/SignalR/SignalR/help/Get-AzWebPubSub.md b/src/SignalR/SignalR/help/Get-AzWebPubSub.md index e26e87efa096..639899dc1800 100644 --- a/src/SignalR/SignalR/help/Get-AzWebPubSub.md +++ b/src/SignalR/SignalR/help/Get-AzWebPubSub.md @@ -14,24 +14,31 @@ Get the resource and its properties. ### List (Default) ``` -Get-AzWebPubSub [-SubscriptionId ] [-DefaultProfile ] [] +Get-AzWebPubSub [-SubscriptionId ] [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] ``` ### Get ``` Get-AzWebPubSub -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [] + [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ### List1 ``` -Get-AzWebPubSub -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] - [] +Get-AzWebPubSub -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] ``` ### GetViaIdentity ``` -Get-AzWebPubSub -InputObject [-DefaultProfile ] [] +Get-AzWebPubSub -InputObject [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] ``` ## DESCRIPTION @@ -90,6 +97,21 @@ psdemo-wps eastus Standard_S1 ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -105,6 +127,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -136,6 +188,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -174,11 +271,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.IWebPubSubResource - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Get-AzWebPubSubCustomCertificate.md b/src/SignalR/SignalR/help/Get-AzWebPubSubCustomCertificate.md index 1826e29eec5b..11a8bc30875f 100644 --- a/src/SignalR/SignalR/help/Get-AzWebPubSubCustomCertificate.md +++ b/src/SignalR/SignalR/help/Get-AzWebPubSubCustomCertificate.md @@ -15,19 +15,24 @@ Get a custom certificate. ### List (Default) ``` Get-AzWebPubSubCustomCertificate -ResourceGroupName -ResourceName - [-SubscriptionId ] [-DefaultProfile ] [] + [-SubscriptionId ] [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ### Get ``` Get-AzWebPubSubCustomCertificate -Name -ResourceGroupName -ResourceName - [-SubscriptionId ] [-DefaultProfile ] [] + [-SubscriptionId ] [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ### GetViaIdentity ``` -Get-AzWebPubSubCustomCertificate -InputObject [-DefaultProfile ] - [] +Get-AzWebPubSubCustomCertificate -InputObject [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] ``` ## DESCRIPTION @@ -73,6 +78,21 @@ mycustomcert https://kvcustomcertificatetest.vault.azure.net/ manual-test ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -88,6 +108,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -119,6 +169,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -172,11 +267,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.ICustomCertificate - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Get-AzWebPubSubCustomDomain.md b/src/SignalR/SignalR/help/Get-AzWebPubSubCustomDomain.md index a76f8b721b2a..be4b73760dea 100644 --- a/src/SignalR/SignalR/help/Get-AzWebPubSubCustomDomain.md +++ b/src/SignalR/SignalR/help/Get-AzWebPubSubCustomDomain.md @@ -15,18 +15,24 @@ Get a custom domain. ### List (Default) ``` Get-AzWebPubSubCustomDomain -ResourceGroupName -ResourceName [-SubscriptionId ] - [-DefaultProfile ] [] + [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ### Get ``` Get-AzWebPubSubCustomDomain -Name -ResourceGroupName -ResourceName - [-SubscriptionId ] [-DefaultProfile ] [] + [-SubscriptionId ] [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ### GetViaIdentity ``` -Get-AzWebPubSubCustomDomain -InputObject [-DefaultProfile ] [] +Get-AzWebPubSubCustomDomain -InputObject [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] ``` ## DESCRIPTION @@ -72,6 +78,21 @@ mydomain wps.manual-test.dev.signalr.azure.com Succeeded ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -87,6 +108,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -118,6 +169,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -171,11 +267,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.ICustomDomain - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Get-AzWebPubSubHub.md b/src/SignalR/SignalR/help/Get-AzWebPubSubHub.md index 7ca512f2bb69..e6bc11ce6f6a 100644 --- a/src/SignalR/SignalR/help/Get-AzWebPubSubHub.md +++ b/src/SignalR/SignalR/help/Get-AzWebPubSubHub.md @@ -15,18 +15,24 @@ Get a hub setting. ### List (Default) ``` Get-AzWebPubSubHub -ResourceGroupName -ResourceName [-SubscriptionId ] - [-DefaultProfile ] [] + [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ### Get ``` Get-AzWebPubSubHub -Name -ResourceGroupName -ResourceName - [-SubscriptionId ] [-DefaultProfile ] [] + [-SubscriptionId ] [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ### GetViaIdentity ``` -Get-AzWebPubSubHub -InputObject [-DefaultProfile ] [] +Get-AzWebPubSubHub -InputObject [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] ``` ## DESCRIPTION @@ -74,6 +80,21 @@ testHub deny ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -89,6 +110,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -120,6 +171,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -173,11 +269,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.IWebPubSubHub - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Get-AzWebPubSubKey.md b/src/SignalR/SignalR/help/Get-AzWebPubSubKey.md index 15ab62ee950d..0d426532a42e 100644 --- a/src/SignalR/SignalR/help/Get-AzWebPubSubKey.md +++ b/src/SignalR/SignalR/help/Get-AzWebPubSubKey.md @@ -15,13 +15,16 @@ Get the access keys of the resource. ### List (Default) ``` Get-AzWebPubSubKey -ResourceGroupName -ResourceName [-SubscriptionId ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### ListViaIdentity ``` -Get-AzWebPubSubKey -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Get-AzWebPubSubKey -InputObject [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -60,6 +63,21 @@ The example gets the access keys of the Web PubSub resource and then pipes the r ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -75,6 +93,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -91,6 +139,51 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -175,11 +268,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.IWebPubSubKeys - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Get-AzWebPubSubSku.md b/src/SignalR/SignalR/help/Get-AzWebPubSubSku.md index 166dd1e991c1..342b5f4854d7 100644 --- a/src/SignalR/SignalR/help/Get-AzWebPubSubSku.md +++ b/src/SignalR/SignalR/help/Get-AzWebPubSubSku.md @@ -14,7 +14,9 @@ List all available skus of the resource. ``` Get-AzWebPubSubSku -ResourceGroupName -ResourceName [-SubscriptionId ] - [-DefaultProfile ] [] + [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] ``` ## DESCRIPTION @@ -58,6 +60,21 @@ We can see from the result that there are two SKUs, one's Tier is "Free", and th ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -73,6 +90,81 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -128,7 +220,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.ISkuList - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Get-AzWebPubSubUsage.md b/src/SignalR/SignalR/help/Get-AzWebPubSubUsage.md index 2907dc81d3e5..1f4ea5f8434b 100644 --- a/src/SignalR/SignalR/help/Get-AzWebPubSubUsage.md +++ b/src/SignalR/SignalR/help/Get-AzWebPubSubUsage.md @@ -13,8 +13,9 @@ List resource usage quotas by location. ## SYNTAX ``` -Get-AzWebPubSubUsage -Location [-SubscriptionId ] [-DefaultProfile ] - [] +Get-AzWebPubSubUsage -Location [-SubscriptionId ] [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] ``` ## DESCRIPTION @@ -47,6 +48,21 @@ The example pipes the result of `Get-AzWebPubSubUsage -Location eastus` to `Form ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -62,6 +78,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location the location like "eastus" @@ -77,6 +123,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SubscriptionId Gets subscription Id which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. @@ -101,7 +192,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.ISignalRServiceUsage - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/New-AzSignalR.md b/src/SignalR/SignalR/help/New-AzSignalR.md index 084f0ce90c12..e85c00709fe1 100644 --- a/src/SignalR/SignalR/help/New-AzSignalR.md +++ b/src/SignalR/SignalR/help/New-AzSignalR.md @@ -238,7 +238,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS diff --git a/src/SignalR/SignalR/help/New-AzSignalRKey.md b/src/SignalR/SignalR/help/New-AzSignalRKey.md index 9d68c8ea950c..1f3b4d3874c7 100644 --- a/src/SignalR/SignalR/help/New-AzSignalRKey.md +++ b/src/SignalR/SignalR/help/New-AzSignalRKey.md @@ -189,10 +189,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### System.String + ### Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource + ## OUTPUTS ### System.Boolean + ## NOTES ## RELATED LINKS diff --git a/src/SignalR/SignalR/help/New-AzWebPubSub.md b/src/SignalR/SignalR/help/New-AzWebPubSub.md index 3a077f7609a6..87046b947a4a 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSub.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSub.md @@ -20,7 +20,9 @@ New-AzWebPubSub -Name -ResourceGroupName [-SubscriptionId ] [-PublicNetworkAllow ] [-PublicNetworkDeny ] [-ResourceLogCategory ] [-SkuCapacity ] [-SkuTier ] [-Tag ] [-UserAssignedIdentity ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-AsJob] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-NoWait] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -69,6 +71,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -129,6 +146,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IdentityType Represent the identity type: systemAssigned, userAssigned, None @@ -253,6 +300,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicNetworkAccess Enable or disable public network access. Default to "Enabled".When it's Enabled, network ACLs still apply.When it's Disabled, public network access is always disabled no matter what you set in network ACLs. @@ -468,7 +560,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.IWebPubSubResource - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubCustomCertificate.md b/src/SignalR/SignalR/help/New-AzWebPubSubCustomCertificate.md index 60f0ec46159d..62e8c0cae85b 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubCustomCertificate.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubCustomCertificate.md @@ -15,8 +15,9 @@ Create or update a custom certificate. ``` New-AzWebPubSubCustomCertificate -Name -ResourceGroupName -ResourceName [-SubscriptionId ] -KeyVaultBaseUri -KeyVaultSecretName - [-KeyVaultSecretVersion ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] - [] + [-KeyVaultSecretVersion ] [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -52,6 +53,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -67,6 +83,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -KeyVaultBaseUri Base uri of the KeyVault that stores certificate. @@ -142,6 +188,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -228,7 +319,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.ICustomCertificate - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubCustomDomain.md b/src/SignalR/SignalR/help/New-AzWebPubSubCustomDomain.md index 20113b34c709..344c0b1771ce 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubCustomDomain.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubCustomDomain.md @@ -15,7 +15,9 @@ Create or update a custom domain. ``` New-AzWebPubSubCustomDomain -Name -ResourceGroupName -ResourceName [-SubscriptionId ] -DomainName [-CustomCertificateId ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-PassThru] [-WhatIf] [-Confirm] [] + [-AsJob] [-Break] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] + [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -52,6 +54,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -CustomCertificateId Resource ID. @@ -97,6 +114,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Custom domain name. @@ -142,6 +189,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -228,7 +320,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.ICustomDomain - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md b/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md index 2f399bd9d0f5..46c79708c232 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md @@ -75,7 +75,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.EventHubEndpoint - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md b/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md index d7f3f235c805..6b7ce833ba3a 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md @@ -83,7 +83,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.EventNameFilter - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubHub.md b/src/SignalR/SignalR/help/New-AzWebPubSubHub.md index dd639eb6861b..1bb72749fe37 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubHub.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubHub.md @@ -15,7 +15,9 @@ Create or update a hub setting. ``` New-AzWebPubSubHub -Name -ResourceGroupName -ResourceName [-SubscriptionId ] [-AnonymousConnectPolicy ] [-EventHandler ] [-EventListener ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-AsJob] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-NoWait] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -97,6 +99,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -145,6 +162,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name The hub name. @@ -175,6 +222,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -261,7 +353,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.IWebPubSubHub - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubKey.md b/src/SignalR/SignalR/help/New-AzWebPubSubKey.md index cb3d0cbca56a..d2c3fc44ae29 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubKey.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubKey.md @@ -16,14 +16,17 @@ PrimaryKey and SecondaryKey cannot be regenerated at the same time. ### RegenerateExpanded (Default) ``` New-AzWebPubSubKey -ResourceGroupName -ResourceName [-SubscriptionId ] - -KeyType [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] [-Confirm] - [] + -KeyType [-DefaultProfile ] [-AsJob] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-NoWait] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### RegenerateViaIdentityExpanded ``` New-AzWebPubSubKey -InputObject -KeyType [-DefaultProfile ] [-AsJob] - [-NoWait] [-PassThru] [-WhatIf] [-Confirm] [] + [-Break] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] + [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -74,6 +77,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -89,6 +107,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -151,6 +199,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -235,11 +328,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.IWebPubSubKeys - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Remove-AzSignalR.md b/src/SignalR/SignalR/help/Remove-AzSignalR.md index 442d6cd2e455..fc7d40f161ba 100644 --- a/src/SignalR/SignalR/help/Remove-AzSignalR.md +++ b/src/SignalR/SignalR/help/Remove-AzSignalR.md @@ -193,10 +193,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### System.String + ### Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource + ## OUTPUTS ### System.Boolean + ## NOTES ## RELATED LINKS diff --git a/src/SignalR/SignalR/help/Remove-AzWebPubSub.md b/src/SignalR/SignalR/help/Remove-AzWebPubSub.md index f67b2d64ddcd..44dbbfec435f 100644 --- a/src/SignalR/SignalR/help/Remove-AzWebPubSub.md +++ b/src/SignalR/SignalR/help/Remove-AzWebPubSub.md @@ -15,13 +15,17 @@ Operation to delete a resource. ### Delete (Default) ``` Remove-AzWebPubSub -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-AsJob] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-NoWait] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### DeleteViaIdentity ``` -Remove-AzWebPubSub -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] - [-PassThru] [-WhatIf] [-Confirm] [] +Remove-AzWebPubSub -InputObject [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -60,6 +64,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -75,6 +94,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -136,6 +185,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -205,11 +299,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### System.Boolean - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomCertificate.md b/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomCertificate.md index 594eb96c0178..388ecd61a3da 100644 --- a/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomCertificate.md +++ b/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomCertificate.md @@ -15,13 +15,16 @@ Delete a custom certificate. ### Delete (Default) ``` Remove-AzWebPubSubCustomCertificate -Name -ResourceGroupName -ResourceName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] [] + [-SubscriptionId ] [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### DeleteViaIdentity ``` -Remove-AzWebPubSubCustomCertificate -InputObject [-DefaultProfile ] [-PassThru] - [-WhatIf] [-Confirm] [] +Remove-AzWebPubSubCustomCertificate -InputObject [-DefaultProfile ] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -42,6 +45,21 @@ $customCert | Remove-AzWebPubSubCustomCertificate ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -57,6 +75,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -103,6 +151,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -187,11 +280,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### System.Boolean - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomDomain.md b/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomDomain.md index 046cdcd54b21..bc919b25f130 100644 --- a/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomDomain.md +++ b/src/SignalR/SignalR/help/Remove-AzWebPubSubCustomDomain.md @@ -15,14 +15,18 @@ Delete a custom domain. ### Delete (Default) ``` Remove-AzWebPubSubCustomDomain -Name -ResourceGroupName -ResourceName - [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] [-Confirm] + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### DeleteViaIdentity ``` -Remove-AzWebPubSubCustomDomain -InputObject [-DefaultProfile ] [-AsJob] - [-NoWait] [-PassThru] [-WhatIf] [-Confirm] [] +Remove-AzWebPubSubCustomDomain -InputObject [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -58,6 +62,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -73,6 +92,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -134,6 +183,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -218,11 +312,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### System.Boolean - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Remove-AzWebPubSubHub.md b/src/SignalR/SignalR/help/Remove-AzWebPubSubHub.md index 87a6e4525c0b..31d310262ecc 100644 --- a/src/SignalR/SignalR/help/Remove-AzWebPubSubHub.md +++ b/src/SignalR/SignalR/help/Remove-AzWebPubSubHub.md @@ -15,14 +15,18 @@ Delete a hub setting. ### Delete (Default) ``` Remove-AzWebPubSubHub -Name -ResourceGroupName -ResourceName - [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] [-Confirm] + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### DeleteViaIdentity ``` -Remove-AzWebPubSubHub -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] - [-PassThru] [-WhatIf] [-Confirm] [] +Remove-AzWebPubSubHub -InputObject [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -64,6 +68,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -79,6 +98,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -140,6 +189,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -224,11 +318,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### System.Boolean - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Restart-AzWebPubSub.md b/src/SignalR/SignalR/help/Restart-AzWebPubSub.md index b32e7ae84d47..2af7a87ec506 100644 --- a/src/SignalR/SignalR/help/Restart-AzWebPubSub.md +++ b/src/SignalR/SignalR/help/Restart-AzWebPubSub.md @@ -15,13 +15,17 @@ Operation to restart a resource. ### Restart (Default) ``` Restart-AzWebPubSub -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-AsJob] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-NoWait] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### RestartViaIdentity ``` -Restart-AzWebPubSub -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] - [-PassThru] [-WhatIf] [-Confirm] [] +Restart-AzWebPubSub -InputObject [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -60,6 +64,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -75,6 +94,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -136,6 +185,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @@ -205,11 +299,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### System.Boolean - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Set-AzSignalRUpstream.md b/src/SignalR/SignalR/help/Set-AzSignalRUpstream.md index d7499f872512..a787c3813656 100644 --- a/src/SignalR/SignalR/help/Set-AzSignalRUpstream.md +++ b/src/SignalR/SignalR/help/Set-AzSignalRUpstream.md @@ -239,6 +239,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String +### Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource + ## OUTPUTS ### Microsoft.Azure.Commands.SignalR.Models.PSServerlessUpstreamSettings diff --git a/src/SignalR/SignalR/help/Test-AzSignalRName.md b/src/SignalR/SignalR/help/Test-AzSignalRName.md index 2c638c942ee7..fc845b539397 100644 --- a/src/SignalR/SignalR/help/Test-AzSignalRName.md +++ b/src/SignalR/SignalR/help/Test-AzSignalRName.md @@ -92,7 +92,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS diff --git a/src/SignalR/SignalR/help/Test-AzWebPubSubNameAvailability.md b/src/SignalR/SignalR/help/Test-AzWebPubSubNameAvailability.md index 04f116fe8b86..14c9b7fbeb25 100644 --- a/src/SignalR/SignalR/help/Test-AzWebPubSubNameAvailability.md +++ b/src/SignalR/SignalR/help/Test-AzWebPubSubNameAvailability.md @@ -14,7 +14,9 @@ Checks that the resource name is valid and is not already in use. ``` Test-AzWebPubSubNameAvailability -Location [-SubscriptionId ] -Name - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -35,6 +37,21 @@ True ## PARAMETERS +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -50,6 +67,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location the region @@ -81,6 +128,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SubscriptionId Gets subscription Id which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. @@ -136,7 +228,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.INameAvailability - ## NOTES ALIASES diff --git a/src/SignalR/SignalR/help/Update-AzSignalRNetworkAcl.md b/src/SignalR/SignalR/help/Update-AzSignalRNetworkAcl.md index 8f481b717b96..584a42faaee2 100644 --- a/src/SignalR/SignalR/help/Update-AzSignalRNetworkAcl.md +++ b/src/SignalR/SignalR/help/Update-AzSignalRNetworkAcl.md @@ -284,6 +284,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String +### Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource + ## OUTPUTS ### Microsoft.Azure.Commands.SignalR.Models.PSSignalRNetworkAcls diff --git a/src/SignalR/SignalR/help/Update-AzWebPubSub.md b/src/SignalR/SignalR/help/Update-AzWebPubSub.md index af8cd4a68753..cf29044418b0 100644 --- a/src/SignalR/SignalR/help/Update-AzWebPubSub.md +++ b/src/SignalR/SignalR/help/Update-AzWebPubSub.md @@ -21,8 +21,9 @@ Update-AzWebPubSub -Name -ResourceGroupName [-SubscriptionId < [-PublicNetworkAccess ] [-PublicNetworkAllow ] [-PublicNetworkDeny ] [-ResourceLogCategory ] [-SkuCapacity ] [-SkuName ] [-SkuTier ] [-Tag ] - [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] - [] + [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-Break] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-NoWait] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ### UpdateViaIdentityExpanded @@ -34,7 +35,9 @@ Update-AzWebPubSub -InputObject [-DisableAadAuth] [-Disable [-PublicNetworkAllow ] [-PublicNetworkDeny ] [-ResourceLogCategory ] [-SkuCapacity ] [-SkuName ] [-SkuTier ] [-Tag ] [-UserAssignedIdentity ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-AsJob] [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-NoWait] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -95,6 +98,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -155,6 +173,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Runtime.SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IdentityType Represents the identity type: systemAssigned, userAssigned, None @@ -278,6 +326,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Proxy +The URI for the proxy server to use + +```yaml +Type: System.Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicNetworkAccess Enable or disable public network access. Default to "Enabled".When it's Enabled, network ACLs still apply.When it's Disabled, public network access is always disabled no matter what you set in network ACLs. @@ -491,11 +584,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.IWebPubSubIdentity - ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Models.Api20220801Preview.IWebPubSubResource - ## NOTES ALIASES diff --git a/tools/StaticAnalysis/Exceptions/Az.SignalR/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.SignalR/BreakingChangeIssues.csv new file mode 100644 index 000000000000..85c0b7770ba4 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.SignalR/BreakingChangeIssues.csv @@ -0,0 +1,11 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.GetAzureRmSignalR","Get-AzSignalR","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.GetAzureRmSignalRKey","Get-AzSignalRKey","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.NewAzureRmSignalR","New-AzSignalR","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.NewAzureRmSignalRKey","New-AzSignalRKey","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.RemoveAzureRmSignalR","Remove-AzSignalR","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.RestartAzureRmSignalR","Restart-AzSignalR","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.SetAzureRmSignalRUpstream","Set-AzSignalRUpstream","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.UpdateAzureRmSignalR","Update-AzSignalR","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.UpdateAzureRmSignalR","Update-AzSignalR","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'." +"Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll","Microsoft.Azure.Commands.SignalR.Cmdlets.UpdateAzureRmSignalRNetworkAcl","Update-AzSignalRNetworkAcl","0","3010","The property 'HostNamePrefix' of type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource' has been removed.","Add the property 'HostNamePrefix' back to type 'Microsoft.Azure.Commands.SignalR.Models.PSSignalRResource'."