import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { RoleAssignmentSchedule, RoleAssignmentSchedulesListForScopeOptionalParams, RoleAssignmentSchedulesGetOptionalParams, RoleAssignmentSchedulesGetResponse } from "../models"; /** Interface representing a RoleAssignmentSchedules. */ export interface RoleAssignmentSchedules { /** * Gets role assignment schedules for a resource scope. * @param scope The scope of the role assignments schedules. * @param options The options parameters. */ listForScope(scope: string, options?: RoleAssignmentSchedulesListForScopeOptionalParams): PagedAsyncIterableIterator; /** * Get the specified role assignment schedule for a resource scope * @param scope The scope of the role assignment schedule. * @param roleAssignmentScheduleName The name (guid) of the role assignment schedule to get. * @param options The options parameters. */ get(scope: string, roleAssignmentScheduleName: string, options?: RoleAssignmentSchedulesGetOptionalParams): Promise; } //# sourceMappingURL=roleAssignmentSchedules.d.ts.map