共用方式為


Gallery Interface

Implements

public interface Gallery
extends HasInnerModel<GalleryInner>, Resource, GroupableResource<ComputeManager,GalleryInner>, HasResourceGroup, Refreshable<Gallery>, Updatable<Update>, HasManager<ComputeManager>

An immutable client-side representation of an Azure gallery.

Method Summary

Modifier and Type Method and Description
abstract String description()

Gets description for the gallery resource.

abstract GalleryImage getImage(String imageName)

Retrieves information about an image in the gallery.

abstract Mono<GalleryImage> getImageAsync(String imageName)

Retrieves information about an image in the gallery.

abstract PagedIterable<GalleryImage> listImages()

List images in the gallery.

abstract PagedFlux<GalleryImage> listImagesAsync()

List images in the gallery.

abstract String provisioningState()

Gets the provisioning state of the gallery resource.

abstract String uniqueName()

Gets the unique name of the gallery resource.

Method Details

public abstract String description()

Gets description for the gallery resource.

Returns:

description for the gallery resource.

public abstract GalleryImage getImage(String imageName)

Retrieves information about an image in the gallery.

Parameters:

imageName - The name of the image.

Returns:

the gallery image

public abstract Mono getImageAsync(String imageName)

Retrieves information about an image in the gallery.

Parameters:

imageName - The name of the image.

Returns:

the observable for the request

public abstract PagedIterable listImages()

List images in the gallery.

Returns:

the list of images in the gallery

public abstract PagedFlux listImagesAsync()

List images in the gallery.

Returns:

the observable for the request

public abstract String provisioningState()

Gets the provisioning state of the gallery resource.

Returns:

the provisioning state of the gallery resource.

public abstract String uniqueName()

Gets the unique name of the gallery resource.

Returns:

the unique name of the gallery resource.

Applies to