Interface GalleryImageVersion.UpdateStages.WithAvailableRegion
-
- All Known Subinterfaces:
GalleryImageVersion.Update
- Enclosing interface:
- GalleryImageVersion.UpdateStages
public static interface GalleryImageVersion.UpdateStages.WithAvailableRegionThe stage of image version update allowing to specify the regions in which the image version has to be available.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GalleryImageVersion.UpdatewithoutRegionAvailability(com.azure.core.management.Region region)Specifies that an image version should be removed from an existing region serving it.GalleryImageVersion.UpdatewithRegionAvailability(com.azure.core.management.Region region, int replicaCount)Specifies a region in which image version needs to be available.GalleryImageVersion.UpdatewithRegionAvailability(List<TargetRegion> regions)Specifies list of regions in which image version needs to be available.
-
-
-
Method Detail
-
withRegionAvailability
GalleryImageVersion.Update withRegionAvailability(com.azure.core.management.Region region, int replicaCount)
Specifies a region in which image version needs to be available.- Parameters:
region- the regionreplicaCount- the replication count- Returns:
- the next update stage
-
withRegionAvailability
GalleryImageVersion.Update withRegionAvailability(List<TargetRegion> regions)
Specifies list of regions in which image version needs to be available.- Parameters:
regions- the region list- Returns:
- the next update stage
-
withoutRegionAvailability
GalleryImageVersion.Update withoutRegionAvailability(com.azure.core.management.Region region)
Specifies that an image version should be removed from an existing region serving it.- Parameters:
region- the region- Returns:
- the next update stage
-
-