FunctionApp.DefinitionStages.WithDockerContainerImage Interface
public static interface FunctionApp.DefinitionStages.WithDockerContainerImage
A function app definition allowing docker image source to be specified.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract
With |
withBuiltInImage(FunctionRuntimeStack runtimeStack)
Specifies the docker container image to be a built in one. |
abstract
With |
withPrivateDockerHubImage(String imageAndTag)
Specifies the docker container image to be one from Docker Hub. |
abstract
With |
withPrivateRegistryImage(String imageAndTag, String serverUrl)
Specifies the docker container image to be one from a private registry. |
abstract
With |
withPublicDockerHubImage(String imageAndTag)
Specifies the docker container image to be one from Docker Hub. |
Method Details
withBuiltInImage
public abstract FunctionApp.DefinitionStages.WithCreate withBuiltInImage(FunctionRuntimeStack runtimeStack)
Specifies the docker container image to be a built in one.
Parameters:
Returns:
withPrivateDockerHubImage
public abstract FunctionApp.DefinitionStages.WithCredentials withPrivateDockerHubImage(String imageAndTag)
Specifies the docker container image to be one from Docker Hub.
Parameters:
Returns:
withPrivateRegistryImage
public abstract FunctionApp.DefinitionStages.WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl)
Specifies the docker container image to be one from a private registry.
Parameters:
Returns:
withPublicDockerHubImage
public abstract FunctionApp.DefinitionStages.WithCreate withPublicDockerHubImage(String imageAndTag)
Specifies the docker container image to be one from Docker Hub.
Parameters:
Returns:
Applies to
Azure SDK for Java