/*
* 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 { ManagedInstanceOperations } 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 {
ManagedInstanceOperation,
ManagedInstanceOperationsListByManagedInstanceNextOptionalParams,
ManagedInstanceOperationsListByManagedInstanceOptionalParams,
ManagedInstanceOperationsListByManagedInstanceResponse,
ManagedInstanceOperationsGetOptionalParams,
ManagedInstanceOperationsGetResponse,
ManagedInstanceOperationsCancelOptionalParams,
ManagedInstanceOperationsListByManagedInstanceNextResponse
} from "../models";
///
/** Class containing ManagedInstanceOperations operations. */
export class ManagedInstanceOperationsImpl
implements ManagedInstanceOperations {
private readonly client: SqlManagementClient;
/**
* Initialize a new instance of the class ManagedInstanceOperations class.
* @param client Reference to the service client
*/
constructor(client: SqlManagementClient) {
this.client = client;
}
/**
* Gets a list of operations performed on the 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 listByManagedInstance(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedInstanceOperationsListByManagedInstanceOptionalParams
): PagedAsyncIterableIterator {
const iter = this.listByManagedInstancePagingAll(
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.listByManagedInstancePagingPage(
resourceGroupName,
managedInstanceName,
options,
settings
);
}
};
}
private async *listByManagedInstancePagingPage(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedInstanceOperationsListByManagedInstanceOptionalParams,
settings?: PageSettings
): AsyncIterableIterator {
let result: ManagedInstanceOperationsListByManagedInstanceResponse;
let continuationToken = settings?.continuationToken;
if (!continuationToken) {
result = await this._listByManagedInstance(
resourceGroupName,
managedInstanceName,
options
);
let page = result.value || [];
continuationToken = result.nextLink;
setContinuationToken(page, continuationToken);
yield page;
}
while (continuationToken) {
result = await this._listByManagedInstanceNext(
resourceGroupName,
managedInstanceName,
continuationToken,
options
);
continuationToken = result.nextLink;
let page = result.value || [];
setContinuationToken(page, continuationToken);
yield page;
}
}
private async *listByManagedInstancePagingAll(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedInstanceOperationsListByManagedInstanceOptionalParams
): AsyncIterableIterator {
for await (const page of this.listByManagedInstancePagingPage(
resourceGroupName,
managedInstanceName,
options
)) {
yield* page;
}
}
/**
* Gets a list of operations performed on the 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 _listByManagedInstance(
resourceGroupName: string,
managedInstanceName: string,
options?: ManagedInstanceOperationsListByManagedInstanceOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, options },
listByManagedInstanceOperationSpec
);
}
/**
* Gets a management operation on a 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 operationId
* @param options The options parameters.
*/
get(
resourceGroupName: string,
managedInstanceName: string,
operationId: string,
options?: ManagedInstanceOperationsGetOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, operationId, options },
getOperationSpec
);
}
/**
* Cancels the asynchronous operation on the 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 operationId
* @param options The options parameters.
*/
cancel(
resourceGroupName: string,
managedInstanceName: string,
operationId: string,
options?: ManagedInstanceOperationsCancelOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, operationId, options },
cancelOperationSpec
);
}
/**
* ListByManagedInstanceNext
* @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 ListByManagedInstance method.
* @param options The options parameters.
*/
private _listByManagedInstanceNext(
resourceGroupName: string,
managedInstanceName: string,
nextLink: string,
options?: ManagedInstanceOperationsListByManagedInstanceNextOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, nextLink, options },
listByManagedInstanceNextOperationSpec
);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const listByManagedInstanceOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/operations",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedInstanceOperationListResult
},
default: {}
},
queryParameters: [Parameters.apiVersion3],
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}/operations/{operationId}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedInstanceOperation
},
default: {}
},
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.operationId,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};
const cancelOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/operations/{operationId}/cancel",
httpMethod: "POST",
responses: { 200: {}, default: {} },
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.operationId,
Parameters.managedInstanceName
],
serializer
};
const listByManagedInstanceNextOperationSpec: coreClient.OperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedInstanceOperationListResult
},
default: {}
},
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.nextLink,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};