/* * 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 { setContinuationToken } from "../pagingHelper"; import { ManagedServerDnsAliases } 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 { SimplePollerLike, OperationState, createHttpPoller } from "@azure/core-lro"; import { createLroSpec } from "../lroImpl"; import { ManagedServerDnsAlias, ManagedServerDnsAliasesListByManagedInstanceNextOptionalParams, ManagedServerDnsAliasesListByManagedInstanceOptionalParams, ManagedServerDnsAliasesListByManagedInstanceResponse, ManagedServerDnsAliasesGetOptionalParams, ManagedServerDnsAliasesGetResponse, ManagedServerDnsAliasCreation, ManagedServerDnsAliasesCreateOrUpdateOptionalParams, ManagedServerDnsAliasesCreateOrUpdateResponse, ManagedServerDnsAliasesDeleteOptionalParams, ManagedServerDnsAliasAcquisition, ManagedServerDnsAliasesAcquireOptionalParams, ManagedServerDnsAliasesAcquireResponse, ManagedServerDnsAliasesListByManagedInstanceNextResponse } from "../models"; /// /** Class containing ManagedServerDnsAliases operations. */ export class ManagedServerDnsAliasesImpl implements ManagedServerDnsAliases { private readonly client: SqlManagementClient; /** * Initialize a new instance of the class ManagedServerDnsAliases class. * @param client Reference to the service client */ constructor(client: SqlManagementClient) { this.client = client; } /** * Gets a list of managed server DNS aliases for a managed server. * @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 managedInstanceName The name of the managed instance. * @param options The options parameters. */ public listByManagedInstance( resourceGroupName: string, managedInstanceName: string, options?: ManagedServerDnsAliasesListByManagedInstanceOptionalParams ): PagedAsyncIterableIterator { const iter = this.listByManagedInstancePagingAll( resourceGroupName, managedInstanceName, 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.listByManagedInstancePagingPage( resourceGroupName, managedInstanceName, options, settings ); } }; } private async *listByManagedInstancePagingPage( resourceGroupName: string, managedInstanceName: string, options?: ManagedServerDnsAliasesListByManagedInstanceOptionalParams, settings?: PageSettings ): AsyncIterableIterator { let result: ManagedServerDnsAliasesListByManagedInstanceResponse; let continuationToken = settings?.continuationToken; if (!continuationToken) { result = await this._listByManagedInstance( resourceGroupName, managedInstanceName, options ); let page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield page; } while (continuationToken) { result = await this._listByManagedInstanceNext( resourceGroupName, managedInstanceName, continuationToken, options ); continuationToken = result.nextLink; let page = result.value || []; setContinuationToken(page, continuationToken); yield page; } } private async *listByManagedInstancePagingAll( resourceGroupName: string, managedInstanceName: string, options?: ManagedServerDnsAliasesListByManagedInstanceOptionalParams ): AsyncIterableIterator { for await (const page of this.listByManagedInstancePagingPage( resourceGroupName, managedInstanceName, options )) { yield* page; } } /** * Gets a list of managed server DNS aliases for a managed server. * @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 managedInstanceName The name of the managed instance. * @param options The options parameters. */ private _listByManagedInstance( resourceGroupName: string, managedInstanceName: string, options?: ManagedServerDnsAliasesListByManagedInstanceOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, managedInstanceName, options }, listByManagedInstanceOperationSpec ); } /** * Gets a server DNS alias. * @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 managedInstanceName The name of the managed instance. * @param dnsAliasName * @param options The options parameters. */ get( resourceGroupName: string, managedInstanceName: string, dnsAliasName: string, options?: ManagedServerDnsAliasesGetOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, managedInstanceName, dnsAliasName, options }, getOperationSpec ); } /** * Creates a managed server DNS alias. * @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 managedInstanceName The name of the managed instance. * @param dnsAliasName * @param parameters A managed server dns alias creation request. * @param options The options parameters. */ async beginCreateOrUpdate( resourceGroupName: string, managedInstanceName: string, dnsAliasName: string, parameters: ManagedServerDnsAliasCreation, options?: ManagedServerDnsAliasesCreateOrUpdateOptionalParams ): Promise< SimplePollerLike< OperationState, ManagedServerDnsAliasesCreateOrUpdateResponse > > { const directSendOperation = async ( args: coreClient.OperationArguments, spec: coreClient.OperationSpec ): Promise => { return this.client.sendOperationRequest(args, spec); }; const sendOperationFn = async ( args: coreClient.OperationArguments, spec: coreClient.OperationSpec ) => { let currentRawResponse: | coreClient.FullOperationResponse | undefined = undefined; const providedCallback = args.options?.onResponse; const callback: coreClient.RawResponseCallback = ( rawResponse: coreClient.FullOperationResponse, flatResponse: unknown ) => { currentRawResponse = rawResponse; providedCallback?.(rawResponse, flatResponse); }; const updatedArgs = { ...args, options: { ...args.options, onResponse: callback } }; const flatResponse = await directSendOperation(updatedArgs, spec); return { flatResponse, rawResponse: { statusCode: currentRawResponse!.status, body: currentRawResponse!.parsedBody, headers: currentRawResponse!.headers.toJSON() } }; }; const lro = createLroSpec({ sendOperationFn, args: { resourceGroupName, managedInstanceName, dnsAliasName, parameters, options }, spec: createOrUpdateOperationSpec }); const poller = await createHttpPoller< ManagedServerDnsAliasesCreateOrUpdateResponse, OperationState >(lro, { restoreFrom: options?.resumeFrom, intervalInMs: options?.updateIntervalInMs }); await poller.poll(); return poller; } /** * Creates a managed server DNS alias. * @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 managedInstanceName The name of the managed instance. * @param dnsAliasName * @param parameters A managed server dns alias creation request. * @param options The options parameters. */ async beginCreateOrUpdateAndWait( resourceGroupName: string, managedInstanceName: string, dnsAliasName: string, parameters: ManagedServerDnsAliasCreation, options?: ManagedServerDnsAliasesCreateOrUpdateOptionalParams ): Promise { const poller = await this.beginCreateOrUpdate( resourceGroupName, managedInstanceName, dnsAliasName, parameters, options ); return poller.pollUntilDone(); } /** * Deletes the managed server DNS alias with the given name. * @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 managedInstanceName The name of the managed instance. * @param dnsAliasName * @param options The options parameters. */ async beginDelete( resourceGroupName: string, managedInstanceName: string, dnsAliasName: string, options?: ManagedServerDnsAliasesDeleteOptionalParams ): Promise, void>> { const directSendOperation = async ( args: coreClient.OperationArguments, spec: coreClient.OperationSpec ): Promise => { return this.client.sendOperationRequest(args, spec); }; const sendOperationFn = async ( args: coreClient.OperationArguments, spec: coreClient.OperationSpec ) => { let currentRawResponse: | coreClient.FullOperationResponse | undefined = undefined; const providedCallback = args.options?.onResponse; const callback: coreClient.RawResponseCallback = ( rawResponse: coreClient.FullOperationResponse, flatResponse: unknown ) => { currentRawResponse = rawResponse; providedCallback?.(rawResponse, flatResponse); }; const updatedArgs = { ...args, options: { ...args.options, onResponse: callback } }; const flatResponse = await directSendOperation(updatedArgs, spec); return { flatResponse, rawResponse: { statusCode: currentRawResponse!.status, body: currentRawResponse!.parsedBody, headers: currentRawResponse!.headers.toJSON() } }; }; const lro = createLroSpec({ sendOperationFn, args: { resourceGroupName, managedInstanceName, dnsAliasName, options }, spec: deleteOperationSpec }); const poller = await createHttpPoller>(lro, { restoreFrom: options?.resumeFrom, intervalInMs: options?.updateIntervalInMs }); await poller.poll(); return poller; } /** * Deletes the managed server DNS alias with the given name. * @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 managedInstanceName The name of the managed instance. * @param dnsAliasName * @param options The options parameters. */ async beginDeleteAndWait( resourceGroupName: string, managedInstanceName: string, dnsAliasName: string, options?: ManagedServerDnsAliasesDeleteOptionalParams ): Promise { const poller = await this.beginDelete( resourceGroupName, managedInstanceName, dnsAliasName, options ); return poller.pollUntilDone(); } /** * Acquires managed server DNS alias from another managed server. * @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 managedInstanceName The name of the managed instance. * @param dnsAliasName * @param parameters A managed server DNS alias acquisition request. * @param options The options parameters. */ async beginAcquire( resourceGroupName: string, managedInstanceName: string, dnsAliasName: string, parameters: ManagedServerDnsAliasAcquisition, options?: ManagedServerDnsAliasesAcquireOptionalParams ): Promise< SimplePollerLike< OperationState, ManagedServerDnsAliasesAcquireResponse > > { const directSendOperation = async ( args: coreClient.OperationArguments, spec: coreClient.OperationSpec ): Promise => { return this.client.sendOperationRequest(args, spec); }; const sendOperationFn = async ( args: coreClient.OperationArguments, spec: coreClient.OperationSpec ) => { let currentRawResponse: | coreClient.FullOperationResponse | undefined = undefined; const providedCallback = args.options?.onResponse; const callback: coreClient.RawResponseCallback = ( rawResponse: coreClient.FullOperationResponse, flatResponse: unknown ) => { currentRawResponse = rawResponse; providedCallback?.(rawResponse, flatResponse); }; const updatedArgs = { ...args, options: { ...args.options, onResponse: callback } }; const flatResponse = await directSendOperation(updatedArgs, spec); return { flatResponse, rawResponse: { statusCode: currentRawResponse!.status, body: currentRawResponse!.parsedBody, headers: currentRawResponse!.headers.toJSON() } }; }; const lro = createLroSpec({ sendOperationFn, args: { resourceGroupName, managedInstanceName, dnsAliasName, parameters, options }, spec: acquireOperationSpec }); const poller = await createHttpPoller< ManagedServerDnsAliasesAcquireResponse, OperationState >(lro, { restoreFrom: options?.resumeFrom, intervalInMs: options?.updateIntervalInMs }); await poller.poll(); return poller; } /** * Acquires managed server DNS alias from another managed server. * @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 managedInstanceName The name of the managed instance. * @param dnsAliasName * @param parameters A managed server DNS alias acquisition request. * @param options The options parameters. */ async beginAcquireAndWait( resourceGroupName: string, managedInstanceName: string, dnsAliasName: string, parameters: ManagedServerDnsAliasAcquisition, options?: ManagedServerDnsAliasesAcquireOptionalParams ): Promise { const poller = await this.beginAcquire( resourceGroupName, managedInstanceName, dnsAliasName, parameters, options ); return poller.pollUntilDone(); } /** * ListByManagedInstanceNext * @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 managedInstanceName The name of the managed instance. * @param nextLink The nextLink from the previous successful call to the ListByManagedInstance method. * @param options The options parameters. */ private _listByManagedInstanceNext( resourceGroupName: string, managedInstanceName: string, nextLink: string, options?: ManagedServerDnsAliasesListByManagedInstanceNextOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, managedInstanceName, nextLink, options }, listByManagedInstanceNextOperationSpec ); } } // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const listByManagedInstanceOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dnsAliases", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ManagedServerDnsAliasListResult }, default: {} }, queryParameters: [Parameters.apiVersion7], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.managedInstanceName ], headerParameters: [Parameters.accept], serializer }; const getOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dnsAliases/{dnsAliasName}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ManagedServerDnsAlias }, default: {} }, queryParameters: [Parameters.apiVersion7], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.managedInstanceName, Parameters.dnsAliasName ], headerParameters: [Parameters.accept], serializer }; const createOrUpdateOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dnsAliases/{dnsAliasName}", httpMethod: "PUT", responses: { 200: { bodyMapper: Mappers.ManagedServerDnsAlias }, 201: { bodyMapper: Mappers.ManagedServerDnsAlias }, 202: { bodyMapper: Mappers.ManagedServerDnsAlias }, 204: { bodyMapper: Mappers.ManagedServerDnsAlias }, default: {} }, requestBody: Parameters.parameters81, queryParameters: [Parameters.apiVersion7], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.managedInstanceName, Parameters.dnsAliasName ], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer }; const deleteOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dnsAliases/{dnsAliasName}", httpMethod: "DELETE", responses: { 200: {}, 201: {}, 202: {}, 204: {}, default: {} }, queryParameters: [Parameters.apiVersion7], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.managedInstanceName, Parameters.dnsAliasName ], serializer }; const acquireOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dnsAliases/{dnsAliasName}/acquire", httpMethod: "POST", responses: { 200: { bodyMapper: Mappers.ManagedServerDnsAlias }, 201: { bodyMapper: Mappers.ManagedServerDnsAlias }, 202: { bodyMapper: Mappers.ManagedServerDnsAlias }, 204: { bodyMapper: Mappers.ManagedServerDnsAlias }, default: {} }, requestBody: Parameters.parameters82, queryParameters: [Parameters.apiVersion7], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.managedInstanceName, Parameters.dnsAliasName ], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer }; const listByManagedInstanceNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ManagedServerDnsAliasListResult }, default: {} }, urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.nextLink, Parameters.managedInstanceName ], headerParameters: [Parameters.accept], serializer };