/* * 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, PageSettings } from "@azure/core-paging"; import { ServiceObjectives } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { SqlManagementClient } from "../sqlManagementClient"; import { ServiceObjective, ServiceObjectivesListByServerOptionalParams, ServiceObjectivesListByServerResponse, ServiceObjectivesGetOptionalParams, ServiceObjectivesGetResponse } from "../models"; /// /** Class containing ServiceObjectives operations. */ export class ServiceObjectivesImpl implements ServiceObjectives { private readonly client: SqlManagementClient; /** * Initialize a new instance of the class ServiceObjectives class. * @param client Reference to the service client */ constructor(client: SqlManagementClient) { this.client = client; } /** * Returns database service objectives. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param options The options parameters. */ public listByServer( resourceGroupName: string, serverName: string, options?: ServiceObjectivesListByServerOptionalParams ): PagedAsyncIterableIterator { const iter = this.listByServerPagingAll( resourceGroupName, serverName, options ); return { next() { return iter.next(); }, [Symbol.asyncIterator]() { return this; }, byPage: (settings?: PageSettings) => { if (settings?.maxPageSize) { throw new Error("maxPageSize is not supported by this operation."); } return this.listByServerPagingPage( resourceGroupName, serverName, options, settings ); } }; } private async *listByServerPagingPage( resourceGroupName: string, serverName: string, options?: ServiceObjectivesListByServerOptionalParams, _settings?: PageSettings ): AsyncIterableIterator { let result: ServiceObjectivesListByServerResponse; result = await this._listByServer(resourceGroupName, serverName, options); yield result.value || []; } private async *listByServerPagingAll( resourceGroupName: string, serverName: string, options?: ServiceObjectivesListByServerOptionalParams ): AsyncIterableIterator { for await (const page of this.listByServerPagingPage( resourceGroupName, serverName, options )) { yield* page; } } /** * Gets a database service objective. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param serviceObjectiveName The name of the service objective to retrieve. * @param options The options parameters. */ get( resourceGroupName: string, serverName: string, serviceObjectiveName: string, options?: ServiceObjectivesGetOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, serverName, serviceObjectiveName, options }, getOperationSpec ); } /** * Returns database service objectives. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param options The options parameters. */ private _listByServer( resourceGroupName: string, serverName: string, options?: ServiceObjectivesListByServerOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, serverName, options }, listByServerOperationSpec ); } } // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const getOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ServiceObjective } }, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.serverName, Parameters.serviceObjectiveName ], headerParameters: [Parameters.accept], serializer }; const listByServerOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ServiceObjectiveListResult } }, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.serverName ], headerParameters: [Parameters.accept], serializer };