Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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