Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{AzureCXP} fixes Azure/azure-powershell#18607 #18647

Merged
merged 2 commits into from
Jun 23, 2022
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
6 changes: 3 additions & 3 deletions src/Resources/Resources/help/Az.Resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,13 @@ Create a deployment at tenant scope
Publishes a Bicep file to a registry.

### [Register-AzProviderFeature](Register-AzProviderFeature.md)
Registers an Azure provider feature in your account.
Registers an Azure provider feature in your current subscription context.

### [Register-AzProviderPreviewFeature](Register-AzProviderPreviewFeature.md)
Creates a feature registration in your account.
Creates a feature registration in your current subscription context.

### [Register-AzResourceProvider](Register-AzResourceProvider.md)
Registers a resource provider.
Registers a resource provider in your current subscription context.

### [Remove-AzADAppCredential](Remove-AzADAppCredential.md)
Removes key credentials or password credentials for an application.
Expand Down
6 changes: 3 additions & 3 deletions src/Resources/Resources/help/Register-AzProviderFeature.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ schema: 2.0.0
# Register-AzProviderFeature

## SYNOPSIS
Registers an Azure provider feature in your account.
Registers an Azure provider feature in your current subscription context.

## SYNTAX

Expand All @@ -19,7 +19,7 @@ Register-AzProviderFeature -FeatureName <String> -ProviderNamespace <String>
```

## DESCRIPTION
The **Register-AzProviderFeature** cmdlet registers an Azure provider feature in your account.
The **Register-AzProviderFeature** cmdlet registers an Azure provider feature in your current subscription context.

## EXAMPLES

Expand All @@ -28,7 +28,7 @@ The **Register-AzProviderFeature** cmdlet registers an Azure provider feature in
Register-AzProviderFeature -FeatureName AllowApplicationSecurityGroups -ProviderNamespace Microsoft.Network
```

This adds the AllowApplicationSecurityGroups feature for Microsoft.Network to your account.
This adds the AllowApplicationSecurityGroups feature for Microsoft.Network to your current subscription context.

## PARAMETERS

Expand Down