/*
* 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 { StartStopManagedInstanceSchedules } 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 {
StartStopManagedInstanceSchedule,
StartStopManagedInstanceSchedulesListByInstanceNextOptionalParams,
StartStopManagedInstanceSchedulesListByInstanceOptionalParams,
StartStopManagedInstanceSchedulesListByInstanceResponse,
StartStopScheduleName,
StartStopManagedInstanceSchedulesGetOptionalParams,
StartStopManagedInstanceSchedulesGetResponse,
StartStopManagedInstanceSchedulesCreateOrUpdateOptionalParams,
StartStopManagedInstanceSchedulesCreateOrUpdateResponse,
StartStopManagedInstanceSchedulesDeleteOptionalParams,
StartStopManagedInstanceSchedulesListByInstanceNextResponse
} from "../models";
///
/** Class containing StartStopManagedInstanceSchedules operations. */
export class StartStopManagedInstanceSchedulesImpl
implements StartStopManagedInstanceSchedules {
private readonly client: SqlManagementClient;
/**
* Initialize a new instance of the class StartStopManagedInstanceSchedules class.
* @param client Reference to the service client
*/
constructor(client: SqlManagementClient) {
this.client = client;
}
/**
* Lists the managed instance's Start/Stop schedules.
* @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?: StartStopManagedInstanceSchedulesListByInstanceOptionalParams
): 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?: StartStopManagedInstanceSchedulesListByInstanceOptionalParams,
settings?: PageSettings
): AsyncIterableIterator {
let result: StartStopManagedInstanceSchedulesListByInstanceResponse;
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?: StartStopManagedInstanceSchedulesListByInstanceOptionalParams
): AsyncIterableIterator {
for await (const page of this.listByInstancePagingPage(
resourceGroupName,
managedInstanceName,
options
)) {
yield* page;
}
}
/**
* Lists the managed instance's Start/Stop schedules.
* @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?: StartStopManagedInstanceSchedulesListByInstanceOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, options },
listByInstanceOperationSpec
);
}
/**
* Gets the managed instance's Start/Stop schedule.
* @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 startStopScheduleName Name of the managed instance Start/Stop schedule.
* @param options The options parameters.
*/
get(
resourceGroupName: string,
managedInstanceName: string,
startStopScheduleName: StartStopScheduleName,
options?: StartStopManagedInstanceSchedulesGetOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
managedInstanceName,
startStopScheduleName,
options
},
getOperationSpec
);
}
/**
* Creates or updates the managed instance's Start/Stop schedule.
* @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 startStopScheduleName Name of the managed instance Start/Stop schedule.
* @param parameters The requested managed instance Start/Stop schedule.
* @param options The options parameters.
*/
createOrUpdate(
resourceGroupName: string,
managedInstanceName: string,
startStopScheduleName: StartStopScheduleName,
parameters: StartStopManagedInstanceSchedule,
options?: StartStopManagedInstanceSchedulesCreateOrUpdateOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
managedInstanceName,
startStopScheduleName,
parameters,
options
},
createOrUpdateOperationSpec
);
}
/**
* Deletes the managed instance's Start/Stop schedule.
* @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 startStopScheduleName Name of the managed instance Start/Stop schedule.
* @param options The options parameters.
*/
delete(
resourceGroupName: string,
managedInstanceName: string,
startStopScheduleName: StartStopScheduleName,
options?: StartStopManagedInstanceSchedulesDeleteOptionalParams
): Promise {
return this.client.sendOperationRequest(
{
resourceGroupName,
managedInstanceName,
startStopScheduleName,
options
},
deleteOperationSpec
);
}
/**
* 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?: StartStopManagedInstanceSchedulesListByInstanceNextOptionalParams
): 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}/startStopSchedules",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.StartStopManagedInstanceScheduleListResult
},
default: {}
},
queryParameters: [Parameters.apiVersion1],
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}/startStopSchedules/{startStopScheduleName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.StartStopManagedInstanceSchedule
},
default: {}
},
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName,
Parameters.startStopScheduleName
],
headerParameters: [Parameters.accept],
serializer
};
const createOrUpdateOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/startStopSchedules/{startStopScheduleName}",
httpMethod: "PUT",
responses: {
200: {
bodyMapper: Mappers.StartStopManagedInstanceSchedule
},
201: {
bodyMapper: Mappers.StartStopManagedInstanceSchedule
},
default: {}
},
requestBody: Parameters.parameters104,
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName,
Parameters.startStopScheduleName
],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: "json",
serializer
};
const deleteOperationSpec: coreClient.OperationSpec = {
path:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/startStopSchedules/{startStopScheduleName}",
httpMethod: "DELETE",
responses: { 200: {}, 204: {}, default: {} },
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName,
Parameters.startStopScheduleName
],
serializer
};
const listByInstanceNextOperationSpec: coreClient.OperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.StartStopManagedInstanceScheduleListResult
},
default: {}
},
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.nextLink,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};