Skip to content

Commit

Permalink
Updated Resources and Cmdlet documentation pages
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Oct 23, 2024
1 parent 4204c22 commit 1badbec
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/docs/resources/azure-ad/AADServicePrincipal.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
| **ServicePrincipalType** | Write | String | The type of the service principal. | |
| **Tags** | Write | StringArray[] | Tags linked to this service principal.Note that if you intend for this service principal to show up in the All Applications list in the admin portal, you need to set this value to {WindowsAzureActiveDirectoryIntegratedApp} | |
| **DelegatedPermissionClassifications** | Write | MSFT_AADServicePrincipalDelegatedPermissionClassification[] | The permission classifications for delegated permissions exposed by the app that this service principal represents. | |
| **CustomSecurityAttributes** | Write | MSFT_AADServicePrincipalAttributeSet[] | The list of custom security attributes attached to this SPN | |
| **Ensure** | Write | String | Specify if the Azure AD App should exist or not. | `Present`, `Absent` |
| **ApplicationId** | Write | String | Id of the Azure Active Directory application to authenticate with. | |
| **TenantId** | Write | String | Id of the Azure Active Directory tenant used for authentication. | |
Expand Down Expand Up @@ -49,6 +50,28 @@
| **Classification** | Write | String | Classification of the delegated permission | `low`, `medium`, `high` |
| **PermissionName** | Write | String | Name of the permission | |

### MSFT_AADServicePrincipalAttributeValue

#### Parameters

| Parameter | Attribute | DataType | Description | Allowed Values |
| --- | --- | --- | --- | --- |
| **AttributeName** | Write | String | Name of the Attribute | |
| **StringArrayValue** | Write | StringArray[] | If the attribute has a string array value | |
| **IntArrayValue** | Write | UInt32Array[] | If the attribute has a int array value | |
| **StringValue** | Write | String | If the attribute has a string value | |
| **IntValue** | Write | UInt32 | If the attribute has a int value | |
| **BoolValue** | Write | Boolean | If the attribute has a boolean value | |

### MSFT_AADServicePrincipalAttributeSet

#### Parameters

| Parameter | Attribute | DataType | Description | Allowed Values |
| --- | --- | --- | --- | --- |
| **AttributeSetName** | Write | String | Attribute Set Name. | |
| **AttributeValues** | Write | MSFT_AADServicePrincipalAttributeValue[] | List of attribute values. | |

## Description

This resource configures an Azure Active Directory ServicePrincipal.
Expand Down

0 comments on commit 1badbec

Please sign in to comment.