import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { RoleEligibilityScheduleInstance, RoleEligibilityScheduleInstancesListForScopeOptionalParams, RoleEligibilityScheduleInstancesGetOptionalParams, RoleEligibilityScheduleInstancesGetResponse } from "../models"; /** Interface representing a RoleEligibilityScheduleInstances. */ export interface RoleEligibilityScheduleInstances { /** * Gets role eligibility schedule instances of a role eligibility schedule. * @param scope The scope of the role eligibility schedule. * @param options The options parameters. */ listForScope(scope: string, options?: RoleEligibilityScheduleInstancesListForScopeOptionalParams): PagedAsyncIterableIterator; /** * Gets the specified role eligibility schedule instance. * @param scope The scope of the role eligibility schedules. * @param roleEligibilityScheduleInstanceName The name (hash of schedule name + time) of the role * eligibility schedule to get. * @param options The options parameters. */ get(scope: string, roleEligibilityScheduleInstanceName: string, options?: RoleEligibilityScheduleInstancesGetOptionalParams): Promise; } //# sourceMappingURL=roleEligibilityScheduleInstances.d.ts.map