/* * 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 { SqlVulnerabilityAssessmentsSettings } 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 { SqlVulnerabilityAssessment, SqlVulnerabilityAssessmentsSettingsListByServerNextOptionalParams, SqlVulnerabilityAssessmentsSettingsListByServerOptionalParams, SqlVulnerabilityAssessmentsSettingsListByServerResponse, SqlVulnerabilityAssessmentName, SqlVulnerabilityAssessmentsSettingsGetOptionalParams, SqlVulnerabilityAssessmentsSettingsGetResponse, VulnerabilityAssessmentName, SqlVulnerabilityAssessmentsSettingsCreateOrUpdateOptionalParams, SqlVulnerabilityAssessmentsSettingsCreateOrUpdateResponse, SqlVulnerabilityAssessmentsSettingsListByServerNextResponse } from "../models"; /// /** Class containing SqlVulnerabilityAssessmentsSettings operations. */ export class SqlVulnerabilityAssessmentsSettingsImpl implements SqlVulnerabilityAssessmentsSettings { private readonly client: SqlManagementClient; /** * Initialize a new instance of the class SqlVulnerabilityAssessmentsSettings class. * @param client Reference to the service client */ constructor(client: SqlManagementClient) { this.client = client; } /** * Lists SQL Vulnerability Assessment policies associated with a 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 serverName The name of the server. * @param options The options parameters. */ public listByServer( resourceGroupName: string, serverName: string, options?: SqlVulnerabilityAssessmentsSettingsListByServerOptionalParams ): 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?: SqlVulnerabilityAssessmentsSettingsListByServerOptionalParams, settings?: PageSettings ): AsyncIterableIterator { let result: SqlVulnerabilityAssessmentsSettingsListByServerResponse; let continuationToken = settings?.continuationToken; if (!continuationToken) { result = await this._listByServer(resourceGroupName, serverName, options); let page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield page; } while (continuationToken) { result = await this._listByServerNext( resourceGroupName, serverName, continuationToken, options ); continuationToken = result.nextLink; let page = result.value || []; setContinuationToken(page, continuationToken); yield page; } } private async *listByServerPagingAll( resourceGroupName: string, serverName: string, options?: SqlVulnerabilityAssessmentsSettingsListByServerOptionalParams ): AsyncIterableIterator { for await (const page of this.listByServerPagingPage( resourceGroupName, serverName, options )) { yield* page; } } /** * Lists SQL Vulnerability Assessment policies associated with a 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 serverName The name of the server. * @param options The options parameters. */ private _listByServer( resourceGroupName: string, serverName: string, options?: SqlVulnerabilityAssessmentsSettingsListByServerOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, serverName, options }, listByServerOperationSpec ); } /** * Gets SQL Vulnerability Assessment policy. * @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 vulnerabilityAssessmentName The name of the SQL Vulnerability Assessment. * @param options The options parameters. */ get( resourceGroupName: string, serverName: string, vulnerabilityAssessmentName: SqlVulnerabilityAssessmentName, options?: SqlVulnerabilityAssessmentsSettingsGetOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, serverName, vulnerabilityAssessmentName, options }, getOperationSpec ); } /** * Creates or updates SQL Vulnerability Assessment policy. * @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 vulnerabilityAssessmentName The name of the SQL Vulnerability Assessment. * @param parameters The requested resource. * @param options The options parameters. */ createOrUpdate( resourceGroupName: string, serverName: string, vulnerabilityAssessmentName: VulnerabilityAssessmentName, parameters: SqlVulnerabilityAssessment, options?: SqlVulnerabilityAssessmentsSettingsCreateOrUpdateOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, serverName, vulnerabilityAssessmentName, parameters, options }, createOrUpdateOperationSpec ); } /** * ListByServerNext * @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 nextLink The nextLink from the previous successful call to the ListByServer method. * @param options The options parameters. */ private _listByServerNext( resourceGroupName: string, serverName: string, nextLink: string, options?: SqlVulnerabilityAssessmentsSettingsListByServerNextOptionalParams ): Promise { return this.client.sendOperationRequest( { resourceGroupName, serverName, nextLink, options }, listByServerNextOperationSpec ); } } // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const listByServerOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/sqlVulnerabilityAssessments", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.SqlVulnerabilityAssessmentListResult }, default: {} }, queryParameters: [Parameters.apiVersion4], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.serverName ], headerParameters: [Parameters.accept], serializer }; const getOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/sqlVulnerabilityAssessments/{vulnerabilityAssessmentName}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.SqlVulnerabilityAssessment }, default: {} }, queryParameters: [Parameters.apiVersion4], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.serverName, Parameters.vulnerabilityAssessmentName2 ], headerParameters: [Parameters.accept], serializer }; const createOrUpdateOperationSpec: coreClient.OperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/sqlVulnerabilityAssessments/{vulnerabilityAssessmentName}", httpMethod: "PUT", responses: { 200: { bodyMapper: Mappers.SqlVulnerabilityAssessment }, 201: { bodyMapper: Mappers.SqlVulnerabilityAssessment }, default: {} }, requestBody: Parameters.parameters87, queryParameters: [Parameters.apiVersion4], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.serverName, Parameters.vulnerabilityAssessmentName ], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer }; const listByServerNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.SqlVulnerabilityAssessmentListResult }, default: {} }, urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.serverName, Parameters.nextLink ], headerParameters: [Parameters.accept], serializer };