/*
* 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 { ManagedServerSecurityAlertPolicies } 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 {
ManagedServerSecurityAlertPolicy,
ManagedServerSecurityAlertPoliciesListByInstanceNextOptionalParams,
ManagedServerSecurityAlertPoliciesListByInstanceOptionalParams,
ManagedServerSecurityAlertPoliciesListByInstanceResponse,
SecurityAlertPolicyName,
ManagedServerSecurityAlertPoliciesGetOptionalParams,
ManagedServerSecurityAlertPoliciesGetResponse,
ManagedServerSecurityAlertPoliciesCreateOrUpdateOptionalParams,
ManagedServerSecurityAlertPoliciesCreateOrUpdateResponse,
ManagedServerSecurityAlertPoliciesListByInstanceNextResponse
} from "../models";
///
/** Class containing ManagedServerSecurityAlertPolicies operations. */
export class ManagedServerSecurityAlertPoliciesImpl
implements ManagedServerSecurityAlertPolicies {
private readonly client: SqlManagementClient;
/**
* Initialize a new instance of the class ManagedServerSecurityAlertPolicies class.
* @param client Reference to the service client
*/
constructor(client: SqlManagementClient) {
this.client = client;
}
/**
* Get the managed server's threat detection policies.
* @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 listByInstance(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedServerSecurityAlertPoliciesListByInstanceOptionalParams
): PagedAsyncIterableIterator {
const iter = this.listByInstancePagingAll(
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.listByInstancePagingPage(
resourceGroupName,
managedInstanceName,
options,
settings
);
}
};
}
private async *listByInstancePagingPage(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedServerSecurityAlertPoliciesListByInstanceOptionalParams,
settings?: PageSettings
): AsyncIterableIterator {
let result: ManagedServerSecurityAlertPoliciesListByInstanceResponse;
let continuationToken = settings?.continuationToken;
if (!continuationToken) {
result = await this._listByInstance(
resourceGroupName,
managedInstanceName,
options
);
let page = result.value || [];
continuationToken = result.nextLink;
setContinuationToken(page, continuationToken);
yield page;
}
while (continuationToken) {
result = await this._listByInstanceNext(
resourceGroupName,
managedInstanceName,
continuationToken,
options
);
continuationToken = result.nextLink;
let page = result.value || [];
setContinuationToken(page, continuationToken);
yield page;
}
}
private async *listByInstancePagingAll(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedServerSecurityAlertPoliciesListByInstanceOptionalParams
): AsyncIterableIterator {
for await (const page of this.listByInstancePagingPage(
resourceGroupName,
managedInstanceName,
options
)) {
yield* page;
}
}
/**
* Get a managed server's threat detection 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 managedInstanceName The name of the managed instance.
* @param securityAlertPolicyName The name of the security alert policy.
* @param options The options parameters.
*/
get(
resourceGroupName: string,
managedInstanceName: string,
securityAlertPolicyName: SecurityAlertPolicyName,
options?: ManagedServerSecurityAlertPoliciesGetOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
managedInstanceName,
securityAlertPolicyName,
options
},
getOperationSpec
);
}
/**
* Creates or updates a threat detection 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 managedInstanceName The name of the managed instance.
* @param securityAlertPolicyName The name of the security alert policy.
* @param parameters The managed server security alert policy.
* @param options The options parameters.
*/
async beginCreateOrUpdate(
resourceGroupName: string,
managedInstanceName: string,
securityAlertPolicyName: SecurityAlertPolicyName,
parameters: ManagedServerSecurityAlertPolicy,
options?: ManagedServerSecurityAlertPoliciesCreateOrUpdateOptionalParams
): Promise<
SimplePollerLike<
OperationState,
ManagedServerSecurityAlertPoliciesCreateOrUpdateResponse
>
> {
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,
securityAlertPolicyName,
parameters,
options
},
spec: createOrUpdateOperationSpec
});
const poller = await createHttpPoller<
ManagedServerSecurityAlertPoliciesCreateOrUpdateResponse,
OperationState
>(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs
});
await poller.poll();
return poller;
}
/**
* Creates or updates a threat detection 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 managedInstanceName The name of the managed instance.
* @param securityAlertPolicyName The name of the security alert policy.
* @param parameters The managed server security alert policy.
* @param options The options parameters.
*/
async beginCreateOrUpdateAndWait(
resourceGroupName: string,
managedInstanceName: string,
securityAlertPolicyName: SecurityAlertPolicyName,
parameters: ManagedServerSecurityAlertPolicy,
options?: ManagedServerSecurityAlertPoliciesCreateOrUpdateOptionalParams
): Promise {
const poller = await this.beginCreateOrUpdate(
resourceGroupName,
managedInstanceName,
securityAlertPolicyName,
parameters,
options
);
return poller.pollUntilDone();
}
/**
* Get the managed server's threat detection policies.
* @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 _listByInstance(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedServerSecurityAlertPoliciesListByInstanceOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, options },
listByInstanceOperationSpec
);
}
/**
* ListByInstanceNext
* @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 ListByInstance method.
* @param options The options parameters.
*/
private _listByInstanceNext(
resourceGroupName: string,
managedInstanceName: string,
nextLink: string,
options?: ManagedServerSecurityAlertPoliciesListByInstanceNextOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, nextLink, options },
listByInstanceNextOperationSpec
);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const getOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/securityAlertPolicies/{securityAlertPolicyName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedServerSecurityAlertPolicy
},
default: {}
},
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.securityAlertPolicyName,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};
const createOrUpdateOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/securityAlertPolicies/{securityAlertPolicyName}",
httpMethod: "PUT",
responses: {
200: {
bodyMapper: Mappers.ManagedServerSecurityAlertPolicy
},
201: {
bodyMapper: Mappers.ManagedServerSecurityAlertPolicy
},
202: {
bodyMapper: Mappers.ManagedServerSecurityAlertPolicy
},
204: {
bodyMapper: Mappers.ManagedServerSecurityAlertPolicy
},
default: {}
},
requestBody: Parameters.parameters43,
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.securityAlertPolicyName,
Parameters.managedInstanceName
],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: "json",
serializer
};
const listByInstanceOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/securityAlertPolicies",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedServerSecurityAlertPolicyListResult
},
default: {}
},
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};
const listByInstanceNextOperationSpec: coreClient.OperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedServerSecurityAlertPolicyListResult
},
default: {}
},
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.nextLink,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};