Home Manual Reference Source Repository
public class | source

JobRevision

Extends:

ResourceBaseCrudBase → JobRevision

Static Member Summary

Static Public Members
public static get
public static get
public static get

Member Summary

Public Members
public get
public get

Get layers

public get

Get a result proxy

Method Summary

Public Methods
public

build(callback: String, deleted: String): CancelablePromise

Build the revision

public

Cancels a running job

public

Clones a job revision to the user requesting it

public

Get job object

public

Get the job result

public

save(object: Object, layers: null, deleted: String): CancelablePromise<JobRevision>

Save updated job revision

Inherited Summary

From class ResourceBase
public static get

Returns if the resource is readonly

public static get abstract

Resource name

public static get

Resource path template

public static get

Returns the url key of the resource

protected static get

Protected read-only fields

public get

api: Mapcreator: *

Get api instance

public set

api(value: Mapcreator)

Set the api instance

public get

Auto generated Resource base url

public get

List fields that contain object data

public get

If the resource can be owned by an organisation

public get

url: string: *

Auto generated resource url

public

Clone the object

public

Refresh the resource by requesting it from the server again

public

reset(fields: Array<string> | string | null)

Resets model instance to it's original state

public

Clean up instance and commit all changes locally.

public

static(Target: string | Class, Constructor: Class?, seedData: Object<string, *>): SimpleResourceProxy

Static proxy generation

public

toObject(camelCaseKeys: boolean): {}

Transform instance to object

public

String representation of the resource, similar to Python's repr

protected

_guessType(name: string, value: *): *

Guess type based on property name

protected

Macro for resource listing

protected

Moves new fields to this._properties and turns them into a getter/setter

From class CrudBase
public

Delete item

public

Restore item

public

Save item.

protected

Build data for create operation

protected

Update existing item

Static Public Members

public static get resourceName: string source

Resource name

Override:

ResourceBase#resourceName

public static get resourcePath: string source

Resource path template

Override:

ResourceBase#resourcePath

public static get resourceUrlKey: string source

Returns the url key of the resource

Override:

ResourceBase#resourceUrlKey

Public Members

public get baseUrl: string source

Auto generated Resource base url

Override:

ResourceBase#baseUrl

public get layers: SimpleResourceProxy: * source

Get layers

Return:

SimpleResourceProxy

A proxy for accessing the resource

public get resultProxy: JobResult: * source

Get a result proxy

Return:

JobResult

Empty job result used for

Public Methods

public build(callback: String, deleted: String): CancelablePromise source

Build the revision

Params:

NameTypeAttributeDescription
callback String

Optional callback url for when the job completes

deleted String
  • optional
  • default: RequestParameters.deleted

Determines if the resource should be shown if deleted, requires special resource permissions. Possible values: only, none, all

Throw:

ApiError

If the api returns errors

public cancel(deleted: String): CancelablePromise source

Cancels a running job

Params:

NameTypeAttributeDescription
deleted String
  • optional
  • default: RequestParameters.deleted

Determines if the resource should be shown if deleted, requires special resource permissions. Possible values: only, none, all

Throw:

ApiError

If the api returns errors

public clone(title: String, deleted: String): CancelablePromise<JobRevision> source

Clones a job revision to the user requesting it

Override:

ResourceBase#clone

Params:

NameTypeAttributeDescription
title String
  • optional
  • default: null

The new title for the job

deleted String
  • optional
  • default: RequestParameters.deleted

Determines if the resource should be shown if deleted, requires special resource permissions. Possible values: only, none, all

Return:

CancelablePromise<JobRevision>

The new job revision, which will be linked to a new job

Throw:

ApiError

If the api returns errors

public object(deleted: String): CancelablePromise<Object> source

Get job object

Params:

NameTypeAttributeDescription
deleted String
  • optional
  • default: RequestParameters.deleted

Determines if the resource should be shown if deleted, requires special resource permissions. Possible values: only, none, all

Return:

CancelablePromise<Object>

The map object

Throw:

ApiError

If the api returns errors

public result(deleted: String): CancelablePromise<JobResult> source

Get the job result

Params:

NameTypeAttributeDescription
deleted String
  • optional
  • default: RequestParameters.deleted

Determines if the resource should be shown if deleted, requires special resource permissions. Possible values: only, none, all

Return:

CancelablePromise<JobResult>

The associated job result

Throw:

ApiError

If the api returns errors

public save(object: Object, layers: null, deleted: String): CancelablePromise<JobRevision> source

Save updated job revision

Override:

CrudBase#save

Params:

NameTypeAttributeDescription
object Object

Map object

layers null

Array containing all layers for this revision. If set to null the same layers will be used

deleted String
  • optional
  • default: RequestParameters.deleted

Determines if the resource should be shown if deleted, requires special resource permissions. Possible values: only, none, all

Return:

CancelablePromise<JobRevision>

New job revision

Throw:

TypeError

ApiError

If the api returns errors