[][src]Struct em_client::models::ConversionRequest

pub struct ConversionRequest {
    pub input_image_name: String,
    pub output_image_name: String,
    pub input_auth_config: Option<AuthConfig>,
    pub output_auth_config: Option<AuthConfig>,
    pub auth_config: Option<AuthConfig>,
    pub mem_size: Option<String>,
    pub threads: Option<i32>,
    pub debug: Option<bool>,
    pub entrypoint: Option<Vec<String>>,
    pub entrypoint_args: Option<Vec<String>>,
    pub encrypted_dirs: Option<Vec<String>>,
    pub manifest_options: Option<Value>,
    pub certificates: Option<Vec<CertificateConfig>>,
    pub ca_certificates: Option<Vec<CaCertificateConfig>>,
    pub signing_key: Option<SigningKeyConfig>,
    pub external_packages: Option<String>,
    pub app: Option<Value>,
    pub core_dump_pattern: Option<String>,
    pub log_file_path: Option<String>,
    pub java_mode: Option<String>,
    pub rw_dirs: Option<Vec<String>>,
    pub allow_cmdline_args: Option<bool>,
    pub manifest_env: Option<Vec<String>>,
}

Fields

input_image_name: String

Registry and image name for the input container, e.g. my-registry/sample-app:latest

output_image_name: String

Registry and image name for the output container, e.g. my-registry/sample-app-enclaveos:latest

input_auth_config: Option<AuthConfig>output_auth_config: Option<AuthConfig>auth_config: Option<AuthConfig>mem_size: Option<String>

Override the enclave size, e.g. 2048M. Suffixes K, M, and G are supported.

threads: Option<i32>

Number of enclave threads

debug: Option<bool>

Enables debug logging from EnclaveOS

entrypoint: Option<Vec<String>>

Override the entrypoint of the original container

entrypoint_args: Option<Vec<String>>

Override additional arguments to the container entrypoint

encrypted_dirs: Option<Vec<String>>

Filesystem directories to encrypt using enclave sealing key

manifest_options: Option<Value>

Add additional options to EnclaveOS manifest file

certificates: Option<Vec<CertificateConfig>>ca_certificates: Option<Vec<CaCertificateConfig>>signing_key: Option<SigningKeyConfig>external_packages: Option<String>

Fortanix external packages mount point in the toolserver container

app: Option<Value>core_dump_pattern: Option<String>

Template for generating debug core dump file paths

log_file_path: Option<String>

Path for EnclaveOS log file

java_mode: Option<String>

Type of the Java JVM used

rw_dirs: Option<Vec<String>>

List of read write directories

allow_cmdline_args: Option<bool>

Allow command line arguments to EnclaveOS application

manifest_env: Option<Vec<String>>

List of manifest environment variables

Implementations

impl ConversionRequest[src]

pub fn new(
    input_image_name: String,
    output_image_name: String
) -> ConversionRequest
[src]

Trait Implementations

impl Clone for ConversionRequest[src]

impl Debug for ConversionRequest[src]

impl<'de> Deserialize<'de> for ConversionRequest[src]

impl PartialEq<ConversionRequest> for ConversionRequest[src]

impl Serialize for ConversionRequest[src]

impl StructuralPartialEq for ConversionRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any