authentication_password_methods
Creates, updates, deletes, gets or lists an authentication_password_methods resource.
Overview
| Name | authentication_password_methods |
| Type | Resource |
| Id | entra_id.users.authentication_password_methods |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
createdDateTime | string (date-time) | Represents the date and time when an entity was created. Read-only. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$) |
password | string | For security, the password is always returned as null from a LIST or GET operation. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
createdDateTime | string (date-time) | Represents the date and time when an entity was created. Read-only. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$) |
password | string | For security, the password is always returned as null from a LIST or GET operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | user_id, password_authentication_method_id | Represents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password. | |
list | select | user_id | Represents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password. | |
insert | insert | user_id |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
password_authentication_method_id | string | The unique identifier of passwordAuthenticationMethod |
user_id | string | The unique identifier of user |
SELECT examples
- get
- list
Represents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password.
SELECT
id,
createdDateTime,
password
FROM entra_id.users.authentication_password_methods
WHERE user_id = '{{ user_id }}' -- required
AND password_authentication_method_id = '{{ password_authentication_method_id }}' -- required
;
Represents the password registered to a user for authentication. For security, the password itself is never returned in the object, but action can be taken to reset a password.
SELECT
id,
createdDateTime,
password
FROM entra_id.users.authentication_password_methods
WHERE user_id = '{{ user_id }}' -- required
;
INSERT examples
- insert
- Manifest
No description available.
INSERT INTO entra_id.users.authentication_password_methods (
id,
createdDateTime,
password,
user_id
)
SELECT
'{{ id }}',
'{{ createdDateTime }}',
'{{ password }}',
'{{ user_id }}'
RETURNING
id,
createdDateTime,
password
;
# Description fields are for documentation purposes
- name: authentication_password_methods
props:
- name: user_id
value: "{{ user_id }}"
description: Required parameter for the authentication_password_methods resource.
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: createdDateTime
value: "{{ createdDateTime }}"
description: |
Represents the date and time when an entity was created. Read-only.
- name: password
value: "{{ password }}"
description: |
For security, the password is always returned as null from a LIST or GET operation.