role_eligibility_schedule_instances
Creates, updates, deletes, gets or lists a role_eligibility_schedule_instances
resource.
Overview
Name | role_eligibility_schedule_instances |
Type | Resource |
Id | azure.authorization.role_eligibility_schedule_instances |
Fields
- vw_role_eligibility_schedule_instances
- role_eligibility_schedule_instances
Name | Datatype | Description |
---|---|---|
id | text | The role eligibility schedule instance ID. |
name | text | The role eligibility schedule instance 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 |
roleEligibilityScheduleInstanceName | text | field from the properties object |
role_definition_id | text | field from the properties object |
role_eligibility_schedule_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 instance type. |
Name | Datatype | Description |
---|---|---|
id | string | The role eligibility schedule instance ID. |
name | string | The role eligibility schedule instance name. |
properties | object | Role eligibility schedule properties with scope. |
type | string | The role eligibility schedule instance type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | roleEligibilityScheduleInstanceName, scope | Gets the specified role eligibility schedule instance. |
list_for_scope | SELECT | scope | Gets role eligibility schedule instances of a role eligibility schedule. |
SELECT
examples
Gets role eligibility schedule instances of a role eligibility schedule.
- vw_role_eligibility_schedule_instances
- role_eligibility_schedule_instances
SELECT
id,
name,
condition,
condition_version,
created_on,
end_date_time,
expanded_properties,
member_type,
principal_id,
principal_type,
roleEligibilityScheduleInstanceName,
role_definition_id,
role_eligibility_schedule_id,
scope,
start_date_time,
status,
type
FROM azure.authorization.vw_role_eligibility_schedule_instances
WHERE scope = '{{ scope }}';
SELECT
id,
name,
properties,
type
FROM azure.authorization.role_eligibility_schedule_instances
WHERE scope = '{{ scope }}';