/*
* 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 { GeoBackupPolicies } 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 {
GeoBackupPolicy,
GeoBackupPoliciesListByDatabaseOptionalParams,
GeoBackupPoliciesListByDatabaseResponse,
GeoBackupPolicyName,
GeoBackupPoliciesCreateOrUpdateOptionalParams,
GeoBackupPoliciesCreateOrUpdateResponse,
GeoBackupPoliciesGetOptionalParams,
GeoBackupPoliciesGetResponse
} from "../models";
///
/** Class containing GeoBackupPolicies operations. */
export class GeoBackupPoliciesImpl implements GeoBackupPolicies {
private readonly client: SqlManagementClient;
/**
* Initialize a new instance of the class GeoBackupPolicies class.
* @param client Reference to the service client
*/
constructor(client: SqlManagementClient) {
this.client = client;
}
/**
* Returns a list of geo backup 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 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?: GeoBackupPoliciesListByDatabaseOptionalParams
): 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?: GeoBackupPoliciesListByDatabaseOptionalParams,
_settings?: PageSettings
): AsyncIterableIterator {
let result: GeoBackupPoliciesListByDatabaseResponse;
result = await this._listByDatabase(
resourceGroupName,
serverName,
databaseName,
options
);
yield result.value || [];
}
private async *listByDatabasePagingAll(
resourceGroupName: string,
serverName: string,
databaseName: string,
options?: GeoBackupPoliciesListByDatabaseOptionalParams
): AsyncIterableIterator {
for await (const page of this.listByDatabasePagingPage(
resourceGroupName,
serverName,
databaseName,
options
)) {
yield* page;
}
}
/**
* Updates a database geo backup 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 databaseName The name of the database.
* @param geoBackupPolicyName The name of the geo backup policy.
* @param parameters The required parameters for creating or updating the geo backup policy.
* @param options The options parameters.
*/
createOrUpdate(
resourceGroupName: string,
serverName: string,
databaseName: string,
geoBackupPolicyName: GeoBackupPolicyName,
parameters: GeoBackupPolicy,
options?: GeoBackupPoliciesCreateOrUpdateOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
serverName,
databaseName,
geoBackupPolicyName,
parameters,
options
},
createOrUpdateOperationSpec
);
}
/**
* Gets a geo backup 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 databaseName The name of the database.
* @param geoBackupPolicyName The name of the geo backup policy.
* @param options The options parameters.
*/
get(
resourceGroupName: string,
serverName: string,
databaseName: string,
geoBackupPolicyName: GeoBackupPolicyName,
options?: GeoBackupPoliciesGetOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
serverName,
databaseName,
geoBackupPolicyName,
options
},
getOperationSpec
);
}
/**
* Returns a list of geo backup 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 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?: GeoBackupPoliciesListByDatabaseOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, serverName, databaseName, options },
listByDatabaseOperationSpec
);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const createOrUpdateOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/geoBackupPolicies/{geoBackupPolicyName}",
httpMethod: "PUT",
responses: {
200: {
bodyMapper: Mappers.GeoBackupPolicy
},
201: {
bodyMapper: Mappers.GeoBackupPolicy
}
},
requestBody: Parameters.parameters2,
queryParameters: [Parameters.apiVersion],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName,
Parameters.geoBackupPolicyName
],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: "json",
serializer
};
const getOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/geoBackupPolicies/{geoBackupPolicyName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.GeoBackupPolicy
}
},
queryParameters: [Parameters.apiVersion],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName,
Parameters.geoBackupPolicyName
],
headerParameters: [Parameters.accept],
serializer
};
const listByDatabaseOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/geoBackupPolicies",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.GeoBackupPolicyListResult
}
},
queryParameters: [Parameters.apiVersion],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serverName,
Parameters.databaseName
],
headerParameters: [Parameters.accept],
serializer
};