UNPKG

@azure/arm-mysql-flexible

Version:
28 lines (25 loc) 870 B
/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CapabilityProperties, LocationBasedCapabilitiesListOptionalParams } from "../models"; /// <reference lib="esnext.asynciterable" /> /** Interface representing a LocationBasedCapabilities. */ export interface LocationBasedCapabilities { /** * Get capabilities at specified location in a given subscription. * @param locationName The name of the location. * @param options The options parameters. */ list( locationName: string, options?: LocationBasedCapabilitiesListOptionalParams ): PagedAsyncIterableIterator<CapabilityProperties>; }