Show / Hide Table of Contents

Class SecurityContext

Security context for container runtime configuration.
See also docs.

Inheritance
object
SecurityContext
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BatchService.Models
Assembly: OCI.DotNetSDK.Batch.dll
Syntax
public class SecurityContext

Properties

FsGroup

Declaration
[JsonProperty(PropertyName = "fsGroup")]
public int? FsGroup { get; set; }
Property Value
Type Description
int?

A special supplemental group ID that applies to all containers in a pod.

RunAsGroup

Declaration
[JsonProperty(PropertyName = "runAsGroup")]
public int? RunAsGroup { get; set; }
Property Value
Type Description
int?

Group ID for running processes inside the container.

RunAsUser

Declaration
[JsonProperty(PropertyName = "runAsUser")]
public int? RunAsUser { get; set; }
Property Value
Type Description
int?

User ID for running processes inside the container.

In this article
Back to top