role_assignment_schedules
Creates, updates, deletes, gets or lists a role_assignment_schedules
resource.
Overview
Name | role_assignment_schedules |
Type | Resource |
Id | azure.authorization.role_assignment_schedules |
Fields
- vw_role_assignment_schedules
- role_assignment_schedules
Name | Datatype | Description |
---|---|---|
id | text | The role assignment schedule Id. |
name | text | The role assignment schedule name. |
assignment_type | text | field from the properties object |
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 |
linked_role_eligibility_schedule_id | 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 |
roleAssignmentScheduleName | text | field from the properties object |
role_assignment_schedule_request_id | text | field from the properties object |
role_definition_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 assignment schedule type. |
updated_on | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The role assignment schedule Id. |
name | string | The role assignment schedule name. |
properties | object | Role assignment schedule properties with scope. |
type | string | The role assignment schedule type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | roleAssignmentScheduleName, scope | Get the specified role assignment schedule for a resource scope |
list_for_scope | SELECT | scope | Gets role assignment schedules for a resource scope. |
SELECT
examples
Gets role assignment schedules for a resource scope.
- vw_role_assignment_schedules
- role_assignment_schedules
SELECT
id,
name,
assignment_type,
condition,
condition_version,
created_on,
end_date_time,
expanded_properties,
linked_role_eligibility_schedule_id,
member_type,
principal_id,
principal_type,
roleAssignmentScheduleName,
role_assignment_schedule_request_id,
role_definition_id,
scope,
start_date_time,
status,
type,
updated_on
FROM azure.authorization.vw_role_assignment_schedules
WHERE scope = '{{ scope }}';
SELECT
id,
name,
properties,
type
FROM azure.authorization.role_assignment_schedules
WHERE scope = '{{ scope }}';