Show / Hide Table of Contents

Class ContainerCapabilities

Linux Container capabilities to configure capabilities of container.

Inheritance
object
ContainerCapabilities
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
public class ContainerCapabilities

Properties

AddCapabilities

Declaration
[JsonProperty(PropertyName = "addCapabilities", ItemConverterType = typeof(ResponseEnumConverter))]
public List<ContainerCapabilityType> AddCapabilities { get; set; }
Property Value
Type Description
List<ContainerCapabilityType>

A list of additional configurable container capabilities.

DropCapabilities

Declaration
[JsonProperty(PropertyName = "dropCapabilities", ItemConverterType = typeof(ResponseEnumConverter))]
public List<ContainerCapabilityType> DropCapabilities { get; set; }
Property Value
Type Description
List<ContainerCapabilityType>

A list of container capabilities that can be dropped.

In this article
Back to top