Show / Hide Table of Contents

Class OcirContainerJobEnvironmentConfigurationDetails

Environment configuration based on container image stored in OCI Container Registry.

Inheritance
object
JobEnvironmentConfigurationDetails
OcirContainerJobEnvironmentConfigurationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class OcirContainerJobEnvironmentConfigurationDetails : JobEnvironmentConfigurationDetails

Properties

Cmd

Declaration
[JsonProperty(PropertyName = "cmd")]
public List<string> Cmd { get; set; }
Property Value
Type Description
List<string>

The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.

Entrypoint

Declaration
[JsonProperty(PropertyName = "entrypoint")]
public List<string> Entrypoint { get; set; }
Property Value
Type Description
List<string>

The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.

Image

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

ImageDigest

Declaration
[JsonProperty(PropertyName = "imageDigest")]
public string ImageDigest { get; set; }
Property Value
Type Description
string

The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030

ImageSignatureId

Declaration
[JsonProperty(PropertyName = "imageSignatureId")]
public string ImageSignatureId { get; set; }
Property Value
Type Description
string

OCID of the container image signature

In this article
Back to top