Show / Hide Table of Contents

Class CreateContainerConfigFileVolumeDetails

The configuration files to pass to the container using volume mounts.

Inheritance
object
CreateContainerVolumeDetails
CreateContainerConfigFileVolumeDetails
Inherited Members
CreateContainerVolumeDetails.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 CreateContainerConfigFileVolumeDetails : CreateContainerVolumeDetails

Properties

Configs

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

Contains 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