Interface FunctionApp.DefinitionStages.WithDockerContainerImage

All Known Subinterfaces:
FunctionApp.Definition
Enclosing interface:
FunctionApp.DefinitionStages

public static interface FunctionApp.DefinitionStages.WithDockerContainerImage
A function app definition allowing docker image source to be specified.
  • Method Details

    • withBuiltInImage

      Specifies the docker container image to be a built in one.
      Parameters:
      runtimeStack - the runtime stack installed on the image
      Returns:
      the next stage of the definition
    • withPublicDockerHubImage

      FunctionApp.DefinitionStages.WithCreate withPublicDockerHubImage(String imageAndTag)
      Specifies the docker container image to be one from Docker Hub.
      Parameters:
      imageAndTag - image and optional tag (eg 'image:tag')
      Returns:
      the next stage of the definition
    • withPrivateDockerHubImage

      FunctionApp.DefinitionStages.WithCredentials withPrivateDockerHubImage(String imageAndTag)
      Specifies the docker container image to be one from Docker Hub.
      Parameters:
      imageAndTag - image and optional tag (eg 'image:tag')
      Returns:
      the next stage of the definition
    • withPrivateRegistryImage

      FunctionApp.DefinitionStages.WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl)
      Specifies the docker container image to be one from a private registry.
      Parameters:
      imageAndTag - image and optional tag (eg 'image:tag')
      serverUrl - the URL to the private registry server
      Returns:
      the next stage of the definition