com.azure.resourcemanager.compute.fluent.VirtualMachineExtensionImagesClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.fluent;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import com.azure.resourcemanager.compute.fluent.models.VirtualMachineExtensionImageInner;
import java.util.List;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in VirtualMachineExtensionImagesClient.
*/
public interface VirtualMachineExtensionImagesClient {
/**
* Gets a virtual machine extension image.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @param version The version parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a virtual machine extension image along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> getWithResponseAsync(String location, String publisherName,
String type, String version);
/**
* Gets a virtual machine extension image.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @param version The version parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a virtual machine extension image on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono getAsync(String location, String publisherName, String type,
String version);
/**
* Gets a virtual machine extension image.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @param version The version parameter.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a virtual machine extension image along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getWithResponse(String location, String publisherName, String type,
String version, Context context);
/**
* Gets a virtual machine extension image.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @param version The version parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a virtual machine extension image.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
VirtualMachineExtensionImageInner get(String location, String publisherName, String type, String version);
/**
* Gets a list of virtual machine extension image types.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image types along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> listTypesWithResponseAsync(String location,
String publisherName);
/**
* Gets a list of virtual machine extension image types.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image types on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> listTypesAsync(String location, String publisherName);
/**
* Gets a list of virtual machine extension image types.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image types along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response> listTypesWithResponse(String location, String publisherName,
Context context);
/**
* Gets a list of virtual machine extension image types.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image types.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
List listTypes(String location, String publisherName);
/**
* Gets a list of virtual machine extension image versions.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @param filter The filter to apply on the operation.
* @param top The top parameter.
* @param orderby The orderby parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image versions along with {@link Response} on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> listVersionsWithResponseAsync(String location,
String publisherName, String type, String filter, Integer top, String orderby);
/**
* Gets a list of virtual machine extension image versions.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image versions on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> listVersionsAsync(String location, String publisherName, String type);
/**
* Gets a list of virtual machine extension image versions.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @param filter The filter to apply on the operation.
* @param top The top parameter.
* @param orderby The orderby parameter.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image versions along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response> listVersionsWithResponse(String location, String publisherName,
String type, String filter, Integer top, String orderby, Context context);
/**
* Gets a list of virtual machine extension image versions.
*
* @param location The name of a supported Azure region.
* @param publisherName The publisherName parameter.
* @param type The type parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of virtual machine extension image versions.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
List listVersions(String location, String publisherName, String type);
}