File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -266,6 +266,7 @@ export namespace Scheduler {
266266 input_uri : string ;
267267 output_prefix : string ;
268268 runtime_environment_name : string ;
269+ runtime_environment_parameters ?: { [ key : string ] : any } ;
269270 idempotency_token ?: string ;
270271 job_definition_id ?: string ;
271272 parameters ?: { [ key : string ] : any } ;
Original file line number Diff line number Diff line change @@ -176,7 +176,8 @@ export function CreateJob(props: ICreateJobProps): JSX.Element {
176176 runtime_environment_name : props . model . environment ,
177177 compute_type : props . model . computeType ,
178178 idempotency_token : props . model . idempotencyToken ,
179- tags : props . model . tags
179+ tags : props . model . tags ,
180+ runtime_environment_parameters : props . model . runtimeEnvironmentParameters
180181 } ;
181182
182183 if ( props . model . parameters !== undefined ) {
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ export interface ICreateJobModel {
8282 inputFile : string ;
8383 outputPath : string ;
8484 environment : string ;
85+ runtimeEnvironmentParameters ?: { [ key : string ] : any } ;
8586 parameters ?: IJobParameter [ ] ;
8687 outputFormats ?: IOutputFormat [ ] ;
8788 computeType ?: string ;
You can’t perform that action at this time.
0 commit comments