role_eligibility_schedules
Creates, updates, deletes, gets or lists a role_eligibility_schedules
resource.
Overview
Name | role_eligibility_schedules |
Type | Resource |
Id | azure.authorization.role_eligibility_schedules |
Fields
- vw_role_eligibility_schedules
- role_eligibility_schedules
Name | Datatype | Description |
---|---|---|
id | text | The role eligibility schedule Id. |
name | text | The role eligibility schedule name. |
condition | text | field from the properties object |
condition_version | text | field from the properties object |
created_on | text | field from the properties object |
end_date_time | text | field from the properties object |
expanded_properties | text | field from the properties object |
member_type | text | field from the properties object |
principal_id | text | field from the properties object |
principal_type | text | field from the properties object |
roleEligibilityScheduleName | text | field from the properties object |
role_definition_id | text | field from the properties object |
role_eligibility_schedule_request_id | text | field from the properties object |
scope | text | field from the properties object |
start_date_time | text | field from the properties object |
status | text | field from the properties object |
type | text | The role eligibility schedule type. |
updated_on | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The role eligibility schedule Id. |
name | string | The role eligibility schedule name. |
properties | object | Role eligibility schedule properties with scope. |
type | string | The role eligibility schedule type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | roleEligibilityScheduleName, scope | Get the specified role eligibility schedule for a resource scope |
list_for_scope | SELECT | scope | Gets role eligibility schedules for a resource scope. |
SELECT
examples
Gets role eligibility schedules for a resource scope.
- vw_role_eligibility_schedules
- role_eligibility_schedules
SELECT
id,
name,
condition,
condition_version,
created_on,
end_date_time,
expanded_properties,
member_type,
principal_id,
principal_type,
roleEligibilityScheduleName,
role_definition_id,
role_eligibility_schedule_request_id,
scope,
start_date_time,
status,
type,
updated_on
FROM azure.authorization.vw_role_eligibility_schedules
WHERE scope = '{{ scope }}';
SELECT
id,
name,
properties,
type
FROM azure.authorization.role_eligibility_schedules
WHERE scope = '{{ scope }}';