@azure/arm-compute
Version:
A generated SDK for ComputeManagementClient.
167 lines • 6.32 kB
JavaScript
/*
* 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 { setContinuationToken } from "../pagingHelper.js";
import * as coreClient from "@azure/core-client";
import * as Mappers from "../models/mappers.js";
import * as Parameters from "../models/parameters.js";
/// <reference lib="esnext.asynciterable" />
/** Class containing CloudServiceRoles operations. */
export class CloudServiceRolesImpl {
client;
/**
* Initialize a new instance of the class CloudServiceRoles class.
* @param client Reference to the service client
*/
constructor(client) {
this.client = client;
}
/**
* Gets a list of all roles in a cloud service. Use nextLink property in the response to get the next
* page of roles. Do this till nextLink is null to fetch all the roles.
* @param resourceGroupName Name of the resource group.
* @param cloudServiceName Name of the cloud service.
* @param options The options parameters.
*/
list(resourceGroupName, cloudServiceName, options) {
const iter = this.listPagingAll(resourceGroupName, cloudServiceName, options);
return {
next() {
return iter.next();
},
[Symbol.asyncIterator]() {
return this;
},
byPage: (settings) => {
if (settings?.maxPageSize) {
throw new Error("maxPageSize is not supported by this operation.");
}
return this.listPagingPage(resourceGroupName, cloudServiceName, options, settings);
},
};
}
async *listPagingPage(resourceGroupName, cloudServiceName, options, settings) {
let result;
let continuationToken = settings?.continuationToken;
if (!continuationToken) {
result = await this._list(resourceGroupName, cloudServiceName, options);
let page = result.value || [];
continuationToken = result.nextLink;
setContinuationToken(page, continuationToken);
yield page;
}
while (continuationToken) {
result = await this._listNext(resourceGroupName, cloudServiceName, continuationToken, options);
continuationToken = result.nextLink;
let page = result.value || [];
setContinuationToken(page, continuationToken);
yield page;
}
}
async *listPagingAll(resourceGroupName, cloudServiceName, options) {
for await (const page of this.listPagingPage(resourceGroupName, cloudServiceName, options)) {
yield* page;
}
}
/**
* Gets a role from a cloud service.
* @param roleName Name of the role.
* @param resourceGroupName Name of the resource group.
* @param cloudServiceName Name of the cloud service.
* @param options The options parameters.
*/
get(roleName, resourceGroupName, cloudServiceName, options) {
return this.client.sendOperationRequest({ roleName, resourceGroupName, cloudServiceName, options }, getOperationSpec);
}
/**
* Gets a list of all roles in a cloud service. Use nextLink property in the response to get the next
* page of roles. Do this till nextLink is null to fetch all the roles.
* @param resourceGroupName Name of the resource group.
* @param cloudServiceName Name of the cloud service.
* @param options The options parameters.
*/
_list(resourceGroupName, cloudServiceName, options) {
return this.client.sendOperationRequest({ resourceGroupName, cloudServiceName, options }, listOperationSpec);
}
/**
* ListNext
* @param resourceGroupName Name of the resource group.
* @param cloudServiceName Name of the cloud service.
* @param nextLink The nextLink from the previous successful call to the List method.
* @param options The options parameters.
*/
_listNext(resourceGroupName, cloudServiceName, nextLink, options) {
return this.client.sendOperationRequest({ resourceGroupName, cloudServiceName, nextLink, options }, listNextOperationSpec);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const getOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles/{roleName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.CloudServiceRole,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion4],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName1,
Parameters.cloudServiceName,
Parameters.roleName,
],
headerParameters: [Parameters.accept],
serializer,
};
const listOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.CloudServiceRoleListResult,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion4],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName1,
Parameters.cloudServiceName,
],
headerParameters: [Parameters.accept],
serializer,
};
const listNextOperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.CloudServiceRoleListResult,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
urlParameters: [
Parameters.$host,
Parameters.nextLink,
Parameters.subscriptionId,
Parameters.resourceGroupName1,
Parameters.cloudServiceName,
],
headerParameters: [Parameters.accept],
serializer,
};
//# sourceMappingURL=cloudServiceRoles.js.map