Skip to content

Commit

Permalink
Modify 'additional_properties' type to 'list'
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred-sun committed Mar 22, 2024
1 parent 8ff40b3 commit a5001c4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions plugins/modules/azure_rm_adapplication.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@
description:
- Additional properties of the claim.
- If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property.
type: str
type: list
elements: str
id_token_claims:
description:
- The optional claims returned in the JWT ID token
Expand Down Expand Up @@ -205,7 +206,8 @@
description:
- Additional properties of the claim.
- If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property.
type: str
type: list
elements: str
saml2_token_claims:
description:
- The optional claims returned in the SAML token
Expand Down Expand Up @@ -234,7 +236,8 @@
description:
- Additional properties of the claim.
- If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property.
type: str
type: list
elements: str
password:
description:
- App password, aka 'client secret'.
Expand Down Expand Up @@ -514,7 +517,8 @@
default=False
),
additional_properties=dict(
type='str'
type='list',
elements='str'
)
)

Expand Down

0 comments on commit a5001c4

Please sign in to comment.