UNPKG

@azure/arm-compute

Version:
488 lines 20.1 kB
"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.VirtualMachineScaleSetVMRunCommandsImpl = 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 VirtualMachineScaleSetVMRunCommands operations. */ class VirtualMachineScaleSetVMRunCommandsImpl { client; /** * Initialize a new instance of the class VirtualMachineScaleSetVMRunCommands class. * @param client Reference to the service client */ constructor(client) { this.client = client; } /** * The operation to get all run commands of an instance in Virtual Machine Scaleset. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param options The options parameters. */ list(resourceGroupName, vmScaleSetName, instanceId, options) { const iter = this.listPagingAll(resourceGroupName, vmScaleSetName, instanceId, 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, vmScaleSetName, instanceId, options, settings); }, }; } async *listPagingPage(resourceGroupName, vmScaleSetName, instanceId, options, settings) { let result; let continuationToken = settings?.continuationToken; if (!continuationToken) { result = await this._list(resourceGroupName, vmScaleSetName, instanceId, options); let page = result.value || []; continuationToken = result.nextLink; (0, pagingHelper_js_1.setContinuationToken)(page, continuationToken); yield page; } while (continuationToken) { result = await this._listNext(resourceGroupName, vmScaleSetName, instanceId, continuationToken, options); continuationToken = result.nextLink; let page = result.value || []; (0, pagingHelper_js_1.setContinuationToken)(page, continuationToken); yield page; } } async *listPagingAll(resourceGroupName, vmScaleSetName, instanceId, options) { for await (const page of this.listPagingPage(resourceGroupName, vmScaleSetName, instanceId, options)) { yield* page; } } /** * The operation to get all run commands of an instance in Virtual Machine Scaleset. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param options The options parameters. */ _list(resourceGroupName, vmScaleSetName, instanceId, options) { return this.client.sendOperationRequest({ resourceGroupName, vmScaleSetName, instanceId, options }, listOperationSpec); } /** * The operation to get the VMSS VM run command. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param runCommandName The name of the VirtualMachineRunCommand * @param options The options parameters. */ get(resourceGroupName, vmScaleSetName, instanceId, runCommandName, options) { return this.client.sendOperationRequest({ resourceGroupName, vmScaleSetName, instanceId, runCommandName, options, }, getOperationSpec); } /** * The operation to create or update the VMSS VM run command. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param runCommandName The name of the VirtualMachineRunCommand * @param runCommand Parameters supplied to the Create Virtual Machine RunCommand operation. * @param options The options parameters. */ async beginCreateOrUpdate(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, 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, vmScaleSetName, instanceId, runCommandName, runCommand, 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; } /** * The operation to create or update the VMSS VM run command. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param runCommandName The name of the VirtualMachineRunCommand * @param runCommand Parameters supplied to the Create Virtual Machine RunCommand operation. * @param options The options parameters. */ async beginCreateOrUpdateAndWait(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, options) { const poller = await this.beginCreateOrUpdate(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, options); return poller.pollUntilDone(); } /** * The operation to update the VMSS VM run command. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param runCommandName The name of the VirtualMachineRunCommand * @param runCommand Resource create parameters. * @param options The options parameters. */ async beginUpdate(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, 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, vmScaleSetName, instanceId, runCommandName, runCommand, 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; } /** * The operation to update the VMSS VM run command. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param runCommandName The name of the VirtualMachineRunCommand * @param runCommand Resource create parameters. * @param options The options parameters. */ async beginUpdateAndWait(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, options) { const poller = await this.beginUpdate(resourceGroupName, vmScaleSetName, instanceId, runCommandName, runCommand, options); return poller.pollUntilDone(); } /** * The operation to delete the VMSS VM run command. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param runCommandName The name of the VirtualMachineRunCommand * @param options The options parameters. */ async beginDelete(resourceGroupName, vmScaleSetName, instanceId, runCommandName, 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, vmScaleSetName, instanceId, runCommandName, 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; } /** * The operation to delete the VMSS VM run command. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param runCommandName The name of the VirtualMachineRunCommand * @param options The options parameters. */ async beginDeleteAndWait(resourceGroupName, vmScaleSetName, instanceId, runCommandName, options) { const poller = await this.beginDelete(resourceGroupName, vmScaleSetName, instanceId, runCommandName, options); return poller.pollUntilDone(); } /** * ListNext * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param vmScaleSetName The name of the VirtualMachineScaleSet * @param instanceId The name of the VirtualMachineScaleSetVM * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ _listNext(resourceGroupName, vmScaleSetName, instanceId, nextLink, options) { return this.client.sendOperationRequest({ resourceGroupName, vmScaleSetName, instanceId, nextLink, options }, listNextOperationSpec); } } exports.VirtualMachineScaleSetVMRunCommandsImpl = VirtualMachineScaleSetVMRunCommandsImpl; // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const listOperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.VirtualMachineRunCommandsListResult, }, default: { bodyMapper: Mappers.CloudError, }, }, queryParameters: [Parameters.apiVersion, Parameters.expand], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.vmScaleSetName, Parameters.instanceId, ], headerParameters: [Parameters.accept], serializer, }; const getOperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.VirtualMachineRunCommand, }, default: { bodyMapper: Mappers.CloudError, }, }, queryParameters: [Parameters.apiVersion, Parameters.expand], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.runCommandName, Parameters.vmScaleSetName, Parameters.instanceId, ], headerParameters: [Parameters.accept], serializer, }; const createOrUpdateOperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}", httpMethod: "PUT", responses: { 200: { bodyMapper: Mappers.VirtualMachineRunCommand, }, 201: { bodyMapper: Mappers.VirtualMachineRunCommand, }, 202: { bodyMapper: Mappers.VirtualMachineRunCommand, }, 204: { bodyMapper: Mappers.VirtualMachineRunCommand, }, default: { bodyMapper: Mappers.CloudError, }, }, requestBody: Parameters.runCommand, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.runCommandName, Parameters.vmScaleSetName, Parameters.instanceId, ], headerParameters: [Parameters.accept, Parameters.contentType], mediaType: "json", serializer, }; const updateOperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}", httpMethod: "PATCH", responses: { 200: { bodyMapper: Mappers.VirtualMachineRunCommand, headersMapper: Mappers.VirtualMachineScaleSetVMRunCommandsUpdateHeaders, }, 201: { bodyMapper: Mappers.VirtualMachineRunCommand, headersMapper: Mappers.VirtualMachineScaleSetVMRunCommandsUpdateHeaders, }, 202: { bodyMapper: Mappers.VirtualMachineRunCommand, headersMapper: Mappers.VirtualMachineScaleSetVMRunCommandsUpdateHeaders, }, 204: { bodyMapper: Mappers.VirtualMachineRunCommand, headersMapper: Mappers.VirtualMachineScaleSetVMRunCommandsUpdateHeaders, }, default: { bodyMapper: Mappers.CloudError, }, }, requestBody: Parameters.runCommand1, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.runCommandName, Parameters.vmScaleSetName, Parameters.instanceId, ], headerParameters: [Parameters.accept, Parameters.contentType], mediaType: "json", serializer, }; const deleteOperationSpec = { path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}", httpMethod: "DELETE", responses: { 200: {}, 201: {}, 202: {}, 204: {}, default: { bodyMapper: Mappers.CloudError, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.runCommandName, Parameters.vmScaleSetName, Parameters.instanceId, ], headerParameters: [Parameters.accept], serializer, }; const listNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.VirtualMachineRunCommandsListResult, }, default: { bodyMapper: Mappers.CloudError, }, }, urlParameters: [ Parameters.$host, Parameters.nextLink, Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.vmScaleSetName, Parameters.instanceId, ], headerParameters: [Parameters.accept], serializer, }; //# sourceMappingURL=virtualMachineScaleSetVMRunCommands.js.map