@azure/arm-compute
Version:
A generated SDK for ComputeManagementClient.
130 lines • 4.44 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 UsageOperations operations. */
export class UsageOperationsImpl {
client;
/**
* Initialize a new instance of the class UsageOperations class.
* @param client Reference to the service client
*/
constructor(client) {
this.client = client;
}
/**
* Gets, for the specified location, the current compute resource usage information as well as the
* limits for compute resources under the subscription.
* @param location The name of Azure region.
* @param options The options parameters.
*/
list(location, options) {
const iter = this.listPagingAll(location, 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(location, options, settings);
},
};
}
async *listPagingPage(location, options, settings) {
let result;
let continuationToken = settings?.continuationToken;
if (!continuationToken) {
result = await this._list(location, options);
let page = result.value || [];
continuationToken = result.nextLink;
setContinuationToken(page, continuationToken);
yield page;
}
while (continuationToken) {
result = await this._listNext(location, continuationToken, options);
continuationToken = result.nextLink;
let page = result.value || [];
setContinuationToken(page, continuationToken);
yield page;
}
}
async *listPagingAll(location, options) {
for await (const page of this.listPagingPage(location, options)) {
yield* page;
}
}
/**
* Gets, for the specified location, the current compute resource usage information as well as the
* limits for compute resources under the subscription.
* @param location The name of Azure region.
* @param options The options parameters.
*/
_list(location, options) {
return this.client.sendOperationRequest({ location, options }, listOperationSpec);
}
/**
* ListNext
* @param location The name of Azure region.
* @param nextLink The nextLink from the previous successful call to the List method.
* @param options The options parameters.
*/
_listNext(location, nextLink, options) {
return this.client.sendOperationRequest({ location, nextLink, options }, listNextOperationSpec);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const listOperationSpec = {
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/usages",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ListUsagesResult,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.location,
],
headerParameters: [Parameters.accept],
serializer,
};
const listNextOperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.ListUsagesResult,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
urlParameters: [
Parameters.$host,
Parameters.nextLink,
Parameters.subscriptionId,
Parameters.location,
],
headerParameters: [Parameters.accept],
serializer,
};
//# sourceMappingURL=usageOperations.js.map