@azure/arm-compute
Version:
A generated SDK for ComputeManagementClient.
70 lines • 4.49 kB
TypeScript
import { VirtualMachineImages } from "../operationsInterfaces/index.js";
import { ComputeManagementClient } from "../computeManagementClient.js";
import { VirtualMachineImagesListByEdgeZoneOptionalParams, VirtualMachineImagesListByEdgeZoneResponse, VirtualMachineImagesListPublishersOptionalParams, VirtualMachineImagesListPublishersResponse, VirtualMachineImagesListOffersOptionalParams, VirtualMachineImagesListOffersResponse, VirtualMachineImagesListSkusOptionalParams, VirtualMachineImagesListSkusResponse, VirtualMachineImagesListOptionalParams, VirtualMachineImagesListResponse, VirtualMachineImagesGetOptionalParams, VirtualMachineImagesGetResponse, VirtualMachineImagesListWithPropertiesOptionalParams, VirtualMachineImagesListWithPropertiesResponse } from "../models/index.js";
/** Class containing VirtualMachineImages operations. */
export declare class VirtualMachineImagesImpl implements VirtualMachineImages {
private readonly client;
/**
* Initialize a new instance of the class VirtualMachineImages class.
* @param client Reference to the service client
*/
constructor(client: ComputeManagementClient);
/**
* Gets a list of all virtual machine image versions for the specified edge zone
* @param location The name of Azure region.
* @param edgeZone The name of the edge zone.
* @param options The options parameters.
*/
listByEdgeZone(location: string, edgeZone: string, options?: VirtualMachineImagesListByEdgeZoneOptionalParams): Promise<VirtualMachineImagesListByEdgeZoneResponse>;
/**
* Gets a list of virtual machine image publishers for the specified Azure location.
* @param location The name of Azure region.
* @param options The options parameters.
*/
listPublishers(location: string, options?: VirtualMachineImagesListPublishersOptionalParams): Promise<VirtualMachineImagesListPublishersResponse>;
/**
* Gets a list of virtual machine image offers for the specified location and publisher.
* @param location The name of Azure region.
* @param publisherName A valid image publisher.
* @param options The options parameters.
*/
listOffers(location: string, publisherName: string, options?: VirtualMachineImagesListOffersOptionalParams): Promise<VirtualMachineImagesListOffersResponse>;
/**
* Gets a list of virtual machine image SKUs for the specified location, publisher, and offer.
* @param location The name of Azure region.
* @param publisherName A valid image publisher.
* @param offer A valid image publisher offer.
* @param options The options parameters.
*/
listSkus(location: string, publisherName: string, offer: string, options?: VirtualMachineImagesListSkusOptionalParams): Promise<VirtualMachineImagesListSkusResponse>;
/**
* Gets a list of all virtual machine image versions for the specified location, publisher, offer, and
* SKU.
* @param location The name of Azure region.
* @param publisherName A valid image publisher.
* @param offer A valid image publisher offer.
* @param skus A valid image SKU.
* @param options The options parameters.
*/
list(location: string, publisherName: string, offer: string, skus: string, options?: VirtualMachineImagesListOptionalParams): Promise<VirtualMachineImagesListResponse>;
/**
* Gets a virtual machine image.
* @param location The name of Azure region.
* @param publisherName A valid image publisher.
* @param offer A valid image publisher offer.
* @param skus A valid image SKU.
* @param version A valid image SKU version.
* @param options The options parameters.
*/
get(location: string, publisherName: string, offer: string, skus: string, version: string, options?: VirtualMachineImagesGetOptionalParams): Promise<VirtualMachineImagesGetResponse>;
/**
* @param location The name of Azure region.
* @param publisherName A valid image publisher.
* @param offer A valid image publisher offer.
* @param skus A valid image SKU.
* @param expand The expand expression to apply on the operation.
* @param options The options parameters.
*/
listWithProperties(location: string, publisherName: string, offer: string, skus: string, expand: string, options?: VirtualMachineImagesListWithPropertiesOptionalParams): Promise<VirtualMachineImagesListWithPropertiesResponse>;
}
//# sourceMappingURL=virtualMachineImages.d.ts.map