File

src/app/workflow/shared/job.service.ts

Extends

HelixService

Index

Methods

Methods

Public get
get(job: Job)
Parameters :
Name Type Optional
job Job No
Returns : any
Public can
can()
Inherited from HelixService
Defined in HelixService:14
Returns : Observable<any>
Protected delete
delete(path: string)
Inherited from HelixService
Defined in HelixService:48
Parameters :
Name Type Optional
path string No
Returns : Observable<any>
Protected errorHandler
errorHandler(error: any)
Inherited from HelixService
Defined in HelixService:68
Parameters :
Name Type Optional
error any No
Returns : any
Protected getHeaders
getHeaders()
Inherited from HelixService
Defined in HelixService:61
Returns : any
Protected getHelixKey
getHelixKey()
Inherited from HelixService
Defined in HelixService:56
Returns : string
Protected post
post(path: string, data: any)
Inherited from HelixService
Defined in HelixService:32
Parameters :
Name Type Optional
path string No
data any No
Returns : Observable<any>
Protected put
put(path: string, data: string)
Inherited from HelixService
Defined in HelixService:40
Parameters :
Name Type Optional
path string No
data string No
Returns : Observable<any>
Protected request
request(path: string, helix?: string)
Inherited from HelixService
Defined in HelixService:20
Parameters :
Name Type Optional
path string No
helix string Yes
Returns : Observable<any>
import { Injectable } from '@angular/core';
import { map } from 'rxjs/operators';

import { Job } from './workflow.model';
import { HelixService } from '../../core/helix.service';

@Injectable()
export class JobService extends HelixService {
  public get(job: Job) {
    return this.request(
      `/clusters/${job.clusterName}/workflows/${job.workflowName}/jobs/${job.rawName}`
    ).pipe(
      map((data) => {
        job.config = data.JobConfig;
        job.context = data.JobContext;
      })
    );
  }
}

results matching ""

    No results matching ""