@stinkycomputing/sesame-api-client 1.4.1-beta.3 → 1.4.1-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.mjs +629 -926
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.cjs +629 -926
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +629 -926
- package/dist/index.mjs.map +2 -2
- package/dist/jobs-api.d.ts +4 -5
- package/dist/jobs-api.d.ts.map +1 -1
- package/dist/proto/api.d.ts +512 -890
- package/dist/proto/api.js +2051 -2813
- package/dist/sesame-api-client.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/proto/api.d.ts
CHANGED
|
@@ -2697,8 +2697,7 @@ export namespace sesame {
|
|
|
2697
2697
|
EVENT_TOPIC_ERROR = 1,
|
|
2698
2698
|
EVENT_TOPIC_TRANSPORT = 2,
|
|
2699
2699
|
EVENT_TOPIC_CALLBACK = 3,
|
|
2700
|
-
|
|
2701
|
-
EVENT_TOPIC_CLIP_IMPORT = 5,
|
|
2700
|
+
EVENT_TOPIC_JOB = 4,
|
|
2702
2701
|
EVENT_TOPIC_RECORDER = 6
|
|
2703
2702
|
}
|
|
2704
2703
|
}
|
|
@@ -8946,11 +8945,8 @@ export namespace sesame {
|
|
|
8946
8945
|
/** Event callbackEvent */
|
|
8947
8946
|
callbackEvent?: (sesame.v1.common.ICallback|null);
|
|
8948
8947
|
|
|
8949
|
-
/** Event
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
/** Event clipImportEvent */
|
|
8953
|
-
clipImportEvent?: (sesame.v1.jobs.IJobEvent|null);
|
|
8948
|
+
/** Event jobEvent */
|
|
8949
|
+
jobEvent?: (sesame.v1.jobs.IJob|null);
|
|
8954
8950
|
|
|
8955
8951
|
/** Event recorderEvent */
|
|
8956
8952
|
recorderEvent?: (sesame.v1.recorder.IRecorderEvent|null);
|
|
@@ -8974,17 +8970,14 @@ export namespace sesame {
|
|
|
8974
8970
|
/** Event callbackEvent. */
|
|
8975
8971
|
public callbackEvent?: (sesame.v1.common.ICallback|null);
|
|
8976
8972
|
|
|
8977
|
-
/** Event
|
|
8978
|
-
public
|
|
8979
|
-
|
|
8980
|
-
/** Event clipImportEvent. */
|
|
8981
|
-
public clipImportEvent?: (sesame.v1.jobs.IJobEvent|null);
|
|
8973
|
+
/** Event jobEvent. */
|
|
8974
|
+
public jobEvent?: (sesame.v1.jobs.IJob|null);
|
|
8982
8975
|
|
|
8983
8976
|
/** Event recorderEvent. */
|
|
8984
8977
|
public recorderEvent?: (sesame.v1.recorder.IRecorderEvent|null);
|
|
8985
8978
|
|
|
8986
8979
|
/** Event event. */
|
|
8987
|
-
public event?: ("errorEvent"|"transportEvent"|"callbackEvent"|"
|
|
8980
|
+
public event?: ("errorEvent"|"transportEvent"|"callbackEvent"|"jobEvent"|"recorderEvent");
|
|
8988
8981
|
|
|
8989
8982
|
/**
|
|
8990
8983
|
* Creates a new Event instance using the specified properties.
|
|
@@ -11671,6 +11664,13 @@ export namespace sesame {
|
|
|
11671
11664
|
/** Namespace jobs. */
|
|
11672
11665
|
namespace jobs {
|
|
11673
11666
|
|
|
11667
|
+
/** JobType enum. */
|
|
11668
|
+
enum JobType {
|
|
11669
|
+
JOB_TYPE_UNSPECIFIED = 0,
|
|
11670
|
+
JOB_TYPE_EXPORT = 1,
|
|
11671
|
+
JOB_TYPE_IMPORT = 2
|
|
11672
|
+
}
|
|
11673
|
+
|
|
11674
11674
|
/** JobStatus enum. */
|
|
11675
11675
|
enum JobStatus {
|
|
11676
11676
|
JOB_STATUS_UNSPECIFIED = 0,
|
|
@@ -11810,357 +11810,633 @@ export namespace sesame {
|
|
|
11810
11810
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11811
11811
|
}
|
|
11812
11812
|
|
|
11813
|
-
/** Properties of a
|
|
11814
|
-
interface
|
|
11813
|
+
/** Properties of a Job. */
|
|
11814
|
+
interface IJob {
|
|
11815
11815
|
|
|
11816
|
-
/**
|
|
11817
|
-
|
|
11816
|
+
/** Job id */
|
|
11817
|
+
id?: (number|null);
|
|
11818
|
+
|
|
11819
|
+
/** Job type */
|
|
11820
|
+
type?: (sesame.v1.jobs.JobType|null);
|
|
11821
|
+
|
|
11822
|
+
/** Job status */
|
|
11823
|
+
status?: (sesame.v1.jobs.JobStatus|null);
|
|
11818
11824
|
|
|
11819
|
-
/**
|
|
11825
|
+
/** Job name */
|
|
11820
11826
|
name?: (string|null);
|
|
11821
11827
|
|
|
11822
|
-
/**
|
|
11828
|
+
/** Job description */
|
|
11823
11829
|
description?: (string|null);
|
|
11824
11830
|
|
|
11825
|
-
/**
|
|
11826
|
-
status?: (sesame.v1.jobs.JobStatus|null);
|
|
11827
|
-
|
|
11828
|
-
/** JobStatusResponse error */
|
|
11831
|
+
/** Job error */
|
|
11829
11832
|
error?: (string|null);
|
|
11830
11833
|
|
|
11831
|
-
/**
|
|
11832
|
-
progress?: (number|null);
|
|
11834
|
+
/** Job progress */
|
|
11835
|
+
progress?: (number|Long|null);
|
|
11836
|
+
|
|
11837
|
+
/** Job total */
|
|
11838
|
+
total?: (number|Long|null);
|
|
11833
11839
|
|
|
11834
|
-
/**
|
|
11835
|
-
|
|
11840
|
+
/** Job timingInfo */
|
|
11841
|
+
timingInfo?: (sesame.v1.jobs.ITimingInfo|null);
|
|
11836
11842
|
}
|
|
11837
11843
|
|
|
11838
|
-
/** Represents a
|
|
11839
|
-
class
|
|
11844
|
+
/** Represents a Job. */
|
|
11845
|
+
class Job implements IJob {
|
|
11840
11846
|
|
|
11841
11847
|
/**
|
|
11842
|
-
* Constructs a new
|
|
11848
|
+
* Constructs a new Job.
|
|
11843
11849
|
* @param [properties] Properties to set
|
|
11844
11850
|
*/
|
|
11845
|
-
constructor(properties?: sesame.v1.jobs.
|
|
11851
|
+
constructor(properties?: sesame.v1.jobs.IJob);
|
|
11846
11852
|
|
|
11847
|
-
/**
|
|
11848
|
-
public
|
|
11853
|
+
/** Job id. */
|
|
11854
|
+
public id: number;
|
|
11855
|
+
|
|
11856
|
+
/** Job type. */
|
|
11857
|
+
public type: sesame.v1.jobs.JobType;
|
|
11849
11858
|
|
|
11850
|
-
/**
|
|
11859
|
+
/** Job status. */
|
|
11860
|
+
public status: sesame.v1.jobs.JobStatus;
|
|
11861
|
+
|
|
11862
|
+
/** Job name. */
|
|
11851
11863
|
public name: string;
|
|
11852
11864
|
|
|
11853
|
-
/**
|
|
11865
|
+
/** Job description. */
|
|
11854
11866
|
public description: string;
|
|
11855
11867
|
|
|
11856
|
-
/**
|
|
11857
|
-
public status: sesame.v1.jobs.JobStatus;
|
|
11858
|
-
|
|
11859
|
-
/** JobStatusResponse error. */
|
|
11868
|
+
/** Job error. */
|
|
11860
11869
|
public error?: (string|null);
|
|
11861
11870
|
|
|
11862
|
-
/**
|
|
11863
|
-
public progress: number;
|
|
11871
|
+
/** Job progress. */
|
|
11872
|
+
public progress: (number|Long);
|
|
11873
|
+
|
|
11874
|
+
/** Job total. */
|
|
11875
|
+
public total: (number|Long);
|
|
11876
|
+
|
|
11877
|
+
/** Job timingInfo. */
|
|
11878
|
+
public timingInfo?: (sesame.v1.jobs.ITimingInfo|null);
|
|
11879
|
+
|
|
11880
|
+
/**
|
|
11881
|
+
* Creates a new Job instance using the specified properties.
|
|
11882
|
+
* @param [properties] Properties to set
|
|
11883
|
+
* @returns Job instance
|
|
11884
|
+
*/
|
|
11885
|
+
public static create(properties?: sesame.v1.jobs.IJob): sesame.v1.jobs.Job;
|
|
11886
|
+
|
|
11887
|
+
/**
|
|
11888
|
+
* Encodes the specified Job message. Does not implicitly {@link sesame.v1.jobs.Job.verify|verify} messages.
|
|
11889
|
+
* @param message Job message or plain object to encode
|
|
11890
|
+
* @param [writer] Writer to encode to
|
|
11891
|
+
* @returns Writer
|
|
11892
|
+
*/
|
|
11893
|
+
public static encode(message: sesame.v1.jobs.IJob, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11894
|
+
|
|
11895
|
+
/**
|
|
11896
|
+
* Encodes the specified Job message, length delimited. Does not implicitly {@link sesame.v1.jobs.Job.verify|verify} messages.
|
|
11897
|
+
* @param message Job message or plain object to encode
|
|
11898
|
+
* @param [writer] Writer to encode to
|
|
11899
|
+
* @returns Writer
|
|
11900
|
+
*/
|
|
11901
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJob, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11902
|
+
|
|
11903
|
+
/**
|
|
11904
|
+
* Decodes a Job message from the specified reader or buffer.
|
|
11905
|
+
* @param reader Reader or buffer to decode from
|
|
11906
|
+
* @param [length] Message length if known beforehand
|
|
11907
|
+
* @returns Job
|
|
11908
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11909
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11910
|
+
*/
|
|
11911
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.Job;
|
|
11912
|
+
|
|
11913
|
+
/**
|
|
11914
|
+
* Decodes a Job message from the specified reader or buffer, length delimited.
|
|
11915
|
+
* @param reader Reader or buffer to decode from
|
|
11916
|
+
* @returns Job
|
|
11917
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11918
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11919
|
+
*/
|
|
11920
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.Job;
|
|
11921
|
+
|
|
11922
|
+
/**
|
|
11923
|
+
* Verifies a Job message.
|
|
11924
|
+
* @param message Plain object to verify
|
|
11925
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11926
|
+
*/
|
|
11927
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11928
|
+
|
|
11929
|
+
/**
|
|
11930
|
+
* Creates a Job message from a plain object. Also converts values to their respective internal types.
|
|
11931
|
+
* @param object Plain object
|
|
11932
|
+
* @returns Job
|
|
11933
|
+
*/
|
|
11934
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.Job;
|
|
11935
|
+
|
|
11936
|
+
/**
|
|
11937
|
+
* Creates a plain object from a Job message. Also converts values to other types if specified.
|
|
11938
|
+
* @param message Job
|
|
11939
|
+
* @param [options] Conversion options
|
|
11940
|
+
* @returns Plain object
|
|
11941
|
+
*/
|
|
11942
|
+
public static toObject(message: sesame.v1.jobs.Job, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11943
|
+
|
|
11944
|
+
/**
|
|
11945
|
+
* Converts this Job to JSON.
|
|
11946
|
+
* @returns JSON object
|
|
11947
|
+
*/
|
|
11948
|
+
public toJSON(): { [k: string]: any };
|
|
11949
|
+
|
|
11950
|
+
/**
|
|
11951
|
+
* Gets the default type url for Job
|
|
11952
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11953
|
+
* @returns The default type url
|
|
11954
|
+
*/
|
|
11955
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11956
|
+
}
|
|
11957
|
+
|
|
11958
|
+
/** Properties of a JobList. */
|
|
11959
|
+
interface IJobList {
|
|
11960
|
+
|
|
11961
|
+
/** JobList jobs */
|
|
11962
|
+
jobs?: (sesame.v1.jobs.IJob[]|null);
|
|
11963
|
+
}
|
|
11964
|
+
|
|
11965
|
+
/** Represents a JobList. */
|
|
11966
|
+
class JobList implements IJobList {
|
|
11967
|
+
|
|
11968
|
+
/**
|
|
11969
|
+
* Constructs a new JobList.
|
|
11970
|
+
* @param [properties] Properties to set
|
|
11971
|
+
*/
|
|
11972
|
+
constructor(properties?: sesame.v1.jobs.IJobList);
|
|
11864
11973
|
|
|
11865
|
-
/**
|
|
11866
|
-
public
|
|
11974
|
+
/** JobList jobs. */
|
|
11975
|
+
public jobs: sesame.v1.jobs.IJob[];
|
|
11867
11976
|
|
|
11868
11977
|
/**
|
|
11869
|
-
* Creates a new
|
|
11978
|
+
* Creates a new JobList instance using the specified properties.
|
|
11870
11979
|
* @param [properties] Properties to set
|
|
11871
|
-
* @returns
|
|
11980
|
+
* @returns JobList instance
|
|
11872
11981
|
*/
|
|
11873
|
-
public static create(properties?: sesame.v1.jobs.
|
|
11982
|
+
public static create(properties?: sesame.v1.jobs.IJobList): sesame.v1.jobs.JobList;
|
|
11874
11983
|
|
|
11875
11984
|
/**
|
|
11876
|
-
* Encodes the specified
|
|
11877
|
-
* @param message
|
|
11985
|
+
* Encodes the specified JobList message. Does not implicitly {@link sesame.v1.jobs.JobList.verify|verify} messages.
|
|
11986
|
+
* @param message JobList message or plain object to encode
|
|
11878
11987
|
* @param [writer] Writer to encode to
|
|
11879
11988
|
* @returns Writer
|
|
11880
11989
|
*/
|
|
11881
|
-
public static encode(message: sesame.v1.jobs.
|
|
11990
|
+
public static encode(message: sesame.v1.jobs.IJobList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11882
11991
|
|
|
11883
11992
|
/**
|
|
11884
|
-
* Encodes the specified
|
|
11885
|
-
* @param message
|
|
11993
|
+
* Encodes the specified JobList message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobList.verify|verify} messages.
|
|
11994
|
+
* @param message JobList message or plain object to encode
|
|
11886
11995
|
* @param [writer] Writer to encode to
|
|
11887
11996
|
* @returns Writer
|
|
11888
11997
|
*/
|
|
11889
|
-
public static encodeDelimited(message: sesame.v1.jobs.
|
|
11998
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11890
11999
|
|
|
11891
12000
|
/**
|
|
11892
|
-
* Decodes a
|
|
12001
|
+
* Decodes a JobList message from the specified reader or buffer.
|
|
11893
12002
|
* @param reader Reader or buffer to decode from
|
|
11894
12003
|
* @param [length] Message length if known beforehand
|
|
11895
|
-
* @returns
|
|
12004
|
+
* @returns JobList
|
|
11896
12005
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11897
12006
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11898
12007
|
*/
|
|
11899
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.
|
|
12008
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobList;
|
|
11900
12009
|
|
|
11901
12010
|
/**
|
|
11902
|
-
* Decodes a
|
|
12011
|
+
* Decodes a JobList message from the specified reader or buffer, length delimited.
|
|
11903
12012
|
* @param reader Reader or buffer to decode from
|
|
11904
|
-
* @returns
|
|
12013
|
+
* @returns JobList
|
|
11905
12014
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11906
12015
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11907
12016
|
*/
|
|
11908
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.
|
|
12017
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobList;
|
|
11909
12018
|
|
|
11910
12019
|
/**
|
|
11911
|
-
* Verifies a
|
|
12020
|
+
* Verifies a JobList message.
|
|
11912
12021
|
* @param message Plain object to verify
|
|
11913
12022
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
11914
12023
|
*/
|
|
11915
12024
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11916
12025
|
|
|
11917
12026
|
/**
|
|
11918
|
-
* Creates a
|
|
12027
|
+
* Creates a JobList message from a plain object. Also converts values to their respective internal types.
|
|
11919
12028
|
* @param object Plain object
|
|
11920
|
-
* @returns
|
|
12029
|
+
* @returns JobList
|
|
11921
12030
|
*/
|
|
11922
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.
|
|
12031
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobList;
|
|
11923
12032
|
|
|
11924
12033
|
/**
|
|
11925
|
-
* Creates a plain object from a
|
|
11926
|
-
* @param message
|
|
12034
|
+
* Creates a plain object from a JobList message. Also converts values to other types if specified.
|
|
12035
|
+
* @param message JobList
|
|
11927
12036
|
* @param [options] Conversion options
|
|
11928
12037
|
* @returns Plain object
|
|
11929
12038
|
*/
|
|
11930
|
-
public static toObject(message: sesame.v1.jobs.
|
|
12039
|
+
public static toObject(message: sesame.v1.jobs.JobList, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11931
12040
|
|
|
11932
12041
|
/**
|
|
11933
|
-
* Converts this
|
|
12042
|
+
* Converts this JobList to JSON.
|
|
11934
12043
|
* @returns JSON object
|
|
11935
12044
|
*/
|
|
11936
12045
|
public toJSON(): { [k: string]: any };
|
|
11937
12046
|
|
|
11938
12047
|
/**
|
|
11939
|
-
* Gets the default type url for
|
|
12048
|
+
* Gets the default type url for JobList
|
|
11940
12049
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11941
12050
|
* @returns The default type url
|
|
11942
12051
|
*/
|
|
11943
12052
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11944
12053
|
}
|
|
11945
12054
|
|
|
11946
|
-
/** Properties of a
|
|
11947
|
-
interface
|
|
12055
|
+
/** Properties of a JobStartRequest. */
|
|
12056
|
+
interface IJobStartRequest {
|
|
12057
|
+
|
|
12058
|
+
/** JobStartRequest exportRequest */
|
|
12059
|
+
exportRequest?: (sesame.v1.jobs.IExportStartRequest|null);
|
|
11948
12060
|
|
|
11949
|
-
/**
|
|
11950
|
-
|
|
12061
|
+
/** JobStartRequest importRequest */
|
|
12062
|
+
importRequest?: (sesame.v1.jobs.IImportStartRequest|null);
|
|
11951
12063
|
}
|
|
11952
12064
|
|
|
11953
|
-
/** Represents a
|
|
11954
|
-
class
|
|
12065
|
+
/** Represents a JobStartRequest. */
|
|
12066
|
+
class JobStartRequest implements IJobStartRequest {
|
|
11955
12067
|
|
|
11956
12068
|
/**
|
|
11957
|
-
* Constructs a new
|
|
12069
|
+
* Constructs a new JobStartRequest.
|
|
11958
12070
|
* @param [properties] Properties to set
|
|
11959
12071
|
*/
|
|
11960
|
-
constructor(properties?: sesame.v1.jobs.
|
|
12072
|
+
constructor(properties?: sesame.v1.jobs.IJobStartRequest);
|
|
12073
|
+
|
|
12074
|
+
/** JobStartRequest exportRequest. */
|
|
12075
|
+
public exportRequest?: (sesame.v1.jobs.IExportStartRequest|null);
|
|
12076
|
+
|
|
12077
|
+
/** JobStartRequest importRequest. */
|
|
12078
|
+
public importRequest?: (sesame.v1.jobs.IImportStartRequest|null);
|
|
11961
12079
|
|
|
11962
|
-
/**
|
|
11963
|
-
public
|
|
12080
|
+
/** JobStartRequest config. */
|
|
12081
|
+
public config?: ("exportRequest"|"importRequest");
|
|
11964
12082
|
|
|
11965
12083
|
/**
|
|
11966
|
-
* Creates a new
|
|
12084
|
+
* Creates a new JobStartRequest instance using the specified properties.
|
|
11967
12085
|
* @param [properties] Properties to set
|
|
11968
|
-
* @returns
|
|
12086
|
+
* @returns JobStartRequest instance
|
|
11969
12087
|
*/
|
|
11970
|
-
public static create(properties?: sesame.v1.jobs.
|
|
12088
|
+
public static create(properties?: sesame.v1.jobs.IJobStartRequest): sesame.v1.jobs.JobStartRequest;
|
|
11971
12089
|
|
|
11972
12090
|
/**
|
|
11973
|
-
* Encodes the specified
|
|
11974
|
-
* @param message
|
|
12091
|
+
* Encodes the specified JobStartRequest message. Does not implicitly {@link sesame.v1.jobs.JobStartRequest.verify|verify} messages.
|
|
12092
|
+
* @param message JobStartRequest message or plain object to encode
|
|
11975
12093
|
* @param [writer] Writer to encode to
|
|
11976
12094
|
* @returns Writer
|
|
11977
12095
|
*/
|
|
11978
|
-
public static encode(message: sesame.v1.jobs.
|
|
12096
|
+
public static encode(message: sesame.v1.jobs.IJobStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11979
12097
|
|
|
11980
12098
|
/**
|
|
11981
|
-
* Encodes the specified
|
|
11982
|
-
* @param message
|
|
12099
|
+
* Encodes the specified JobStartRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobStartRequest.verify|verify} messages.
|
|
12100
|
+
* @param message JobStartRequest message or plain object to encode
|
|
11983
12101
|
* @param [writer] Writer to encode to
|
|
11984
12102
|
* @returns Writer
|
|
11985
12103
|
*/
|
|
11986
|
-
public static encodeDelimited(message: sesame.v1.jobs.
|
|
12104
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11987
12105
|
|
|
11988
12106
|
/**
|
|
11989
|
-
* Decodes a
|
|
12107
|
+
* Decodes a JobStartRequest message from the specified reader or buffer.
|
|
11990
12108
|
* @param reader Reader or buffer to decode from
|
|
11991
12109
|
* @param [length] Message length if known beforehand
|
|
11992
|
-
* @returns
|
|
12110
|
+
* @returns JobStartRequest
|
|
11993
12111
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11994
12112
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11995
12113
|
*/
|
|
11996
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.
|
|
12114
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobStartRequest;
|
|
11997
12115
|
|
|
11998
12116
|
/**
|
|
11999
|
-
* Decodes a
|
|
12117
|
+
* Decodes a JobStartRequest message from the specified reader or buffer, length delimited.
|
|
12000
12118
|
* @param reader Reader or buffer to decode from
|
|
12001
|
-
* @returns
|
|
12119
|
+
* @returns JobStartRequest
|
|
12002
12120
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12003
12121
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12004
12122
|
*/
|
|
12005
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.
|
|
12123
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobStartRequest;
|
|
12006
12124
|
|
|
12007
12125
|
/**
|
|
12008
|
-
* Verifies a
|
|
12126
|
+
* Verifies a JobStartRequest message.
|
|
12009
12127
|
* @param message Plain object to verify
|
|
12010
12128
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
12011
12129
|
*/
|
|
12012
12130
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
12013
12131
|
|
|
12014
12132
|
/**
|
|
12015
|
-
* Creates a
|
|
12133
|
+
* Creates a JobStartRequest message from a plain object. Also converts values to their respective internal types.
|
|
12016
12134
|
* @param object Plain object
|
|
12017
|
-
* @returns
|
|
12135
|
+
* @returns JobStartRequest
|
|
12018
12136
|
*/
|
|
12019
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.
|
|
12137
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobStartRequest;
|
|
12020
12138
|
|
|
12021
12139
|
/**
|
|
12022
|
-
* Creates a plain object from a
|
|
12023
|
-
* @param message
|
|
12140
|
+
* Creates a plain object from a JobStartRequest message. Also converts values to other types if specified.
|
|
12141
|
+
* @param message JobStartRequest
|
|
12024
12142
|
* @param [options] Conversion options
|
|
12025
12143
|
* @returns Plain object
|
|
12026
12144
|
*/
|
|
12027
|
-
public static toObject(message: sesame.v1.jobs.
|
|
12145
|
+
public static toObject(message: sesame.v1.jobs.JobStartRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12028
12146
|
|
|
12029
12147
|
/**
|
|
12030
|
-
* Converts this
|
|
12148
|
+
* Converts this JobStartRequest to JSON.
|
|
12031
12149
|
* @returns JSON object
|
|
12032
12150
|
*/
|
|
12033
12151
|
public toJSON(): { [k: string]: any };
|
|
12034
12152
|
|
|
12035
12153
|
/**
|
|
12036
|
-
* Gets the default type url for
|
|
12154
|
+
* Gets the default type url for JobStartRequest
|
|
12037
12155
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12038
12156
|
* @returns The default type url
|
|
12039
12157
|
*/
|
|
12040
12158
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12041
12159
|
}
|
|
12042
12160
|
|
|
12043
|
-
/** Properties of a
|
|
12044
|
-
interface
|
|
12161
|
+
/** Properties of a JobAbortRequest. */
|
|
12162
|
+
interface IJobAbortRequest {
|
|
12045
12163
|
|
|
12046
|
-
/**
|
|
12164
|
+
/** JobAbortRequest jobId */
|
|
12047
12165
|
jobId?: (number|null);
|
|
12166
|
+
}
|
|
12048
12167
|
|
|
12049
|
-
|
|
12050
|
-
|
|
12168
|
+
/** Represents a JobAbortRequest. */
|
|
12169
|
+
class JobAbortRequest implements IJobAbortRequest {
|
|
12051
12170
|
|
|
12052
|
-
/**
|
|
12053
|
-
|
|
12171
|
+
/**
|
|
12172
|
+
* Constructs a new JobAbortRequest.
|
|
12173
|
+
* @param [properties] Properties to set
|
|
12174
|
+
*/
|
|
12175
|
+
constructor(properties?: sesame.v1.jobs.IJobAbortRequest);
|
|
12054
12176
|
|
|
12055
|
-
/**
|
|
12056
|
-
|
|
12177
|
+
/** JobAbortRequest jobId. */
|
|
12178
|
+
public jobId: number;
|
|
12057
12179
|
|
|
12058
|
-
/**
|
|
12059
|
-
|
|
12180
|
+
/**
|
|
12181
|
+
* Creates a new JobAbortRequest instance using the specified properties.
|
|
12182
|
+
* @param [properties] Properties to set
|
|
12183
|
+
* @returns JobAbortRequest instance
|
|
12184
|
+
*/
|
|
12185
|
+
public static create(properties?: sesame.v1.jobs.IJobAbortRequest): sesame.v1.jobs.JobAbortRequest;
|
|
12060
12186
|
|
|
12061
|
-
/**
|
|
12062
|
-
|
|
12187
|
+
/**
|
|
12188
|
+
* Encodes the specified JobAbortRequest message. Does not implicitly {@link sesame.v1.jobs.JobAbortRequest.verify|verify} messages.
|
|
12189
|
+
* @param message JobAbortRequest message or plain object to encode
|
|
12190
|
+
* @param [writer] Writer to encode to
|
|
12191
|
+
* @returns Writer
|
|
12192
|
+
*/
|
|
12193
|
+
public static encode(message: sesame.v1.jobs.IJobAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12194
|
+
|
|
12195
|
+
/**
|
|
12196
|
+
* Encodes the specified JobAbortRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobAbortRequest.verify|verify} messages.
|
|
12197
|
+
* @param message JobAbortRequest message or plain object to encode
|
|
12198
|
+
* @param [writer] Writer to encode to
|
|
12199
|
+
* @returns Writer
|
|
12200
|
+
*/
|
|
12201
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12202
|
+
|
|
12203
|
+
/**
|
|
12204
|
+
* Decodes a JobAbortRequest message from the specified reader or buffer.
|
|
12205
|
+
* @param reader Reader or buffer to decode from
|
|
12206
|
+
* @param [length] Message length if known beforehand
|
|
12207
|
+
* @returns JobAbortRequest
|
|
12208
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12209
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12210
|
+
*/
|
|
12211
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobAbortRequest;
|
|
12212
|
+
|
|
12213
|
+
/**
|
|
12214
|
+
* Decodes a JobAbortRequest message from the specified reader or buffer, length delimited.
|
|
12215
|
+
* @param reader Reader or buffer to decode from
|
|
12216
|
+
* @returns JobAbortRequest
|
|
12217
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12218
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12219
|
+
*/
|
|
12220
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobAbortRequest;
|
|
12221
|
+
|
|
12222
|
+
/**
|
|
12223
|
+
* Verifies a JobAbortRequest message.
|
|
12224
|
+
* @param message Plain object to verify
|
|
12225
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12226
|
+
*/
|
|
12227
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12228
|
+
|
|
12229
|
+
/**
|
|
12230
|
+
* Creates a JobAbortRequest message from a plain object. Also converts values to their respective internal types.
|
|
12231
|
+
* @param object Plain object
|
|
12232
|
+
* @returns JobAbortRequest
|
|
12233
|
+
*/
|
|
12234
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobAbortRequest;
|
|
12235
|
+
|
|
12236
|
+
/**
|
|
12237
|
+
* Creates a plain object from a JobAbortRequest message. Also converts values to other types if specified.
|
|
12238
|
+
* @param message JobAbortRequest
|
|
12239
|
+
* @param [options] Conversion options
|
|
12240
|
+
* @returns Plain object
|
|
12241
|
+
*/
|
|
12242
|
+
public static toObject(message: sesame.v1.jobs.JobAbortRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12243
|
+
|
|
12244
|
+
/**
|
|
12245
|
+
* Converts this JobAbortRequest to JSON.
|
|
12246
|
+
* @returns JSON object
|
|
12247
|
+
*/
|
|
12248
|
+
public toJSON(): { [k: string]: any };
|
|
12249
|
+
|
|
12250
|
+
/**
|
|
12251
|
+
* Gets the default type url for JobAbortRequest
|
|
12252
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12253
|
+
* @returns The default type url
|
|
12254
|
+
*/
|
|
12255
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12256
|
+
}
|
|
12257
|
+
|
|
12258
|
+
/** Properties of a JobStatusRequest. */
|
|
12259
|
+
interface IJobStatusRequest {
|
|
12260
|
+
|
|
12261
|
+
/** JobStatusRequest jobId */
|
|
12262
|
+
jobId?: (number|null);
|
|
12063
12263
|
}
|
|
12064
12264
|
|
|
12065
|
-
/** Represents a
|
|
12066
|
-
class
|
|
12265
|
+
/** Represents a JobStatusRequest. */
|
|
12266
|
+
class JobStatusRequest implements IJobStatusRequest {
|
|
12067
12267
|
|
|
12068
12268
|
/**
|
|
12069
|
-
* Constructs a new
|
|
12269
|
+
* Constructs a new JobStatusRequest.
|
|
12070
12270
|
* @param [properties] Properties to set
|
|
12071
12271
|
*/
|
|
12072
|
-
constructor(properties?: sesame.v1.jobs.
|
|
12272
|
+
constructor(properties?: sesame.v1.jobs.IJobStatusRequest);
|
|
12073
12273
|
|
|
12074
|
-
/**
|
|
12274
|
+
/** JobStatusRequest jobId. */
|
|
12075
12275
|
public jobId: number;
|
|
12076
12276
|
|
|
12077
|
-
/**
|
|
12078
|
-
|
|
12277
|
+
/**
|
|
12278
|
+
* Creates a new JobStatusRequest instance using the specified properties.
|
|
12279
|
+
* @param [properties] Properties to set
|
|
12280
|
+
* @returns JobStatusRequest instance
|
|
12281
|
+
*/
|
|
12282
|
+
public static create(properties?: sesame.v1.jobs.IJobStatusRequest): sesame.v1.jobs.JobStatusRequest;
|
|
12283
|
+
|
|
12284
|
+
/**
|
|
12285
|
+
* Encodes the specified JobStatusRequest message. Does not implicitly {@link sesame.v1.jobs.JobStatusRequest.verify|verify} messages.
|
|
12286
|
+
* @param message JobStatusRequest message or plain object to encode
|
|
12287
|
+
* @param [writer] Writer to encode to
|
|
12288
|
+
* @returns Writer
|
|
12289
|
+
*/
|
|
12290
|
+
public static encode(message: sesame.v1.jobs.IJobStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12079
12291
|
|
|
12080
|
-
/**
|
|
12081
|
-
|
|
12292
|
+
/**
|
|
12293
|
+
* Encodes the specified JobStatusRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobStatusRequest.verify|verify} messages.
|
|
12294
|
+
* @param message JobStatusRequest message or plain object to encode
|
|
12295
|
+
* @param [writer] Writer to encode to
|
|
12296
|
+
* @returns Writer
|
|
12297
|
+
*/
|
|
12298
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12082
12299
|
|
|
12083
|
-
/**
|
|
12084
|
-
|
|
12300
|
+
/**
|
|
12301
|
+
* Decodes a JobStatusRequest message from the specified reader or buffer.
|
|
12302
|
+
* @param reader Reader or buffer to decode from
|
|
12303
|
+
* @param [length] Message length if known beforehand
|
|
12304
|
+
* @returns JobStatusRequest
|
|
12305
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12306
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12307
|
+
*/
|
|
12308
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobStatusRequest;
|
|
12085
12309
|
|
|
12086
|
-
/**
|
|
12087
|
-
|
|
12310
|
+
/**
|
|
12311
|
+
* Decodes a JobStatusRequest message from the specified reader or buffer, length delimited.
|
|
12312
|
+
* @param reader Reader or buffer to decode from
|
|
12313
|
+
* @returns JobStatusRequest
|
|
12314
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12315
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12316
|
+
*/
|
|
12317
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobStatusRequest;
|
|
12088
12318
|
|
|
12089
|
-
/**
|
|
12090
|
-
|
|
12319
|
+
/**
|
|
12320
|
+
* Verifies a JobStatusRequest message.
|
|
12321
|
+
* @param message Plain object to verify
|
|
12322
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12323
|
+
*/
|
|
12324
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12325
|
+
|
|
12326
|
+
/**
|
|
12327
|
+
* Creates a JobStatusRequest message from a plain object. Also converts values to their respective internal types.
|
|
12328
|
+
* @param object Plain object
|
|
12329
|
+
* @returns JobStatusRequest
|
|
12330
|
+
*/
|
|
12331
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobStatusRequest;
|
|
12332
|
+
|
|
12333
|
+
/**
|
|
12334
|
+
* Creates a plain object from a JobStatusRequest message. Also converts values to other types if specified.
|
|
12335
|
+
* @param message JobStatusRequest
|
|
12336
|
+
* @param [options] Conversion options
|
|
12337
|
+
* @returns Plain object
|
|
12338
|
+
*/
|
|
12339
|
+
public static toObject(message: sesame.v1.jobs.JobStatusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12340
|
+
|
|
12341
|
+
/**
|
|
12342
|
+
* Converts this JobStatusRequest to JSON.
|
|
12343
|
+
* @returns JSON object
|
|
12344
|
+
*/
|
|
12345
|
+
public toJSON(): { [k: string]: any };
|
|
12346
|
+
|
|
12347
|
+
/**
|
|
12348
|
+
* Gets the default type url for JobStatusRequest
|
|
12349
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12350
|
+
* @returns The default type url
|
|
12351
|
+
*/
|
|
12352
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12353
|
+
}
|
|
12354
|
+
|
|
12355
|
+
/** Properties of a JobListRequest. */
|
|
12356
|
+
interface IJobListRequest {
|
|
12357
|
+
}
|
|
12358
|
+
|
|
12359
|
+
/** Represents a JobListRequest. */
|
|
12360
|
+
class JobListRequest implements IJobListRequest {
|
|
12361
|
+
|
|
12362
|
+
/**
|
|
12363
|
+
* Constructs a new JobListRequest.
|
|
12364
|
+
* @param [properties] Properties to set
|
|
12365
|
+
*/
|
|
12366
|
+
constructor(properties?: sesame.v1.jobs.IJobListRequest);
|
|
12091
12367
|
|
|
12092
12368
|
/**
|
|
12093
|
-
* Creates a new
|
|
12369
|
+
* Creates a new JobListRequest instance using the specified properties.
|
|
12094
12370
|
* @param [properties] Properties to set
|
|
12095
|
-
* @returns
|
|
12371
|
+
* @returns JobListRequest instance
|
|
12096
12372
|
*/
|
|
12097
|
-
public static create(properties?: sesame.v1.jobs.
|
|
12373
|
+
public static create(properties?: sesame.v1.jobs.IJobListRequest): sesame.v1.jobs.JobListRequest;
|
|
12098
12374
|
|
|
12099
12375
|
/**
|
|
12100
|
-
* Encodes the specified
|
|
12101
|
-
* @param message
|
|
12376
|
+
* Encodes the specified JobListRequest message. Does not implicitly {@link sesame.v1.jobs.JobListRequest.verify|verify} messages.
|
|
12377
|
+
* @param message JobListRequest message or plain object to encode
|
|
12102
12378
|
* @param [writer] Writer to encode to
|
|
12103
12379
|
* @returns Writer
|
|
12104
12380
|
*/
|
|
12105
|
-
public static encode(message: sesame.v1.jobs.
|
|
12381
|
+
public static encode(message: sesame.v1.jobs.IJobListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12106
12382
|
|
|
12107
12383
|
/**
|
|
12108
|
-
* Encodes the specified
|
|
12109
|
-
* @param message
|
|
12384
|
+
* Encodes the specified JobListRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobListRequest.verify|verify} messages.
|
|
12385
|
+
* @param message JobListRequest message or plain object to encode
|
|
12110
12386
|
* @param [writer] Writer to encode to
|
|
12111
12387
|
* @returns Writer
|
|
12112
12388
|
*/
|
|
12113
|
-
public static encodeDelimited(message: sesame.v1.jobs.
|
|
12389
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12114
12390
|
|
|
12115
12391
|
/**
|
|
12116
|
-
* Decodes a
|
|
12392
|
+
* Decodes a JobListRequest message from the specified reader or buffer.
|
|
12117
12393
|
* @param reader Reader or buffer to decode from
|
|
12118
12394
|
* @param [length] Message length if known beforehand
|
|
12119
|
-
* @returns
|
|
12395
|
+
* @returns JobListRequest
|
|
12120
12396
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12121
12397
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12122
12398
|
*/
|
|
12123
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.
|
|
12399
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobListRequest;
|
|
12124
12400
|
|
|
12125
12401
|
/**
|
|
12126
|
-
* Decodes a
|
|
12402
|
+
* Decodes a JobListRequest message from the specified reader or buffer, length delimited.
|
|
12127
12403
|
* @param reader Reader or buffer to decode from
|
|
12128
|
-
* @returns
|
|
12404
|
+
* @returns JobListRequest
|
|
12129
12405
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12130
12406
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12131
12407
|
*/
|
|
12132
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.
|
|
12408
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobListRequest;
|
|
12133
12409
|
|
|
12134
12410
|
/**
|
|
12135
|
-
* Verifies a
|
|
12411
|
+
* Verifies a JobListRequest message.
|
|
12136
12412
|
* @param message Plain object to verify
|
|
12137
12413
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
12138
12414
|
*/
|
|
12139
12415
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
12140
12416
|
|
|
12141
12417
|
/**
|
|
12142
|
-
* Creates a
|
|
12418
|
+
* Creates a JobListRequest message from a plain object. Also converts values to their respective internal types.
|
|
12143
12419
|
* @param object Plain object
|
|
12144
|
-
* @returns
|
|
12420
|
+
* @returns JobListRequest
|
|
12145
12421
|
*/
|
|
12146
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.
|
|
12422
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobListRequest;
|
|
12147
12423
|
|
|
12148
12424
|
/**
|
|
12149
|
-
* Creates a plain object from a
|
|
12150
|
-
* @param message
|
|
12425
|
+
* Creates a plain object from a JobListRequest message. Also converts values to other types if specified.
|
|
12426
|
+
* @param message JobListRequest
|
|
12151
12427
|
* @param [options] Conversion options
|
|
12152
12428
|
* @returns Plain object
|
|
12153
12429
|
*/
|
|
12154
|
-
public static toObject(message: sesame.v1.jobs.
|
|
12430
|
+
public static toObject(message: sesame.v1.jobs.JobListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12155
12431
|
|
|
12156
12432
|
/**
|
|
12157
|
-
* Converts this
|
|
12433
|
+
* Converts this JobListRequest to JSON.
|
|
12158
12434
|
* @returns JSON object
|
|
12159
12435
|
*/
|
|
12160
12436
|
public toJSON(): { [k: string]: any };
|
|
12161
12437
|
|
|
12162
12438
|
/**
|
|
12163
|
-
* Gets the default type url for
|
|
12439
|
+
* Gets the default type url for JobListRequest
|
|
12164
12440
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12165
12441
|
* @returns The default type url
|
|
12166
12442
|
*/
|
|
@@ -12505,346 +12781,61 @@ export namespace sesame {
|
|
|
12505
12781
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12506
12782
|
}
|
|
12507
12783
|
|
|
12508
|
-
/** Properties of an
|
|
12509
|
-
interface
|
|
12784
|
+
/** Properties of an ImportConfiguration. */
|
|
12785
|
+
interface IImportConfiguration {
|
|
12786
|
+
|
|
12787
|
+
/** ImportConfiguration srcFilename */
|
|
12788
|
+
srcFilename?: (string|null);
|
|
12510
12789
|
|
|
12511
|
-
/**
|
|
12512
|
-
|
|
12790
|
+
/** ImportConfiguration audioRouting */
|
|
12791
|
+
audioRouting?: (number[]|null);
|
|
12792
|
+
|
|
12793
|
+
/** ImportConfiguration dstRecorderId */
|
|
12794
|
+
dstRecorderId?: (string|null);
|
|
12795
|
+
|
|
12796
|
+
/** ImportConfiguration dstClipId */
|
|
12797
|
+
dstClipId?: (number|Long|null);
|
|
12798
|
+
|
|
12799
|
+
/** ImportConfiguration dstClipName */
|
|
12800
|
+
dstClipName?: (string|null);
|
|
12801
|
+
|
|
12802
|
+
/** ImportConfiguration dstClipUserData */
|
|
12803
|
+
dstClipUserData?: (string|null);
|
|
12513
12804
|
}
|
|
12514
12805
|
|
|
12515
|
-
/** Represents an
|
|
12516
|
-
class
|
|
12806
|
+
/** Represents an ImportConfiguration. */
|
|
12807
|
+
class ImportConfiguration implements IImportConfiguration {
|
|
12517
12808
|
|
|
12518
12809
|
/**
|
|
12519
|
-
* Constructs a new
|
|
12810
|
+
* Constructs a new ImportConfiguration.
|
|
12520
12811
|
* @param [properties] Properties to set
|
|
12521
12812
|
*/
|
|
12522
|
-
constructor(properties?: sesame.v1.jobs.
|
|
12813
|
+
constructor(properties?: sesame.v1.jobs.IImportConfiguration);
|
|
12523
12814
|
|
|
12524
|
-
/**
|
|
12525
|
-
public
|
|
12815
|
+
/** ImportConfiguration srcFilename. */
|
|
12816
|
+
public srcFilename: string;
|
|
12817
|
+
|
|
12818
|
+
/** ImportConfiguration audioRouting. */
|
|
12819
|
+
public audioRouting: number[];
|
|
12820
|
+
|
|
12821
|
+
/** ImportConfiguration dstRecorderId. */
|
|
12822
|
+
public dstRecorderId: string;
|
|
12823
|
+
|
|
12824
|
+
/** ImportConfiguration dstClipId. */
|
|
12825
|
+
public dstClipId: (number|Long);
|
|
12826
|
+
|
|
12827
|
+
/** ImportConfiguration dstClipName. */
|
|
12828
|
+
public dstClipName: string;
|
|
12829
|
+
|
|
12830
|
+
/** ImportConfiguration dstClipUserData. */
|
|
12831
|
+
public dstClipUserData: string;
|
|
12526
12832
|
|
|
12527
12833
|
/**
|
|
12528
|
-
* Creates a new
|
|
12834
|
+
* Creates a new ImportConfiguration instance using the specified properties.
|
|
12529
12835
|
* @param [properties] Properties to set
|
|
12530
|
-
* @returns
|
|
12836
|
+
* @returns ImportConfiguration instance
|
|
12531
12837
|
*/
|
|
12532
|
-
public static create(properties?: sesame.v1.jobs.
|
|
12533
|
-
|
|
12534
|
-
/**
|
|
12535
|
-
* Encodes the specified ExportAbortRequest message. Does not implicitly {@link sesame.v1.jobs.ExportAbortRequest.verify|verify} messages.
|
|
12536
|
-
* @param message ExportAbortRequest message or plain object to encode
|
|
12537
|
-
* @param [writer] Writer to encode to
|
|
12538
|
-
* @returns Writer
|
|
12539
|
-
*/
|
|
12540
|
-
public static encode(message: sesame.v1.jobs.IExportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12541
|
-
|
|
12542
|
-
/**
|
|
12543
|
-
* Encodes the specified ExportAbortRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ExportAbortRequest.verify|verify} messages.
|
|
12544
|
-
* @param message ExportAbortRequest message or plain object to encode
|
|
12545
|
-
* @param [writer] Writer to encode to
|
|
12546
|
-
* @returns Writer
|
|
12547
|
-
*/
|
|
12548
|
-
public static encodeDelimited(message: sesame.v1.jobs.IExportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12549
|
-
|
|
12550
|
-
/**
|
|
12551
|
-
* Decodes an ExportAbortRequest message from the specified reader or buffer.
|
|
12552
|
-
* @param reader Reader or buffer to decode from
|
|
12553
|
-
* @param [length] Message length if known beforehand
|
|
12554
|
-
* @returns ExportAbortRequest
|
|
12555
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12556
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12557
|
-
*/
|
|
12558
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ExportAbortRequest;
|
|
12559
|
-
|
|
12560
|
-
/**
|
|
12561
|
-
* Decodes an ExportAbortRequest message from the specified reader or buffer, length delimited.
|
|
12562
|
-
* @param reader Reader or buffer to decode from
|
|
12563
|
-
* @returns ExportAbortRequest
|
|
12564
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12565
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12566
|
-
*/
|
|
12567
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ExportAbortRequest;
|
|
12568
|
-
|
|
12569
|
-
/**
|
|
12570
|
-
* Verifies an ExportAbortRequest message.
|
|
12571
|
-
* @param message Plain object to verify
|
|
12572
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
12573
|
-
*/
|
|
12574
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
12575
|
-
|
|
12576
|
-
/**
|
|
12577
|
-
* Creates an ExportAbortRequest message from a plain object. Also converts values to their respective internal types.
|
|
12578
|
-
* @param object Plain object
|
|
12579
|
-
* @returns ExportAbortRequest
|
|
12580
|
-
*/
|
|
12581
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ExportAbortRequest;
|
|
12582
|
-
|
|
12583
|
-
/**
|
|
12584
|
-
* Creates a plain object from an ExportAbortRequest message. Also converts values to other types if specified.
|
|
12585
|
-
* @param message ExportAbortRequest
|
|
12586
|
-
* @param [options] Conversion options
|
|
12587
|
-
* @returns Plain object
|
|
12588
|
-
*/
|
|
12589
|
-
public static toObject(message: sesame.v1.jobs.ExportAbortRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12590
|
-
|
|
12591
|
-
/**
|
|
12592
|
-
* Converts this ExportAbortRequest to JSON.
|
|
12593
|
-
* @returns JSON object
|
|
12594
|
-
*/
|
|
12595
|
-
public toJSON(): { [k: string]: any };
|
|
12596
|
-
|
|
12597
|
-
/**
|
|
12598
|
-
* Gets the default type url for ExportAbortRequest
|
|
12599
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12600
|
-
* @returns The default type url
|
|
12601
|
-
*/
|
|
12602
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12603
|
-
}
|
|
12604
|
-
|
|
12605
|
-
/** Properties of an ExportStatusRequest. */
|
|
12606
|
-
interface IExportStatusRequest {
|
|
12607
|
-
|
|
12608
|
-
/** ExportStatusRequest jobId */
|
|
12609
|
-
jobId?: (number|null);
|
|
12610
|
-
}
|
|
12611
|
-
|
|
12612
|
-
/** Represents an ExportStatusRequest. */
|
|
12613
|
-
class ExportStatusRequest implements IExportStatusRequest {
|
|
12614
|
-
|
|
12615
|
-
/**
|
|
12616
|
-
* Constructs a new ExportStatusRequest.
|
|
12617
|
-
* @param [properties] Properties to set
|
|
12618
|
-
*/
|
|
12619
|
-
constructor(properties?: sesame.v1.jobs.IExportStatusRequest);
|
|
12620
|
-
|
|
12621
|
-
/** ExportStatusRequest jobId. */
|
|
12622
|
-
public jobId: number;
|
|
12623
|
-
|
|
12624
|
-
/**
|
|
12625
|
-
* Creates a new ExportStatusRequest instance using the specified properties.
|
|
12626
|
-
* @param [properties] Properties to set
|
|
12627
|
-
* @returns ExportStatusRequest instance
|
|
12628
|
-
*/
|
|
12629
|
-
public static create(properties?: sesame.v1.jobs.IExportStatusRequest): sesame.v1.jobs.ExportStatusRequest;
|
|
12630
|
-
|
|
12631
|
-
/**
|
|
12632
|
-
* Encodes the specified ExportStatusRequest message. Does not implicitly {@link sesame.v1.jobs.ExportStatusRequest.verify|verify} messages.
|
|
12633
|
-
* @param message ExportStatusRequest message or plain object to encode
|
|
12634
|
-
* @param [writer] Writer to encode to
|
|
12635
|
-
* @returns Writer
|
|
12636
|
-
*/
|
|
12637
|
-
public static encode(message: sesame.v1.jobs.IExportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12638
|
-
|
|
12639
|
-
/**
|
|
12640
|
-
* Encodes the specified ExportStatusRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ExportStatusRequest.verify|verify} messages.
|
|
12641
|
-
* @param message ExportStatusRequest message or plain object to encode
|
|
12642
|
-
* @param [writer] Writer to encode to
|
|
12643
|
-
* @returns Writer
|
|
12644
|
-
*/
|
|
12645
|
-
public static encodeDelimited(message: sesame.v1.jobs.IExportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12646
|
-
|
|
12647
|
-
/**
|
|
12648
|
-
* Decodes an ExportStatusRequest message from the specified reader or buffer.
|
|
12649
|
-
* @param reader Reader or buffer to decode from
|
|
12650
|
-
* @param [length] Message length if known beforehand
|
|
12651
|
-
* @returns ExportStatusRequest
|
|
12652
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12653
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12654
|
-
*/
|
|
12655
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ExportStatusRequest;
|
|
12656
|
-
|
|
12657
|
-
/**
|
|
12658
|
-
* Decodes an ExportStatusRequest message from the specified reader or buffer, length delimited.
|
|
12659
|
-
* @param reader Reader or buffer to decode from
|
|
12660
|
-
* @returns ExportStatusRequest
|
|
12661
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12662
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12663
|
-
*/
|
|
12664
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ExportStatusRequest;
|
|
12665
|
-
|
|
12666
|
-
/**
|
|
12667
|
-
* Verifies an ExportStatusRequest message.
|
|
12668
|
-
* @param message Plain object to verify
|
|
12669
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
12670
|
-
*/
|
|
12671
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
12672
|
-
|
|
12673
|
-
/**
|
|
12674
|
-
* Creates an ExportStatusRequest message from a plain object. Also converts values to their respective internal types.
|
|
12675
|
-
* @param object Plain object
|
|
12676
|
-
* @returns ExportStatusRequest
|
|
12677
|
-
*/
|
|
12678
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ExportStatusRequest;
|
|
12679
|
-
|
|
12680
|
-
/**
|
|
12681
|
-
* Creates a plain object from an ExportStatusRequest message. Also converts values to other types if specified.
|
|
12682
|
-
* @param message ExportStatusRequest
|
|
12683
|
-
* @param [options] Conversion options
|
|
12684
|
-
* @returns Plain object
|
|
12685
|
-
*/
|
|
12686
|
-
public static toObject(message: sesame.v1.jobs.ExportStatusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12687
|
-
|
|
12688
|
-
/**
|
|
12689
|
-
* Converts this ExportStatusRequest to JSON.
|
|
12690
|
-
* @returns JSON object
|
|
12691
|
-
*/
|
|
12692
|
-
public toJSON(): { [k: string]: any };
|
|
12693
|
-
|
|
12694
|
-
/**
|
|
12695
|
-
* Gets the default type url for ExportStatusRequest
|
|
12696
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12697
|
-
* @returns The default type url
|
|
12698
|
-
*/
|
|
12699
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12700
|
-
}
|
|
12701
|
-
|
|
12702
|
-
/** Properties of an ExportListRequest. */
|
|
12703
|
-
interface IExportListRequest {
|
|
12704
|
-
}
|
|
12705
|
-
|
|
12706
|
-
/** Represents an ExportListRequest. */
|
|
12707
|
-
class ExportListRequest implements IExportListRequest {
|
|
12708
|
-
|
|
12709
|
-
/**
|
|
12710
|
-
* Constructs a new ExportListRequest.
|
|
12711
|
-
* @param [properties] Properties to set
|
|
12712
|
-
*/
|
|
12713
|
-
constructor(properties?: sesame.v1.jobs.IExportListRequest);
|
|
12714
|
-
|
|
12715
|
-
/**
|
|
12716
|
-
* Creates a new ExportListRequest instance using the specified properties.
|
|
12717
|
-
* @param [properties] Properties to set
|
|
12718
|
-
* @returns ExportListRequest instance
|
|
12719
|
-
*/
|
|
12720
|
-
public static create(properties?: sesame.v1.jobs.IExportListRequest): sesame.v1.jobs.ExportListRequest;
|
|
12721
|
-
|
|
12722
|
-
/**
|
|
12723
|
-
* Encodes the specified ExportListRequest message. Does not implicitly {@link sesame.v1.jobs.ExportListRequest.verify|verify} messages.
|
|
12724
|
-
* @param message ExportListRequest message or plain object to encode
|
|
12725
|
-
* @param [writer] Writer to encode to
|
|
12726
|
-
* @returns Writer
|
|
12727
|
-
*/
|
|
12728
|
-
public static encode(message: sesame.v1.jobs.IExportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12729
|
-
|
|
12730
|
-
/**
|
|
12731
|
-
* Encodes the specified ExportListRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ExportListRequest.verify|verify} messages.
|
|
12732
|
-
* @param message ExportListRequest message or plain object to encode
|
|
12733
|
-
* @param [writer] Writer to encode to
|
|
12734
|
-
* @returns Writer
|
|
12735
|
-
*/
|
|
12736
|
-
public static encodeDelimited(message: sesame.v1.jobs.IExportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12737
|
-
|
|
12738
|
-
/**
|
|
12739
|
-
* Decodes an ExportListRequest message from the specified reader or buffer.
|
|
12740
|
-
* @param reader Reader or buffer to decode from
|
|
12741
|
-
* @param [length] Message length if known beforehand
|
|
12742
|
-
* @returns ExportListRequest
|
|
12743
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12744
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12745
|
-
*/
|
|
12746
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ExportListRequest;
|
|
12747
|
-
|
|
12748
|
-
/**
|
|
12749
|
-
* Decodes an ExportListRequest message from the specified reader or buffer, length delimited.
|
|
12750
|
-
* @param reader Reader or buffer to decode from
|
|
12751
|
-
* @returns ExportListRequest
|
|
12752
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12753
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12754
|
-
*/
|
|
12755
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ExportListRequest;
|
|
12756
|
-
|
|
12757
|
-
/**
|
|
12758
|
-
* Verifies an ExportListRequest message.
|
|
12759
|
-
* @param message Plain object to verify
|
|
12760
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
12761
|
-
*/
|
|
12762
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
12763
|
-
|
|
12764
|
-
/**
|
|
12765
|
-
* Creates an ExportListRequest message from a plain object. Also converts values to their respective internal types.
|
|
12766
|
-
* @param object Plain object
|
|
12767
|
-
* @returns ExportListRequest
|
|
12768
|
-
*/
|
|
12769
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ExportListRequest;
|
|
12770
|
-
|
|
12771
|
-
/**
|
|
12772
|
-
* Creates a plain object from an ExportListRequest message. Also converts values to other types if specified.
|
|
12773
|
-
* @param message ExportListRequest
|
|
12774
|
-
* @param [options] Conversion options
|
|
12775
|
-
* @returns Plain object
|
|
12776
|
-
*/
|
|
12777
|
-
public static toObject(message: sesame.v1.jobs.ExportListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12778
|
-
|
|
12779
|
-
/**
|
|
12780
|
-
* Converts this ExportListRequest to JSON.
|
|
12781
|
-
* @returns JSON object
|
|
12782
|
-
*/
|
|
12783
|
-
public toJSON(): { [k: string]: any };
|
|
12784
|
-
|
|
12785
|
-
/**
|
|
12786
|
-
* Gets the default type url for ExportListRequest
|
|
12787
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12788
|
-
* @returns The default type url
|
|
12789
|
-
*/
|
|
12790
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12791
|
-
}
|
|
12792
|
-
|
|
12793
|
-
/** Properties of an ImportConfiguration. */
|
|
12794
|
-
interface IImportConfiguration {
|
|
12795
|
-
|
|
12796
|
-
/** ImportConfiguration srcFilename */
|
|
12797
|
-
srcFilename?: (string|null);
|
|
12798
|
-
|
|
12799
|
-
/** ImportConfiguration audioRouting */
|
|
12800
|
-
audioRouting?: (number[]|null);
|
|
12801
|
-
|
|
12802
|
-
/** ImportConfiguration dstRecorderId */
|
|
12803
|
-
dstRecorderId?: (string|null);
|
|
12804
|
-
|
|
12805
|
-
/** ImportConfiguration dstClipId */
|
|
12806
|
-
dstClipId?: (number|Long|null);
|
|
12807
|
-
|
|
12808
|
-
/** ImportConfiguration dstClipName */
|
|
12809
|
-
dstClipName?: (string|null);
|
|
12810
|
-
|
|
12811
|
-
/** ImportConfiguration dstClipUserData */
|
|
12812
|
-
dstClipUserData?: (string|null);
|
|
12813
|
-
}
|
|
12814
|
-
|
|
12815
|
-
/** Represents an ImportConfiguration. */
|
|
12816
|
-
class ImportConfiguration implements IImportConfiguration {
|
|
12817
|
-
|
|
12818
|
-
/**
|
|
12819
|
-
* Constructs a new ImportConfiguration.
|
|
12820
|
-
* @param [properties] Properties to set
|
|
12821
|
-
*/
|
|
12822
|
-
constructor(properties?: sesame.v1.jobs.IImportConfiguration);
|
|
12823
|
-
|
|
12824
|
-
/** ImportConfiguration srcFilename. */
|
|
12825
|
-
public srcFilename: string;
|
|
12826
|
-
|
|
12827
|
-
/** ImportConfiguration audioRouting. */
|
|
12828
|
-
public audioRouting: number[];
|
|
12829
|
-
|
|
12830
|
-
/** ImportConfiguration dstRecorderId. */
|
|
12831
|
-
public dstRecorderId: string;
|
|
12832
|
-
|
|
12833
|
-
/** ImportConfiguration dstClipId. */
|
|
12834
|
-
public dstClipId: (number|Long);
|
|
12835
|
-
|
|
12836
|
-
/** ImportConfiguration dstClipName. */
|
|
12837
|
-
public dstClipName: string;
|
|
12838
|
-
|
|
12839
|
-
/** ImportConfiguration dstClipUserData. */
|
|
12840
|
-
public dstClipUserData: string;
|
|
12841
|
-
|
|
12842
|
-
/**
|
|
12843
|
-
* Creates a new ImportConfiguration instance using the specified properties.
|
|
12844
|
-
* @param [properties] Properties to set
|
|
12845
|
-
* @returns ImportConfiguration instance
|
|
12846
|
-
*/
|
|
12847
|
-
public static create(properties?: sesame.v1.jobs.IImportConfiguration): sesame.v1.jobs.ImportConfiguration;
|
|
12838
|
+
public static create(properties?: sesame.v1.jobs.IImportConfiguration): sesame.v1.jobs.ImportConfiguration;
|
|
12848
12839
|
|
|
12849
12840
|
/**
|
|
12850
12841
|
* Encodes the specified ImportConfiguration message. Does not implicitly {@link sesame.v1.jobs.ImportConfiguration.verify|verify} messages.
|
|
@@ -13013,291 +13004,6 @@ export namespace sesame {
|
|
|
13013
13004
|
*/
|
|
13014
13005
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13015
13006
|
}
|
|
13016
|
-
|
|
13017
|
-
/** Properties of an ImportAbortRequest. */
|
|
13018
|
-
interface IImportAbortRequest {
|
|
13019
|
-
|
|
13020
|
-
/** ImportAbortRequest jobId */
|
|
13021
|
-
jobId?: (number|null);
|
|
13022
|
-
}
|
|
13023
|
-
|
|
13024
|
-
/** Represents an ImportAbortRequest. */
|
|
13025
|
-
class ImportAbortRequest implements IImportAbortRequest {
|
|
13026
|
-
|
|
13027
|
-
/**
|
|
13028
|
-
* Constructs a new ImportAbortRequest.
|
|
13029
|
-
* @param [properties] Properties to set
|
|
13030
|
-
*/
|
|
13031
|
-
constructor(properties?: sesame.v1.jobs.IImportAbortRequest);
|
|
13032
|
-
|
|
13033
|
-
/** ImportAbortRequest jobId. */
|
|
13034
|
-
public jobId: number;
|
|
13035
|
-
|
|
13036
|
-
/**
|
|
13037
|
-
* Creates a new ImportAbortRequest instance using the specified properties.
|
|
13038
|
-
* @param [properties] Properties to set
|
|
13039
|
-
* @returns ImportAbortRequest instance
|
|
13040
|
-
*/
|
|
13041
|
-
public static create(properties?: sesame.v1.jobs.IImportAbortRequest): sesame.v1.jobs.ImportAbortRequest;
|
|
13042
|
-
|
|
13043
|
-
/**
|
|
13044
|
-
* Encodes the specified ImportAbortRequest message. Does not implicitly {@link sesame.v1.jobs.ImportAbortRequest.verify|verify} messages.
|
|
13045
|
-
* @param message ImportAbortRequest message or plain object to encode
|
|
13046
|
-
* @param [writer] Writer to encode to
|
|
13047
|
-
* @returns Writer
|
|
13048
|
-
*/
|
|
13049
|
-
public static encode(message: sesame.v1.jobs.IImportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13050
|
-
|
|
13051
|
-
/**
|
|
13052
|
-
* Encodes the specified ImportAbortRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportAbortRequest.verify|verify} messages.
|
|
13053
|
-
* @param message ImportAbortRequest message or plain object to encode
|
|
13054
|
-
* @param [writer] Writer to encode to
|
|
13055
|
-
* @returns Writer
|
|
13056
|
-
*/
|
|
13057
|
-
public static encodeDelimited(message: sesame.v1.jobs.IImportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13058
|
-
|
|
13059
|
-
/**
|
|
13060
|
-
* Decodes an ImportAbortRequest message from the specified reader or buffer.
|
|
13061
|
-
* @param reader Reader or buffer to decode from
|
|
13062
|
-
* @param [length] Message length if known beforehand
|
|
13063
|
-
* @returns ImportAbortRequest
|
|
13064
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13065
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13066
|
-
*/
|
|
13067
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportAbortRequest;
|
|
13068
|
-
|
|
13069
|
-
/**
|
|
13070
|
-
* Decodes an ImportAbortRequest message from the specified reader or buffer, length delimited.
|
|
13071
|
-
* @param reader Reader or buffer to decode from
|
|
13072
|
-
* @returns ImportAbortRequest
|
|
13073
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13074
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13075
|
-
*/
|
|
13076
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportAbortRequest;
|
|
13077
|
-
|
|
13078
|
-
/**
|
|
13079
|
-
* Verifies an ImportAbortRequest message.
|
|
13080
|
-
* @param message Plain object to verify
|
|
13081
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
13082
|
-
*/
|
|
13083
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
13084
|
-
|
|
13085
|
-
/**
|
|
13086
|
-
* Creates an ImportAbortRequest message from a plain object. Also converts values to their respective internal types.
|
|
13087
|
-
* @param object Plain object
|
|
13088
|
-
* @returns ImportAbortRequest
|
|
13089
|
-
*/
|
|
13090
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportAbortRequest;
|
|
13091
|
-
|
|
13092
|
-
/**
|
|
13093
|
-
* Creates a plain object from an ImportAbortRequest message. Also converts values to other types if specified.
|
|
13094
|
-
* @param message ImportAbortRequest
|
|
13095
|
-
* @param [options] Conversion options
|
|
13096
|
-
* @returns Plain object
|
|
13097
|
-
*/
|
|
13098
|
-
public static toObject(message: sesame.v1.jobs.ImportAbortRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13099
|
-
|
|
13100
|
-
/**
|
|
13101
|
-
* Converts this ImportAbortRequest to JSON.
|
|
13102
|
-
* @returns JSON object
|
|
13103
|
-
*/
|
|
13104
|
-
public toJSON(): { [k: string]: any };
|
|
13105
|
-
|
|
13106
|
-
/**
|
|
13107
|
-
* Gets the default type url for ImportAbortRequest
|
|
13108
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13109
|
-
* @returns The default type url
|
|
13110
|
-
*/
|
|
13111
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13112
|
-
}
|
|
13113
|
-
|
|
13114
|
-
/** Properties of an ImportStatusRequest. */
|
|
13115
|
-
interface IImportStatusRequest {
|
|
13116
|
-
|
|
13117
|
-
/** ImportStatusRequest jobId */
|
|
13118
|
-
jobId?: (number|null);
|
|
13119
|
-
}
|
|
13120
|
-
|
|
13121
|
-
/** Represents an ImportStatusRequest. */
|
|
13122
|
-
class ImportStatusRequest implements IImportStatusRequest {
|
|
13123
|
-
|
|
13124
|
-
/**
|
|
13125
|
-
* Constructs a new ImportStatusRequest.
|
|
13126
|
-
* @param [properties] Properties to set
|
|
13127
|
-
*/
|
|
13128
|
-
constructor(properties?: sesame.v1.jobs.IImportStatusRequest);
|
|
13129
|
-
|
|
13130
|
-
/** ImportStatusRequest jobId. */
|
|
13131
|
-
public jobId: number;
|
|
13132
|
-
|
|
13133
|
-
/**
|
|
13134
|
-
* Creates a new ImportStatusRequest instance using the specified properties.
|
|
13135
|
-
* @param [properties] Properties to set
|
|
13136
|
-
* @returns ImportStatusRequest instance
|
|
13137
|
-
*/
|
|
13138
|
-
public static create(properties?: sesame.v1.jobs.IImportStatusRequest): sesame.v1.jobs.ImportStatusRequest;
|
|
13139
|
-
|
|
13140
|
-
/**
|
|
13141
|
-
* Encodes the specified ImportStatusRequest message. Does not implicitly {@link sesame.v1.jobs.ImportStatusRequest.verify|verify} messages.
|
|
13142
|
-
* @param message ImportStatusRequest message or plain object to encode
|
|
13143
|
-
* @param [writer] Writer to encode to
|
|
13144
|
-
* @returns Writer
|
|
13145
|
-
*/
|
|
13146
|
-
public static encode(message: sesame.v1.jobs.IImportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13147
|
-
|
|
13148
|
-
/**
|
|
13149
|
-
* Encodes the specified ImportStatusRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportStatusRequest.verify|verify} messages.
|
|
13150
|
-
* @param message ImportStatusRequest message or plain object to encode
|
|
13151
|
-
* @param [writer] Writer to encode to
|
|
13152
|
-
* @returns Writer
|
|
13153
|
-
*/
|
|
13154
|
-
public static encodeDelimited(message: sesame.v1.jobs.IImportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13155
|
-
|
|
13156
|
-
/**
|
|
13157
|
-
* Decodes an ImportStatusRequest message from the specified reader or buffer.
|
|
13158
|
-
* @param reader Reader or buffer to decode from
|
|
13159
|
-
* @param [length] Message length if known beforehand
|
|
13160
|
-
* @returns ImportStatusRequest
|
|
13161
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13162
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13163
|
-
*/
|
|
13164
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportStatusRequest;
|
|
13165
|
-
|
|
13166
|
-
/**
|
|
13167
|
-
* Decodes an ImportStatusRequest message from the specified reader or buffer, length delimited.
|
|
13168
|
-
* @param reader Reader or buffer to decode from
|
|
13169
|
-
* @returns ImportStatusRequest
|
|
13170
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13171
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13172
|
-
*/
|
|
13173
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportStatusRequest;
|
|
13174
|
-
|
|
13175
|
-
/**
|
|
13176
|
-
* Verifies an ImportStatusRequest message.
|
|
13177
|
-
* @param message Plain object to verify
|
|
13178
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
13179
|
-
*/
|
|
13180
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
13181
|
-
|
|
13182
|
-
/**
|
|
13183
|
-
* Creates an ImportStatusRequest message from a plain object. Also converts values to their respective internal types.
|
|
13184
|
-
* @param object Plain object
|
|
13185
|
-
* @returns ImportStatusRequest
|
|
13186
|
-
*/
|
|
13187
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportStatusRequest;
|
|
13188
|
-
|
|
13189
|
-
/**
|
|
13190
|
-
* Creates a plain object from an ImportStatusRequest message. Also converts values to other types if specified.
|
|
13191
|
-
* @param message ImportStatusRequest
|
|
13192
|
-
* @param [options] Conversion options
|
|
13193
|
-
* @returns Plain object
|
|
13194
|
-
*/
|
|
13195
|
-
public static toObject(message: sesame.v1.jobs.ImportStatusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13196
|
-
|
|
13197
|
-
/**
|
|
13198
|
-
* Converts this ImportStatusRequest to JSON.
|
|
13199
|
-
* @returns JSON object
|
|
13200
|
-
*/
|
|
13201
|
-
public toJSON(): { [k: string]: any };
|
|
13202
|
-
|
|
13203
|
-
/**
|
|
13204
|
-
* Gets the default type url for ImportStatusRequest
|
|
13205
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13206
|
-
* @returns The default type url
|
|
13207
|
-
*/
|
|
13208
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13209
|
-
}
|
|
13210
|
-
|
|
13211
|
-
/** Properties of an ImportListRequest. */
|
|
13212
|
-
interface IImportListRequest {
|
|
13213
|
-
}
|
|
13214
|
-
|
|
13215
|
-
/** Represents an ImportListRequest. */
|
|
13216
|
-
class ImportListRequest implements IImportListRequest {
|
|
13217
|
-
|
|
13218
|
-
/**
|
|
13219
|
-
* Constructs a new ImportListRequest.
|
|
13220
|
-
* @param [properties] Properties to set
|
|
13221
|
-
*/
|
|
13222
|
-
constructor(properties?: sesame.v1.jobs.IImportListRequest);
|
|
13223
|
-
|
|
13224
|
-
/**
|
|
13225
|
-
* Creates a new ImportListRequest instance using the specified properties.
|
|
13226
|
-
* @param [properties] Properties to set
|
|
13227
|
-
* @returns ImportListRequest instance
|
|
13228
|
-
*/
|
|
13229
|
-
public static create(properties?: sesame.v1.jobs.IImportListRequest): sesame.v1.jobs.ImportListRequest;
|
|
13230
|
-
|
|
13231
|
-
/**
|
|
13232
|
-
* Encodes the specified ImportListRequest message. Does not implicitly {@link sesame.v1.jobs.ImportListRequest.verify|verify} messages.
|
|
13233
|
-
* @param message ImportListRequest message or plain object to encode
|
|
13234
|
-
* @param [writer] Writer to encode to
|
|
13235
|
-
* @returns Writer
|
|
13236
|
-
*/
|
|
13237
|
-
public static encode(message: sesame.v1.jobs.IImportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13238
|
-
|
|
13239
|
-
/**
|
|
13240
|
-
* Encodes the specified ImportListRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportListRequest.verify|verify} messages.
|
|
13241
|
-
* @param message ImportListRequest message or plain object to encode
|
|
13242
|
-
* @param [writer] Writer to encode to
|
|
13243
|
-
* @returns Writer
|
|
13244
|
-
*/
|
|
13245
|
-
public static encodeDelimited(message: sesame.v1.jobs.IImportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13246
|
-
|
|
13247
|
-
/**
|
|
13248
|
-
* Decodes an ImportListRequest message from the specified reader or buffer.
|
|
13249
|
-
* @param reader Reader or buffer to decode from
|
|
13250
|
-
* @param [length] Message length if known beforehand
|
|
13251
|
-
* @returns ImportListRequest
|
|
13252
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13253
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13254
|
-
*/
|
|
13255
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportListRequest;
|
|
13256
|
-
|
|
13257
|
-
/**
|
|
13258
|
-
* Decodes an ImportListRequest message from the specified reader or buffer, length delimited.
|
|
13259
|
-
* @param reader Reader or buffer to decode from
|
|
13260
|
-
* @returns ImportListRequest
|
|
13261
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13262
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13263
|
-
*/
|
|
13264
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportListRequest;
|
|
13265
|
-
|
|
13266
|
-
/**
|
|
13267
|
-
* Verifies an ImportListRequest message.
|
|
13268
|
-
* @param message Plain object to verify
|
|
13269
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
13270
|
-
*/
|
|
13271
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
13272
|
-
|
|
13273
|
-
/**
|
|
13274
|
-
* Creates an ImportListRequest message from a plain object. Also converts values to their respective internal types.
|
|
13275
|
-
* @param object Plain object
|
|
13276
|
-
* @returns ImportListRequest
|
|
13277
|
-
*/
|
|
13278
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportListRequest;
|
|
13279
|
-
|
|
13280
|
-
/**
|
|
13281
|
-
* Creates a plain object from an ImportListRequest message. Also converts values to other types if specified.
|
|
13282
|
-
* @param message ImportListRequest
|
|
13283
|
-
* @param [options] Conversion options
|
|
13284
|
-
* @returns Plain object
|
|
13285
|
-
*/
|
|
13286
|
-
public static toObject(message: sesame.v1.jobs.ImportListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13287
|
-
|
|
13288
|
-
/**
|
|
13289
|
-
* Converts this ImportListRequest to JSON.
|
|
13290
|
-
* @returns JSON object
|
|
13291
|
-
*/
|
|
13292
|
-
public toJSON(): { [k: string]: any };
|
|
13293
|
-
|
|
13294
|
-
/**
|
|
13295
|
-
* Gets the default type url for ImportListRequest
|
|
13296
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13297
|
-
* @returns The default type url
|
|
13298
|
-
*/
|
|
13299
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13300
|
-
}
|
|
13301
13007
|
}
|
|
13302
13008
|
|
|
13303
13009
|
/** Namespace rpc. */
|
|
@@ -13847,116 +13553,60 @@ export namespace sesame {
|
|
|
13847
13553
|
public requestRecorderOperation(request: sesame.v1.recorder.IRecorderRequest): Promise<sesame.v1.recorder.RecorderResponse>;
|
|
13848
13554
|
|
|
13849
13555
|
/**
|
|
13850
|
-
* Calls
|
|
13851
|
-
* @param request
|
|
13852
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13853
|
-
*/
|
|
13854
|
-
public requestPlaylistExportStart(request: sesame.v1.jobs.IExportStartRequest, callback: sesame.v1.rpc.SesameAPIService.RequestPlaylistExportStartCallback): void;
|
|
13855
|
-
|
|
13856
|
-
/**
|
|
13857
|
-
* Calls RequestPlaylistExportStart.
|
|
13858
|
-
* @param request ExportStartRequest message or plain object
|
|
13859
|
-
* @returns Promise
|
|
13860
|
-
*/
|
|
13861
|
-
public requestPlaylistExportStart(request: sesame.v1.jobs.IExportStartRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
|
|
13862
|
-
|
|
13863
|
-
/**
|
|
13864
|
-
* Calls RequestPlaylistExportAbort.
|
|
13865
|
-
* @param request ExportAbortRequest message or plain object
|
|
13866
|
-
* @param callback Node-style callback called with the error, if any, and JobStatusResponse
|
|
13867
|
-
*/
|
|
13868
|
-
public requestPlaylistExportAbort(request: sesame.v1.jobs.IExportAbortRequest, callback: sesame.v1.rpc.SesameAPIService.RequestPlaylistExportAbortCallback): void;
|
|
13869
|
-
|
|
13870
|
-
/**
|
|
13871
|
-
* Calls RequestPlaylistExportAbort.
|
|
13872
|
-
* @param request ExportAbortRequest message or plain object
|
|
13873
|
-
* @returns Promise
|
|
13874
|
-
*/
|
|
13875
|
-
public requestPlaylistExportAbort(request: sesame.v1.jobs.IExportAbortRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
|
|
13876
|
-
|
|
13877
|
-
/**
|
|
13878
|
-
* Calls RequestPlaylistExportStatus.
|
|
13879
|
-
* @param request ExportStatusRequest message or plain object
|
|
13880
|
-
* @param callback Node-style callback called with the error, if any, and JobStatusResponse
|
|
13881
|
-
*/
|
|
13882
|
-
public requestPlaylistExportStatus(request: sesame.v1.jobs.IExportStatusRequest, callback: sesame.v1.rpc.SesameAPIService.RequestPlaylistExportStatusCallback): void;
|
|
13883
|
-
|
|
13884
|
-
/**
|
|
13885
|
-
* Calls RequestPlaylistExportStatus.
|
|
13886
|
-
* @param request ExportStatusRequest message or plain object
|
|
13887
|
-
* @returns Promise
|
|
13888
|
-
*/
|
|
13889
|
-
public requestPlaylistExportStatus(request: sesame.v1.jobs.IExportStatusRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
|
|
13890
|
-
|
|
13891
|
-
/**
|
|
13892
|
-
* Calls RequestPlaylistExportList.
|
|
13893
|
-
* @param request ExportListRequest message or plain object
|
|
13894
|
-
* @param callback Node-style callback called with the error, if any, and JobListResponse
|
|
13556
|
+
* Calls StartJob.
|
|
13557
|
+
* @param request JobStartRequest message or plain object
|
|
13558
|
+
* @param callback Node-style callback called with the error, if any, and Job
|
|
13895
13559
|
*/
|
|
13896
|
-
public
|
|
13560
|
+
public startJob(request: sesame.v1.jobs.IJobStartRequest, callback: sesame.v1.rpc.SesameAPIService.StartJobCallback): void;
|
|
13897
13561
|
|
|
13898
13562
|
/**
|
|
13899
|
-
* Calls
|
|
13900
|
-
* @param request
|
|
13563
|
+
* Calls StartJob.
|
|
13564
|
+
* @param request JobStartRequest message or plain object
|
|
13901
13565
|
* @returns Promise
|
|
13902
13566
|
*/
|
|
13903
|
-
public
|
|
13567
|
+
public startJob(request: sesame.v1.jobs.IJobStartRequest): Promise<sesame.v1.jobs.Job>;
|
|
13904
13568
|
|
|
13905
13569
|
/**
|
|
13906
|
-
* Calls
|
|
13907
|
-
* @param request
|
|
13908
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13570
|
+
* Calls AbortJob.
|
|
13571
|
+
* @param request JobAbortRequest message or plain object
|
|
13572
|
+
* @param callback Node-style callback called with the error, if any, and Job
|
|
13909
13573
|
*/
|
|
13910
|
-
public
|
|
13574
|
+
public abortJob(request: sesame.v1.jobs.IJobAbortRequest, callback: sesame.v1.rpc.SesameAPIService.AbortJobCallback): void;
|
|
13911
13575
|
|
|
13912
13576
|
/**
|
|
13913
|
-
* Calls
|
|
13914
|
-
* @param request
|
|
13577
|
+
* Calls AbortJob.
|
|
13578
|
+
* @param request JobAbortRequest message or plain object
|
|
13915
13579
|
* @returns Promise
|
|
13916
13580
|
*/
|
|
13917
|
-
public
|
|
13581
|
+
public abortJob(request: sesame.v1.jobs.IJobAbortRequest): Promise<sesame.v1.jobs.Job>;
|
|
13918
13582
|
|
|
13919
13583
|
/**
|
|
13920
|
-
* Calls
|
|
13921
|
-
* @param request
|
|
13922
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13584
|
+
* Calls GetJobStatus.
|
|
13585
|
+
* @param request JobStatusRequest message or plain object
|
|
13586
|
+
* @param callback Node-style callback called with the error, if any, and Job
|
|
13923
13587
|
*/
|
|
13924
|
-
public
|
|
13588
|
+
public getJobStatus(request: sesame.v1.jobs.IJobStatusRequest, callback: sesame.v1.rpc.SesameAPIService.GetJobStatusCallback): void;
|
|
13925
13589
|
|
|
13926
13590
|
/**
|
|
13927
|
-
* Calls
|
|
13928
|
-
* @param request
|
|
13591
|
+
* Calls GetJobStatus.
|
|
13592
|
+
* @param request JobStatusRequest message or plain object
|
|
13929
13593
|
* @returns Promise
|
|
13930
13594
|
*/
|
|
13931
|
-
public
|
|
13595
|
+
public getJobStatus(request: sesame.v1.jobs.IJobStatusRequest): Promise<sesame.v1.jobs.Job>;
|
|
13932
13596
|
|
|
13933
13597
|
/**
|
|
13934
|
-
* Calls
|
|
13935
|
-
* @param request
|
|
13936
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13598
|
+
* Calls ListJobs.
|
|
13599
|
+
* @param request JobListRequest message or plain object
|
|
13600
|
+
* @param callback Node-style callback called with the error, if any, and JobList
|
|
13937
13601
|
*/
|
|
13938
|
-
public
|
|
13602
|
+
public listJobs(request: sesame.v1.jobs.IJobListRequest, callback: sesame.v1.rpc.SesameAPIService.ListJobsCallback): void;
|
|
13939
13603
|
|
|
13940
13604
|
/**
|
|
13941
|
-
* Calls
|
|
13942
|
-
* @param request
|
|
13605
|
+
* Calls ListJobs.
|
|
13606
|
+
* @param request JobListRequest message or plain object
|
|
13943
13607
|
* @returns Promise
|
|
13944
13608
|
*/
|
|
13945
|
-
public
|
|
13946
|
-
|
|
13947
|
-
/**
|
|
13948
|
-
* Calls RequestClipImportList.
|
|
13949
|
-
* @param request ImportListRequest message or plain object
|
|
13950
|
-
* @param callback Node-style callback called with the error, if any, and JobListResponse
|
|
13951
|
-
*/
|
|
13952
|
-
public requestClipImportList(request: sesame.v1.jobs.IImportListRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportListCallback): void;
|
|
13953
|
-
|
|
13954
|
-
/**
|
|
13955
|
-
* Calls RequestClipImportList.
|
|
13956
|
-
* @param request ImportListRequest message or plain object
|
|
13957
|
-
* @returns Promise
|
|
13958
|
-
*/
|
|
13959
|
-
public requestClipImportList(request: sesame.v1.jobs.IImportListRequest): Promise<sesame.v1.jobs.JobListResponse>;
|
|
13609
|
+
public listJobs(request: sesame.v1.jobs.IJobListRequest): Promise<sesame.v1.jobs.JobList>;
|
|
13960
13610
|
|
|
13961
13611
|
/**
|
|
13962
13612
|
* Calls RequestKeyframe.
|
|
@@ -14032,60 +13682,32 @@ export namespace sesame {
|
|
|
14032
13682
|
type RequestRecorderOperationCallback = (error: (Error|null), response?: sesame.v1.recorder.RecorderResponse) => void;
|
|
14033
13683
|
|
|
14034
13684
|
/**
|
|
14035
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
14036
|
-
* @param error Error, if any
|
|
14037
|
-
* @param [response] JobStatusResponse
|
|
14038
|
-
*/
|
|
14039
|
-
type RequestPlaylistExportStartCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
|
|
14040
|
-
|
|
14041
|
-
/**
|
|
14042
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestPlaylistExportAbort}.
|
|
14043
|
-
* @param error Error, if any
|
|
14044
|
-
* @param [response] JobStatusResponse
|
|
14045
|
-
*/
|
|
14046
|
-
type RequestPlaylistExportAbortCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
|
|
14047
|
-
|
|
14048
|
-
/**
|
|
14049
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestPlaylistExportStatus}.
|
|
14050
|
-
* @param error Error, if any
|
|
14051
|
-
* @param [response] JobStatusResponse
|
|
14052
|
-
*/
|
|
14053
|
-
type RequestPlaylistExportStatusCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
|
|
14054
|
-
|
|
14055
|
-
/**
|
|
14056
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestPlaylistExportList}.
|
|
14057
|
-
* @param error Error, if any
|
|
14058
|
-
* @param [response] JobListResponse
|
|
14059
|
-
*/
|
|
14060
|
-
type RequestPlaylistExportListCallback = (error: (Error|null), response?: sesame.v1.jobs.JobListResponse) => void;
|
|
14061
|
-
|
|
14062
|
-
/**
|
|
14063
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestClipImportStart}.
|
|
13685
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#startJob}.
|
|
14064
13686
|
* @param error Error, if any
|
|
14065
|
-
* @param [response]
|
|
13687
|
+
* @param [response] Job
|
|
14066
13688
|
*/
|
|
14067
|
-
type
|
|
13689
|
+
type StartJobCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
|
|
14068
13690
|
|
|
14069
13691
|
/**
|
|
14070
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13692
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#abortJob}.
|
|
14071
13693
|
* @param error Error, if any
|
|
14072
|
-
* @param [response]
|
|
13694
|
+
* @param [response] Job
|
|
14073
13695
|
*/
|
|
14074
|
-
type
|
|
13696
|
+
type AbortJobCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
|
|
14075
13697
|
|
|
14076
13698
|
/**
|
|
14077
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13699
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#getJobStatus}.
|
|
14078
13700
|
* @param error Error, if any
|
|
14079
|
-
* @param [response]
|
|
13701
|
+
* @param [response] Job
|
|
14080
13702
|
*/
|
|
14081
|
-
type
|
|
13703
|
+
type GetJobStatusCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
|
|
14082
13704
|
|
|
14083
13705
|
/**
|
|
14084
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13706
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#listJobs}.
|
|
14085
13707
|
* @param error Error, if any
|
|
14086
|
-
* @param [response]
|
|
13708
|
+
* @param [response] JobList
|
|
14087
13709
|
*/
|
|
14088
|
-
type
|
|
13710
|
+
type ListJobsCallback = (error: (Error|null), response?: sesame.v1.jobs.JobList) => void;
|
|
14089
13711
|
|
|
14090
13712
|
/**
|
|
14091
13713
|
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestKeyframe}.
|