/*
* 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 { ServerTrustCertificates } 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 {
ServerTrustCertificate,
ServerTrustCertificatesListByInstanceNextOptionalParams,
ServerTrustCertificatesListByInstanceOptionalParams,
ServerTrustCertificatesListByInstanceResponse,
ServerTrustCertificatesGetOptionalParams,
ServerTrustCertificatesGetResponse,
ServerTrustCertificatesCreateOrUpdateOptionalParams,
ServerTrustCertificatesCreateOrUpdateResponse,
ServerTrustCertificatesDeleteOptionalParams,
ServerTrustCertificatesListByInstanceNextResponse
} from "../models";
///
/** Class containing ServerTrustCertificates operations. */
export class ServerTrustCertificatesImpl implements ServerTrustCertificates {
private readonly client: SqlManagementClient;
/**
* Initialize a new instance of the class ServerTrustCertificates class.
* @param client Reference to the service client
*/
constructor(client: SqlManagementClient) {
this.client = client;
}
/**
* Gets a list of server trust certificates that were uploaded from box to the given Sql Managed
* Instance.
* @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?: ServerTrustCertificatesListByInstanceOptionalParams
): 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?: ServerTrustCertificatesListByInstanceOptionalParams,
settings?: PageSettings
): AsyncIterableIterator {
let result: ServerTrustCertificatesListByInstanceResponse;
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?: ServerTrustCertificatesListByInstanceOptionalParams
): AsyncIterableIterator {
for await (const page of this.listByInstancePagingPage(
resourceGroupName,
managedInstanceName,
options
)) {
yield* page;
}
}
/**
* Gets a list of server trust certificates that were uploaded from box to the given Sql Managed
* Instance.
* @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?: ServerTrustCertificatesListByInstanceOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, options },
listByInstanceOperationSpec
);
}
/**
* Gets a server trust certificate that was uploaded from box to Sql Managed Instance.
* @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 certificateName Name of of the certificate to get.
* @param options The options parameters.
*/
get(
resourceGroupName: string,
managedInstanceName: string,
certificateName: string,
options?: ServerTrustCertificatesGetOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, certificateName, options },
getOperationSpec
);
}
/**
* Uploads a server trust certificate from box to Sql Managed Instance.
* @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 certificateName Name of of the certificate to upload.
* @param parameters The server trust certificate info.
* @param options The options parameters.
*/
async beginCreateOrUpdate(
resourceGroupName: string,
managedInstanceName: string,
certificateName: string,
parameters: ServerTrustCertificate,
options?: ServerTrustCertificatesCreateOrUpdateOptionalParams
): Promise<
SimplePollerLike<
OperationState,
ServerTrustCertificatesCreateOrUpdateResponse
>
> {
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,
certificateName,
parameters,
options
},
spec: createOrUpdateOperationSpec
});
const poller = await createHttpPoller<
ServerTrustCertificatesCreateOrUpdateResponse,
OperationState
>(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs
});
await poller.poll();
return poller;
}
/**
* Uploads a server trust certificate from box to Sql Managed Instance.
* @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 certificateName Name of of the certificate to upload.
* @param parameters The server trust certificate info.
* @param options The options parameters.
*/
async beginCreateOrUpdateAndWait(
resourceGroupName: string,
managedInstanceName: string,
certificateName: string,
parameters: ServerTrustCertificate,
options?: ServerTrustCertificatesCreateOrUpdateOptionalParams
): Promise {
const poller = await this.beginCreateOrUpdate(
resourceGroupName,
managedInstanceName,
certificateName,
parameters,
options
);
return poller.pollUntilDone();
}
/**
* Deletes a server trust certificate that was uploaded from box to Sql Managed Instance.
* @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 certificateName Name of of the certificate to delete.
* @param options The options parameters.
*/
async beginDelete(
resourceGroupName: string,
managedInstanceName: string,
certificateName: string,
options?: ServerTrustCertificatesDeleteOptionalParams
): 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,
certificateName,
options
},
spec: deleteOperationSpec
});
const poller = await createHttpPoller>(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs
});
await poller.poll();
return poller;
}
/**
* Deletes a server trust certificate that was uploaded from box to Sql Managed Instance.
* @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 certificateName Name of of the certificate to delete.
* @param options The options parameters.
*/
async beginDeleteAndWait(
resourceGroupName: string,
managedInstanceName: string,
certificateName: string,
options?: ServerTrustCertificatesDeleteOptionalParams
): Promise {
const poller = await this.beginDelete(
resourceGroupName,
managedInstanceName,
certificateName,
options
);
return poller.pollUntilDone();
}
/**
* 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?: ServerTrustCertificatesListByInstanceNextOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, nextLink, options },
listByInstanceNextOperationSpec
);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const listByInstanceOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/serverTrustCertificates",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ServerTrustCertificatesListResult
},
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}/serverTrustCertificates/{certificateName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ServerTrustCertificate
},
default: {}
},
queryParameters: [Parameters.apiVersion7],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName,
Parameters.certificateName
],
headerParameters: [Parameters.accept],
serializer
};
const createOrUpdateOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/serverTrustCertificates/{certificateName}",
httpMethod: "PUT",
responses: {
200: {
bodyMapper: Mappers.ServerTrustCertificate
},
201: {
bodyMapper: Mappers.ServerTrustCertificate
},
202: {
bodyMapper: Mappers.ServerTrustCertificate
},
204: {
bodyMapper: Mappers.ServerTrustCertificate
},
default: {}
},
requestBody: Parameters.parameters70,
queryParameters: [Parameters.apiVersion7],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName,
Parameters.certificateName
],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: "json",
serializer
};
const deleteOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/serverTrustCertificates/{certificateName}",
httpMethod: "DELETE",
responses: { 200: {}, 201: {}, 202: {}, 204: {}, default: {} },
queryParameters: [Parameters.apiVersion7],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName,
Parameters.certificateName
],
serializer
};
const listByInstanceNextOperationSpec: coreClient.OperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ServerTrustCertificatesListResult
},
default: {}
},
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.nextLink,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};