Represents the context of variables and vectors for a job request.

interface JobEnvironment {
    endpoints?: ServiceEndpoint[];
    mask?: MaskHint[];
    options?: { [key: string]: JobOption };
    secureFiles?: SecureFile[];
    systemConnection?: ServiceEndpoint;
    variables?: { [key: string]: string };
}

Properties

endpoints?: ServiceEndpoint[]
mask?: MaskHint[]
options?: { [key: string]: JobOption }
secureFiles?: SecureFile[]
systemConnection?: ServiceEndpoint

Gets or sets the endpoint used for communicating back to the calling service.

variables?: { [key: string]: string }