java.lang.Object
com.azure.runtime.host.resources.ResourceType
An expandable enum-like type for specifying the type of a resource. This is used to determine how to process the
resource when being processed by tools such as azd.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ResourceType
An Azure Bicep file - consider usingAzureBicepResource
.static final ResourceType
A container resource - consider usingContainer
.static final ResourceType
A Dockerfile resource - consider usingDockerFile
.static final ResourceType
An executable resource - consider usingExecutable
.static final ResourceType
A value resource - consider usingValue
. -
Method Summary
Modifier and TypeMethodDescriptionstatic ResourceType
fromString
(String value) Creates a new ResourceType with the given value as the type.toString()
-
Field Details
-
AZURE_BICEP
An Azure Bicep file - consider usingAzureBicepResource
. -
CONTAINER
A container resource - consider usingContainer
. -
DOCKER_FILE
A Dockerfile resource - consider usingDockerFile
. -
EXECUTABLE
An executable resource - consider usingExecutable
. -
VALUE
A value resource - consider usingValue
.
-
-
Method Details