@azure/arm-compute
Version:
A generated SDK for ComputeManagementClient.
712 lines • 27.6 kB
JavaScript
"use strict";
/*
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.DisksImpl = void 0;
const tslib_1 = require("tslib");
const pagingHelper_js_1 = require("../pagingHelper.js");
const coreClient = tslib_1.__importStar(require("@azure/core-client"));
const Mappers = tslib_1.__importStar(require("../models/mappers.js"));
const Parameters = tslib_1.__importStar(require("../models/parameters.js"));
const core_lro_1 = require("@azure/core-lro");
const lroImpl_js_1 = require("../lroImpl.js");
/// <reference lib="esnext.asynciterable" />
/** Class containing Disks operations. */
class DisksImpl {
client;
/**
* Initialize a new instance of the class Disks class.
* @param client Reference to the service client
*/
constructor(client) {
this.client = client;
}
/**
* Lists all the disks under a subscription.
* @param options The options parameters.
*/
list(options) {
const iter = this.listPagingAll(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(options, settings);
},
};
}
async *listPagingPage(options, settings) {
let result;
let continuationToken = settings?.continuationToken;
if (!continuationToken) {
result = await this._list(options);
let page = result.value || [];
continuationToken = result.nextLink;
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
yield page;
}
while (continuationToken) {
result = await this._listNext(continuationToken, options);
continuationToken = result.nextLink;
let page = result.value || [];
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
yield page;
}
}
async *listPagingAll(options) {
for await (const page of this.listPagingPage(options)) {
yield* page;
}
}
/**
* Lists all the disks under a resource group.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param options The options parameters.
*/
listByResourceGroup(resourceGroupName, options) {
const iter = this.listByResourceGroupPagingAll(resourceGroupName, 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.listByResourceGroupPagingPage(resourceGroupName, options, settings);
},
};
}
async *listByResourceGroupPagingPage(resourceGroupName, options, settings) {
let result;
let continuationToken = settings?.continuationToken;
if (!continuationToken) {
result = await this._listByResourceGroup(resourceGroupName, options);
let page = result.value || [];
continuationToken = result.nextLink;
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
yield page;
}
while (continuationToken) {
result = await this._listByResourceGroupNext(resourceGroupName, continuationToken, options);
continuationToken = result.nextLink;
let page = result.value || [];
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
yield page;
}
}
async *listByResourceGroupPagingAll(resourceGroupName, options) {
for await (const page of this.listByResourceGroupPagingPage(resourceGroupName, options)) {
yield* page;
}
}
/**
* Lists all the disks under a subscription.
* @param options The options parameters.
*/
_list(options) {
return this.client.sendOperationRequest({ options }, listOperationSpec);
}
/**
* Lists all the disks under a resource group.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param options The options parameters.
*/
_listByResourceGroup(resourceGroupName, options) {
return this.client.sendOperationRequest({ resourceGroupName, options }, listByResourceGroupOperationSpec);
}
/**
* Gets information about a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param options The options parameters.
*/
get(resourceGroupName, diskName, options) {
return this.client.sendOperationRequest({ resourceGroupName, diskName, options }, getOperationSpec);
}
/**
* Creates or updates a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param disk Disk object supplied in the body of the Put disk operation.
* @param options The options parameters.
*/
async beginCreateOrUpdate(resourceGroupName, diskName, disk, options) {
const directSendOperation = async (args, spec) => {
return this.client.sendOperationRequest(args, spec);
};
const sendOperationFn = async (args, spec) => {
let currentRawResponse = undefined;
const providedCallback = args.options?.onResponse;
const callback = (rawResponse, flatResponse) => {
currentRawResponse = rawResponse;
providedCallback?.(rawResponse, flatResponse);
};
const updatedArgs = {
...args,
options: {
...args.options,
onResponse: callback,
},
};
const flatResponse = await directSendOperation(updatedArgs, spec);
return {
flatResponse,
rawResponse: {
statusCode: currentRawResponse.status,
body: currentRawResponse.parsedBody,
headers: currentRawResponse.headers.toJSON(),
},
};
};
const lro = (0, lroImpl_js_1.createLroSpec)({
sendOperationFn,
args: { resourceGroupName, diskName, disk, options },
spec: createOrUpdateOperationSpec,
});
const poller = await (0, core_lro_1.createHttpPoller)(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs,
resourceLocationConfig: "location",
});
await poller.poll();
return poller;
}
/**
* Creates or updates a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param disk Disk object supplied in the body of the Put disk operation.
* @param options The options parameters.
*/
async beginCreateOrUpdateAndWait(resourceGroupName, diskName, disk, options) {
const poller = await this.beginCreateOrUpdate(resourceGroupName, diskName, disk, options);
return poller.pollUntilDone();
}
/**
* Updates (patches) a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param disk Disk object supplied in the body of the Patch disk operation.
* @param options The options parameters.
*/
async beginUpdate(resourceGroupName, diskName, disk, options) {
const directSendOperation = async (args, spec) => {
return this.client.sendOperationRequest(args, spec);
};
const sendOperationFn = async (args, spec) => {
let currentRawResponse = undefined;
const providedCallback = args.options?.onResponse;
const callback = (rawResponse, flatResponse) => {
currentRawResponse = rawResponse;
providedCallback?.(rawResponse, flatResponse);
};
const updatedArgs = {
...args,
options: {
...args.options,
onResponse: callback,
},
};
const flatResponse = await directSendOperation(updatedArgs, spec);
return {
flatResponse,
rawResponse: {
statusCode: currentRawResponse.status,
body: currentRawResponse.parsedBody,
headers: currentRawResponse.headers.toJSON(),
},
};
};
const lro = (0, lroImpl_js_1.createLroSpec)({
sendOperationFn,
args: { resourceGroupName, diskName, disk, options },
spec: updateOperationSpec,
});
const poller = await (0, core_lro_1.createHttpPoller)(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs,
resourceLocationConfig: "location",
});
await poller.poll();
return poller;
}
/**
* Updates (patches) a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param disk Disk object supplied in the body of the Patch disk operation.
* @param options The options parameters.
*/
async beginUpdateAndWait(resourceGroupName, diskName, disk, options) {
const poller = await this.beginUpdate(resourceGroupName, diskName, disk, options);
return poller.pollUntilDone();
}
/**
* Deletes a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param options The options parameters.
*/
async beginDelete(resourceGroupName, diskName, options) {
const directSendOperation = async (args, spec) => {
return this.client.sendOperationRequest(args, spec);
};
const sendOperationFn = async (args, spec) => {
let currentRawResponse = undefined;
const providedCallback = args.options?.onResponse;
const callback = (rawResponse, flatResponse) => {
currentRawResponse = rawResponse;
providedCallback?.(rawResponse, flatResponse);
};
const updatedArgs = {
...args,
options: {
...args.options,
onResponse: callback,
},
};
const flatResponse = await directSendOperation(updatedArgs, spec);
return {
flatResponse,
rawResponse: {
statusCode: currentRawResponse.status,
body: currentRawResponse.parsedBody,
headers: currentRawResponse.headers.toJSON(),
},
};
};
const lro = (0, lroImpl_js_1.createLroSpec)({
sendOperationFn,
args: { resourceGroupName, diskName, options },
spec: deleteOperationSpec,
});
const poller = await (0, core_lro_1.createHttpPoller)(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs,
resourceLocationConfig: "location",
});
await poller.poll();
return poller;
}
/**
* Deletes a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param options The options parameters.
*/
async beginDeleteAndWait(resourceGroupName, diskName, options) {
const poller = await this.beginDelete(resourceGroupName, diskName, options);
return poller.pollUntilDone();
}
/**
* Grants access to a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @param options The options parameters.
*/
async beginGrantAccess(resourceGroupName, diskName, grantAccessData, options) {
const directSendOperation = async (args, spec) => {
return this.client.sendOperationRequest(args, spec);
};
const sendOperationFn = async (args, spec) => {
let currentRawResponse = undefined;
const providedCallback = args.options?.onResponse;
const callback = (rawResponse, flatResponse) => {
currentRawResponse = rawResponse;
providedCallback?.(rawResponse, flatResponse);
};
const updatedArgs = {
...args,
options: {
...args.options,
onResponse: callback,
},
};
const flatResponse = await directSendOperation(updatedArgs, spec);
return {
flatResponse,
rawResponse: {
statusCode: currentRawResponse.status,
body: currentRawResponse.parsedBody,
headers: currentRawResponse.headers.toJSON(),
},
};
};
const lro = (0, lroImpl_js_1.createLroSpec)({
sendOperationFn,
args: { resourceGroupName, diskName, grantAccessData, options },
spec: grantAccessOperationSpec,
});
const poller = await (0, core_lro_1.createHttpPoller)(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs,
resourceLocationConfig: "location",
});
await poller.poll();
return poller;
}
/**
* Grants access to a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @param options The options parameters.
*/
async beginGrantAccessAndWait(resourceGroupName, diskName, grantAccessData, options) {
const poller = await this.beginGrantAccess(resourceGroupName, diskName, grantAccessData, options);
return poller.pollUntilDone();
}
/**
* Revokes access to a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param options The options parameters.
*/
async beginRevokeAccess(resourceGroupName, diskName, options) {
const directSendOperation = async (args, spec) => {
return this.client.sendOperationRequest(args, spec);
};
const sendOperationFn = async (args, spec) => {
let currentRawResponse = undefined;
const providedCallback = args.options?.onResponse;
const callback = (rawResponse, flatResponse) => {
currentRawResponse = rawResponse;
providedCallback?.(rawResponse, flatResponse);
};
const updatedArgs = {
...args,
options: {
...args.options,
onResponse: callback,
},
};
const flatResponse = await directSendOperation(updatedArgs, spec);
return {
flatResponse,
rawResponse: {
statusCode: currentRawResponse.status,
body: currentRawResponse.parsedBody,
headers: currentRawResponse.headers.toJSON(),
},
};
};
const lro = (0, lroImpl_js_1.createLroSpec)({
sendOperationFn,
args: { resourceGroupName, diskName, options },
spec: revokeAccessOperationSpec,
});
const poller = await (0, core_lro_1.createHttpPoller)(lro, {
restoreFrom: options?.resumeFrom,
intervalInMs: options?.updateIntervalInMs,
resourceLocationConfig: "location",
});
await poller.poll();
return poller;
}
/**
* Revokes access to a disk.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param diskName The name of the managed disk that is being created. The name can't be changed after
* the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name
* length is 80 characters.
* @param options The options parameters.
*/
async beginRevokeAccessAndWait(resourceGroupName, diskName, options) {
const poller = await this.beginRevokeAccess(resourceGroupName, diskName, options);
return poller.pollUntilDone();
}
/**
* ListNext
* @param nextLink The nextLink from the previous successful call to the List method.
* @param options The options parameters.
*/
_listNext(nextLink, options) {
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
}
/**
* ListByResourceGroupNext
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.
* @param options The options parameters.
*/
_listByResourceGroupNext(resourceGroupName, nextLink, options) {
return this.client.sendOperationRequest({ resourceGroupName, nextLink, options }, listByResourceGroupNextOperationSpec);
}
}
exports.DisksImpl = DisksImpl;
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const listOperationSpec = {
path: "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/disks",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.DiskList,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion1],
urlParameters: [Parameters.$host, Parameters.subscriptionId],
headerParameters: [Parameters.accept],
serializer,
};
const listByResourceGroupOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.DiskList,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
],
headerParameters: [Parameters.accept],
serializer,
};
const getOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.Disk,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.diskName,
],
headerParameters: [Parameters.accept],
serializer,
};
const createOrUpdateOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}",
httpMethod: "PUT",
responses: {
200: {
bodyMapper: Mappers.Disk,
},
201: {
bodyMapper: Mappers.Disk,
},
202: {
bodyMapper: Mappers.Disk,
},
204: {
bodyMapper: Mappers.Disk,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
requestBody: Parameters.disk,
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.diskName,
],
headerParameters: [Parameters.accept, Parameters.contentType],
mediaType: "json",
serializer,
};
const updateOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}",
httpMethod: "PATCH",
responses: {
200: {
bodyMapper: Mappers.Disk,
},
201: {
bodyMapper: Mappers.Disk,
},
202: {
bodyMapper: Mappers.Disk,
},
204: {
bodyMapper: Mappers.Disk,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
requestBody: Parameters.disk1,
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.diskName,
],
headerParameters: [Parameters.accept, Parameters.contentType],
mediaType: "json",
serializer,
};
const deleteOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}",
httpMethod: "DELETE",
responses: {
200: {},
201: {},
202: {},
204: {},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.diskName,
],
headerParameters: [Parameters.accept],
serializer,
};
const grantAccessOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}/beginGetAccess",
httpMethod: "POST",
responses: {
200: {
bodyMapper: Mappers.AccessUri,
},
201: {
bodyMapper: Mappers.AccessUri,
},
202: {
bodyMapper: Mappers.AccessUri,
},
204: {
bodyMapper: Mappers.AccessUri,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
requestBody: Parameters.grantAccessData,
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.diskName,
],
headerParameters: [Parameters.accept, Parameters.contentType],
mediaType: "json",
serializer,
};
const revokeAccessOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}/endGetAccess",
httpMethod: "POST",
responses: {
200: {},
201: {},
202: {},
204: {},
default: {
bodyMapper: Mappers.CloudError,
},
},
queryParameters: [Parameters.apiVersion1],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.diskName,
],
headerParameters: [Parameters.accept],
serializer,
};
const listNextOperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.DiskList,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
urlParameters: [
Parameters.$host,
Parameters.nextLink,
Parameters.subscriptionId,
],
headerParameters: [Parameters.accept],
serializer,
};
const listByResourceGroupNextOperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.DiskList,
},
default: {
bodyMapper: Mappers.CloudError,
},
},
urlParameters: [
Parameters.$host,
Parameters.nextLink,
Parameters.subscriptionId,
Parameters.resourceGroupName,
],
headerParameters: [Parameters.accept],
serializer,
};
//# sourceMappingURL=disks.js.map