Show / Hide Table of Contents

Class ContainerConfigFileVolume

The volume based on configuration files received during container creation.

Inheritance
object
ContainerVolume
ContainerConfigFileVolume
Inherited Members
ContainerVolume.Name
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
public class ContainerConfigFileVolume : ContainerVolume

Properties

Configs

Declaration
[JsonProperty(PropertyName = "configs")]
public List<ContainerConfigFile> Configs { get; set; }
Property Value
Type Description
List<ContainerConfigFile>

Contains string key value pairs which can be mounted as individual files inside the container. The value needs to be base64 encoded. It is decoded to plain text before the mount.

In this article
Back to top