Show / Hide Table of Contents

Class ContainerVolume

A volume represents a directory with data that is accessible across multiple containers in a container instance.

Inheritance
object
ContainerVolume
ContainerConfigFileVolume
ContainerEmptyDirVolume
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerinstancesService.Models
Assembly: OCI.DotNetSDK.Containerinstances.dll
Syntax
[JsonConverter(typeof(ContainerVolumeModelConverter))]
public class ContainerVolume

Properties

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the volume. This must be unique within a single container instance.

Remarks

Required

In this article
Back to top