Interface ContainerGroup.DefinitionStages.WithVolume
-
- All Superinterfaces:
ContainerGroup.DefinitionStages.WithFirstContainerInstance
- All Known Subinterfaces:
ContainerGroup.Definition
- Enclosing interface:
- ContainerGroup.DefinitionStages
public static interface ContainerGroup.DefinitionStages.WithVolume extends ContainerGroup.DefinitionStages.WithFirstContainerInstance
The stage of the container group definition allowing to specify a volume that can be mounted by a container instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainerGroup.DefinitionStages.VolumeDefinitionStages.VolumeDefinitionBlank<ContainerGroup.DefinitionStages.WithVolume>defineVolume(String name)Begins the definition of a volume that can be shared by the container instances in the container group.-
Methods inherited from interface com.azure.resourcemanager.containerinstance.models.ContainerGroup.DefinitionStages.WithFirstContainerInstance
defineContainerInstance, withContainerInstance, withContainerInstance
-
-
-
-
Method Detail
-
defineVolume
ContainerGroup.DefinitionStages.VolumeDefinitionStages.VolumeDefinitionBlank<ContainerGroup.DefinitionStages.WithVolume> defineVolume(String name)
Begins the definition of a volume that can be shared by the container instances in the container group.The definition must be completed with a call to
Attachable.InDefinition.attach()- Parameters:
name- the name of the volume- Returns:
- the next stage of the definition
-
-