Class ImageReference

java.lang.Object
com.azure.resourcemanager.batch.models.ImageReference

public final class ImageReference extends Object
A reference to an Azure Virtual Machines Marketplace image or the Azure Image resource of a custom Virtual Machine. To get the list of all imageReferences verified by Azure Batch, see the 'List supported node agent SKUs' operation.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance of ImageReference class.
  • Method Summary

    Modifier and Type
    Method
    Description
    id()
    Get the id property: The ARM resource identifier of the Shared Image Gallery Image.
    Get the offer property: The offer type of the Azure Virtual Machines Marketplace image.
    Get the publisher property: The publisher of the Azure Virtual Machines Marketplace image.
    sku()
    Get the sku property: The SKU of the Azure Virtual Machines Marketplace image.
    void
    Validates the instance.
    Get the version property: The version of the Azure Virtual Machines Marketplace image.
    Set the id property: The ARM resource identifier of the Shared Image Gallery Image.
    Set the offer property: The offer type of the Azure Virtual Machines Marketplace image.
    withPublisher(String publisher)
    Set the publisher property: The publisher of the Azure Virtual Machines Marketplace image.
    Set the sku property: The SKU of the Azure Virtual Machines Marketplace image.
    Set the version property: The version of the Azure Virtual Machines Marketplace image.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ImageReference

      public ImageReference()
      Creates an instance of ImageReference class.
  • Method Details

    • publisher

      public String publisher()
      Get the publisher property: The publisher of the Azure Virtual Machines Marketplace image.

      For example, Canonical or MicrosoftWindowsServer.

      Returns:
      the publisher value.
    • withPublisher

      public ImageReference withPublisher(String publisher)
      Set the publisher property: The publisher of the Azure Virtual Machines Marketplace image.

      For example, Canonical or MicrosoftWindowsServer.

      Parameters:
      publisher - the publisher value to set.
      Returns:
      the ImageReference object itself.
    • offer

      public String offer()
      Get the offer property: The offer type of the Azure Virtual Machines Marketplace image.

      For example, UbuntuServer or WindowsServer.

      Returns:
      the offer value.
    • withOffer

      public ImageReference withOffer(String offer)
      Set the offer property: The offer type of the Azure Virtual Machines Marketplace image.

      For example, UbuntuServer or WindowsServer.

      Parameters:
      offer - the offer value to set.
      Returns:
      the ImageReference object itself.
    • sku

      public String sku()
      Get the sku property: The SKU of the Azure Virtual Machines Marketplace image.

      For example, 18.04-LTS or 2022-datacenter.

      Returns:
      the sku value.
    • withSku

      public ImageReference withSku(String sku)
      Set the sku property: The SKU of the Azure Virtual Machines Marketplace image.

      For example, 18.04-LTS or 2022-datacenter.

      Parameters:
      sku - the sku value to set.
      Returns:
      the ImageReference object itself.
    • version

      public String version()
      Get the version property: The version of the Azure Virtual Machines Marketplace image.

      A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'.

      Returns:
      the version value.
    • withVersion

      public ImageReference withVersion(String version)
      Set the version property: The version of the Azure Virtual Machines Marketplace image.

      A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'.

      Parameters:
      version - the version value to set.
      Returns:
      the ImageReference object itself.
    • id

      public String id()
      Get the id property: The ARM resource identifier of the Shared Image Gallery Image. Compute Nodes in the Pool will be created using this Image Id. This is of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId}.

      This property is mutually exclusive with other properties. The Shared Image Gallery image must have replicas in the same region as the Azure Batch account. For information about the firewall settings for the Batch node agent to communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration.

      Returns:
      the id value.
    • withId

      public ImageReference withId(String id)
      Set the id property: The ARM resource identifier of the Shared Image Gallery Image. Compute Nodes in the Pool will be created using this Image Id. This is of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId}.

      This property is mutually exclusive with other properties. The Shared Image Gallery image must have replicas in the same region as the Azure Batch account. For information about the firewall settings for the Batch node agent to communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration.

      Parameters:
      id - the id value to set.
      Returns:
      the ImageReference object itself.
    • validate

      public void validate()
      Validates the instance.
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.