/*
* 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 { RestorePoints } 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 {
RestorePoint,
RestorePointsListByDatabaseNextOptionalParams,
RestorePointsListByDatabaseOptionalParams,
RestorePointsListByDatabaseResponse,
CreateDatabaseRestorePointDefinition,
RestorePointsCreateOptionalParams,
RestorePointsCreateResponse,
RestorePointsGetOptionalParams,
RestorePointsGetResponse,
RestorePointsDeleteOptionalParams,
RestorePointsListByDatabaseNextResponse
} from "../models";
///
/** Class containing RestorePoints operations. */
export class RestorePointsImpl implements RestorePoints {
private readonly client: SqlManagementClient;
/**
* Initialize a new instance of the class RestorePoints class.
* @param client Reference to the service client
*/
constructor(client: SqlManagementClient) {
this.client = client;
}
/**
* Gets a list of database restore points.
* @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 databaseName The name of the database.
* @param options The options parameters.
*/
public listByDatabase(
resourceGroupName: string,
serverName: string,
databaseName: string,
options?: RestorePointsListByDatabaseOptionalParams
): PagedAsyncIterableIterator {
const iter = this.listByDatabasePagingAll(
resourceGroupName,
serverName,
databaseName,
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.listByDatabasePagingPage(
resourceGroupName,
serverName,
databaseName,
options,
settings
);
}
};
}
private async *listByDatabasePagingPage(
resourceGroupName: string,
serverName: string,
databaseName: string,
options?: RestorePointsListByDatabaseOptionalParams,
settings?: PageSettings
): AsyncIterableIterator {
let result: RestorePointsListByDatabaseResponse;
let continuationToken = settings?.continuationToken;
if (!continuationToken) {
result = await this._listByDatabase(
resourceGroupName,
serverName,
databaseName,
options
);
let page = result.value || [];
continuationToken = result.nextLink;
setContinuationToken(page, continuationToken);
yield page;
}
while (continuationToken) {
result = await this._listByDatabaseNext(
resourceGroupName,
serverName,
databaseName,
continuationToken,
options
);
continuationToken = result.nextLink;
let page = result.value || [];
setContinuationToken(page, continuationToken);
yield page;
}
}
private async *listByDatabasePagingAll(
resourceGroupName: string,
serverName: string,
databaseName: string,
options?: RestorePointsListByDatabaseOptionalParams
): AsyncIterableIterator {
for await (const page of this.listByDatabasePagingPage(
resourceGroupName,
serverName,
databaseName,
options
)) {
yield* page;
}
}
/**
* Gets a list of database restore points.
* @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 databaseName The name of the database.
* @param options The options parameters.
*/
private _listByDatabase(
resourceGroupName: string,
serverName: string,
databaseName: string,
options?: RestorePointsListByDatabaseOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, serverName, databaseName, options },
listByDatabaseOperationSpec
);
}
/**
* Creates a restore point for a data warehouse.
* @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 databaseName The name of the database.
* @param parameters The definition for creating the restore point of this database.
* @param options The options parameters.
*/
async beginCreate(
resourceGroupName: string,
serverName: string,
databaseName: string,
parameters: CreateDatabaseRestorePointDefinition,
options?: RestorePointsCreateOptionalParams
): Promise<
SimplePollerLike<
OperationState,
RestorePointsCreateResponse
>
> {
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,
serverName,
databaseName,
parameters,
options
},
spec: createOperationSpec
});
const poller = await createHttpPoller<
RestorePointsCreateResponse,
OperationState
>(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs
});
await poller.poll();
return poller;
}
/**
* Creates a restore point for a data warehouse.
* @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 databaseName The name of the database.
* @param parameters The definition for creating the restore point of this database.
* @param options The options parameters.
*/
async beginCreateAndWait(
resourceGroupName: string,
serverName: string,
databaseName: string,
parameters: CreateDatabaseRestorePointDefinition,
options?: RestorePointsCreateOptionalParams
): Promise {
const poller = await this.beginCreate(
resourceGroupName,
serverName,
databaseName,
parameters,
options
);
return poller.pollUntilDone();
}
/**
* Gets a restore point.
* @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 databaseName The name of the database.
* @param restorePointName The name of the restore point.
* @param options The options parameters.
*/
get(
resourceGroupName: string,
serverName: string,
databaseName: string,
restorePointName: string,
options?: RestorePointsGetOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
serverName,
databaseName,
restorePointName,
options
},
getOperationSpec
);
}
/**
* Deletes a restore point.
* @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 databaseName The name of the database.
* @param restorePointName The name of the restore point.
* @param options The options parameters.
*/
delete(
resourceGroupName: string,
serverName: string,
databaseName: string,
restorePointName: string,
options?: RestorePointsDeleteOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
serverName,
databaseName,
restorePointName,
options
},
deleteOperationSpec
);
}
/**
* ListByDatabaseNext
* @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 databaseName The name of the database.
* @param nextLink The nextLink from the previous successful call to the ListByDatabase method.
* @param options The options parameters.
*/
private _listByDatabaseNext(
resourceGroupName: string,
serverName: string,
databaseName: string,
nextLink: string,
options?: RestorePointsListByDatabaseNextOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, serverName, databaseName, nextLink, options },
listByDatabaseNextOperationSpec
);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const listByDatabaseOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.RestorePointListResult
},
default: {}
},
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName
],
headerParameters: [Parameters.accept],
serializer
};
const createOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints",
httpMethod: "POST",
responses: {
200: {
bodyMapper: Mappers.RestorePoint
},
201: {
bodyMapper: Mappers.RestorePoint
},
202: {
bodyMapper: Mappers.RestorePoint
},
204: {
bodyMapper: Mappers.RestorePoint
},
default: {}
},
requestBody: Parameters.parameters45,
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName
],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: "json",
serializer
};
const getOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints/{restorePointName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.RestorePoint
},
default: {}
},
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName,
Parameters.restorePointName
],
headerParameters: [Parameters.accept],
serializer
};
const deleteOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints/{restorePointName}",
httpMethod: "DELETE",
responses: { 200: {}, default: {} },
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName,
Parameters.restorePointName
],
serializer
};
const listByDatabaseNextOperationSpec: coreClient.OperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.RestorePointListResult
},
default: {}
},
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName,
Parameters.nextLink
],
headerParameters: [Parameters.accept],
serializer
};