/*
* 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 { ManagedInstancePrivateLinkResources } 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 {
ManagedInstancePrivateLink,
ManagedInstancePrivateLinkResourcesListByManagedInstanceNextOptionalParams,
ManagedInstancePrivateLinkResourcesListByManagedInstanceOptionalParams,
ManagedInstancePrivateLinkResourcesListByManagedInstanceResponse,
ManagedInstancePrivateLinkResourcesGetOptionalParams,
ManagedInstancePrivateLinkResourcesGetResponse,
ManagedInstancePrivateLinkResourcesListByManagedInstanceNextResponse
} from "../models";
///
/** Class containing ManagedInstancePrivateLinkResources operations. */
export class ManagedInstancePrivateLinkResourcesImpl
implements ManagedInstancePrivateLinkResources {
private readonly client: SqlManagementClient;
/**
* Initialize a new instance of the class ManagedInstancePrivateLinkResources class.
* @param client Reference to the service client
*/
constructor(client: SqlManagementClient) {
this.client = client;
}
/**
* Gets the private link resources for SQL server.
* @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?: ManagedInstancePrivateLinkResourcesListByManagedInstanceOptionalParams
): 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?: ManagedInstancePrivateLinkResourcesListByManagedInstanceOptionalParams,
settings?: PageSettings
): AsyncIterableIterator {
let result: ManagedInstancePrivateLinkResourcesListByManagedInstanceResponse;
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?: ManagedInstancePrivateLinkResourcesListByManagedInstanceOptionalParams
): AsyncIterableIterator {
for await (const page of this.listByManagedInstancePagingPage(
resourceGroupName,
managedInstanceName,
options
)) {
yield* page;
}
}
/**
* Gets the private link resources for SQL server.
* @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?: ManagedInstancePrivateLinkResourcesListByManagedInstanceOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, options },
listByManagedInstanceOperationSpec
);
}
/**
* Gets a private link resource for SQL server.
* @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 groupName The name of the private link resource.
* @param options The options parameters.
*/
get(
resourceGroupName: string,
managedInstanceName: string,
groupName: string,
options?: ManagedInstancePrivateLinkResourcesGetOptionalParams
): Promise {
return this.client.sendOperationRequest(
{ resourceGroupName, managedInstanceName, groupName, options },
getOperationSpec
);
}
/**
* 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?: ManagedInstancePrivateLinkResourcesListByManagedInstanceNextOptionalParams
): Promise<
ManagedInstancePrivateLinkResourcesListByManagedInstanceNextResponse
> {
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}/privateLinkResources",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedInstancePrivateLinkListResult
},
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}/privateLinkResources/{groupName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedInstancePrivateLink
},
default: {}
},
queryParameters: [Parameters.apiVersion3],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.managedInstanceName,
Parameters.groupName
],
headerParameters: [Parameters.accept],
serializer
};
const listByManagedInstanceNextOperationSpec: coreClient.OperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ManagedInstancePrivateLinkListResult
},
default: {}
},
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.nextLink,
Parameters.managedInstanceName
],
headerParameters: [Parameters.accept],
serializer
};