Skip to content

Commit

Permalink
fix for issue Azure#18398
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainFanZzz committed Jun 9, 2022
1 parent 4fc53c7 commit a4995f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ public class NewAzureApiManagementSubscription : AzureApiManagementCmdletBase
ValueFromPipelineByPropertyName = true,
Mandatory = false,
HelpMessage = "Subscription primary key. This parameter is optional. If not specified will be generated automatically." +
" Must be 1 to 300 characters long.")]
" Must be 1 to 256 characters long.")]
public String PrimaryKey { get; set; }

[Parameter(
ValueFromPipelineByPropertyName = true,
Mandatory = false,
HelpMessage = "Subscription secondary key. This parameter is optional. If not specified will be generated automatically." +
" Must be 1 to 300 characters long.")]
" Must be 1 to 256 characters long.")]
public String SecondaryKey { get; set; }

[Parameter(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Accept wildcard characters: False
### -PrimaryKey
Specifies the subscription primary key.
If this parameter is not specified the key is generated automatically.
This parameter must be 1 to 300 characters long.
This parameter must be 1 to 256 characters long.
```yaml
Type: System.String
Expand Down Expand Up @@ -164,7 +164,7 @@ Accept wildcard characters: False
### -SecondaryKey
Specifies the subscription secondary key.
This parameter is generated automatically if it is not specified.
This parameter must be 1 to 300 characters long.
This parameter must be 1 to 256 characters long.
```yaml
Type: System.String
Expand Down

0 comments on commit a4995f0

Please sign in to comment.