@temporalio/proto 1.7.1 → 1.7.2
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/package.json +2 -2
- package/protos/json-module.js +206 -51
- package/protos/root.d.ts +1039 -354
package/protos/root.d.ts
CHANGED
|
@@ -7694,6 +7694,192 @@ export namespace temporal {
|
|
|
7694
7694
|
*/
|
|
7695
7695
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7696
7696
|
}
|
|
7697
|
+
|
|
7698
|
+
/** Properties of a WorkerVersionStamp. */
|
|
7699
|
+
interface IWorkerVersionStamp {
|
|
7700
|
+
|
|
7701
|
+
/** WorkerVersionStamp buildId */
|
|
7702
|
+
buildId?: (string|null);
|
|
7703
|
+
|
|
7704
|
+
/** WorkerVersionStamp bundleId */
|
|
7705
|
+
bundleId?: (string|null);
|
|
7706
|
+
}
|
|
7707
|
+
|
|
7708
|
+
/** Represents a WorkerVersionStamp. */
|
|
7709
|
+
class WorkerVersionStamp implements IWorkerVersionStamp {
|
|
7710
|
+
|
|
7711
|
+
/**
|
|
7712
|
+
* Constructs a new WorkerVersionStamp.
|
|
7713
|
+
* @param [properties] Properties to set
|
|
7714
|
+
*/
|
|
7715
|
+
constructor(properties?: temporal.api.common.v1.IWorkerVersionStamp);
|
|
7716
|
+
|
|
7717
|
+
/** WorkerVersionStamp buildId. */
|
|
7718
|
+
public buildId: string;
|
|
7719
|
+
|
|
7720
|
+
/** WorkerVersionStamp bundleId. */
|
|
7721
|
+
public bundleId: string;
|
|
7722
|
+
|
|
7723
|
+
/**
|
|
7724
|
+
* Creates a new WorkerVersionStamp instance using the specified properties.
|
|
7725
|
+
* @param [properties] Properties to set
|
|
7726
|
+
* @returns WorkerVersionStamp instance
|
|
7727
|
+
*/
|
|
7728
|
+
public static create(properties?: temporal.api.common.v1.IWorkerVersionStamp): temporal.api.common.v1.WorkerVersionStamp;
|
|
7729
|
+
|
|
7730
|
+
/**
|
|
7731
|
+
* Encodes the specified WorkerVersionStamp message. Does not implicitly {@link temporal.api.common.v1.WorkerVersionStamp.verify|verify} messages.
|
|
7732
|
+
* @param message WorkerVersionStamp message or plain object to encode
|
|
7733
|
+
* @param [writer] Writer to encode to
|
|
7734
|
+
* @returns Writer
|
|
7735
|
+
*/
|
|
7736
|
+
public static encode(message: temporal.api.common.v1.IWorkerVersionStamp, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7737
|
+
|
|
7738
|
+
/**
|
|
7739
|
+
* Encodes the specified WorkerVersionStamp message, length delimited. Does not implicitly {@link temporal.api.common.v1.WorkerVersionStamp.verify|verify} messages.
|
|
7740
|
+
* @param message WorkerVersionStamp message or plain object to encode
|
|
7741
|
+
* @param [writer] Writer to encode to
|
|
7742
|
+
* @returns Writer
|
|
7743
|
+
*/
|
|
7744
|
+
public static encodeDelimited(message: temporal.api.common.v1.IWorkerVersionStamp, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7745
|
+
|
|
7746
|
+
/**
|
|
7747
|
+
* Decodes a WorkerVersionStamp message from the specified reader or buffer.
|
|
7748
|
+
* @param reader Reader or buffer to decode from
|
|
7749
|
+
* @param [length] Message length if known beforehand
|
|
7750
|
+
* @returns WorkerVersionStamp
|
|
7751
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7752
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7753
|
+
*/
|
|
7754
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.common.v1.WorkerVersionStamp;
|
|
7755
|
+
|
|
7756
|
+
/**
|
|
7757
|
+
* Decodes a WorkerVersionStamp message from the specified reader or buffer, length delimited.
|
|
7758
|
+
* @param reader Reader or buffer to decode from
|
|
7759
|
+
* @returns WorkerVersionStamp
|
|
7760
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7761
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7762
|
+
*/
|
|
7763
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.common.v1.WorkerVersionStamp;
|
|
7764
|
+
|
|
7765
|
+
/**
|
|
7766
|
+
* Creates a WorkerVersionStamp message from a plain object. Also converts values to their respective internal types.
|
|
7767
|
+
* @param object Plain object
|
|
7768
|
+
* @returns WorkerVersionStamp
|
|
7769
|
+
*/
|
|
7770
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.common.v1.WorkerVersionStamp;
|
|
7771
|
+
|
|
7772
|
+
/**
|
|
7773
|
+
* Creates a plain object from a WorkerVersionStamp message. Also converts values to other types if specified.
|
|
7774
|
+
* @param message WorkerVersionStamp
|
|
7775
|
+
* @param [options] Conversion options
|
|
7776
|
+
* @returns Plain object
|
|
7777
|
+
*/
|
|
7778
|
+
public static toObject(message: temporal.api.common.v1.WorkerVersionStamp, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7779
|
+
|
|
7780
|
+
/**
|
|
7781
|
+
* Converts this WorkerVersionStamp to JSON.
|
|
7782
|
+
* @returns JSON object
|
|
7783
|
+
*/
|
|
7784
|
+
public toJSON(): { [k: string]: any };
|
|
7785
|
+
|
|
7786
|
+
/**
|
|
7787
|
+
* Gets the default type url for WorkerVersionStamp
|
|
7788
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7789
|
+
* @returns The default type url
|
|
7790
|
+
*/
|
|
7791
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7792
|
+
}
|
|
7793
|
+
|
|
7794
|
+
/** Properties of a WorkerVersionCapabilities. */
|
|
7795
|
+
interface IWorkerVersionCapabilities {
|
|
7796
|
+
|
|
7797
|
+
/** WorkerVersionCapabilities buildId */
|
|
7798
|
+
buildId?: (string|null);
|
|
7799
|
+
}
|
|
7800
|
+
|
|
7801
|
+
/** Represents a WorkerVersionCapabilities. */
|
|
7802
|
+
class WorkerVersionCapabilities implements IWorkerVersionCapabilities {
|
|
7803
|
+
|
|
7804
|
+
/**
|
|
7805
|
+
* Constructs a new WorkerVersionCapabilities.
|
|
7806
|
+
* @param [properties] Properties to set
|
|
7807
|
+
*/
|
|
7808
|
+
constructor(properties?: temporal.api.common.v1.IWorkerVersionCapabilities);
|
|
7809
|
+
|
|
7810
|
+
/** WorkerVersionCapabilities buildId. */
|
|
7811
|
+
public buildId: string;
|
|
7812
|
+
|
|
7813
|
+
/**
|
|
7814
|
+
* Creates a new WorkerVersionCapabilities instance using the specified properties.
|
|
7815
|
+
* @param [properties] Properties to set
|
|
7816
|
+
* @returns WorkerVersionCapabilities instance
|
|
7817
|
+
*/
|
|
7818
|
+
public static create(properties?: temporal.api.common.v1.IWorkerVersionCapabilities): temporal.api.common.v1.WorkerVersionCapabilities;
|
|
7819
|
+
|
|
7820
|
+
/**
|
|
7821
|
+
* Encodes the specified WorkerVersionCapabilities message. Does not implicitly {@link temporal.api.common.v1.WorkerVersionCapabilities.verify|verify} messages.
|
|
7822
|
+
* @param message WorkerVersionCapabilities message or plain object to encode
|
|
7823
|
+
* @param [writer] Writer to encode to
|
|
7824
|
+
* @returns Writer
|
|
7825
|
+
*/
|
|
7826
|
+
public static encode(message: temporal.api.common.v1.IWorkerVersionCapabilities, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7827
|
+
|
|
7828
|
+
/**
|
|
7829
|
+
* Encodes the specified WorkerVersionCapabilities message, length delimited. Does not implicitly {@link temporal.api.common.v1.WorkerVersionCapabilities.verify|verify} messages.
|
|
7830
|
+
* @param message WorkerVersionCapabilities message or plain object to encode
|
|
7831
|
+
* @param [writer] Writer to encode to
|
|
7832
|
+
* @returns Writer
|
|
7833
|
+
*/
|
|
7834
|
+
public static encodeDelimited(message: temporal.api.common.v1.IWorkerVersionCapabilities, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7835
|
+
|
|
7836
|
+
/**
|
|
7837
|
+
* Decodes a WorkerVersionCapabilities message from the specified reader or buffer.
|
|
7838
|
+
* @param reader Reader or buffer to decode from
|
|
7839
|
+
* @param [length] Message length if known beforehand
|
|
7840
|
+
* @returns WorkerVersionCapabilities
|
|
7841
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7842
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7843
|
+
*/
|
|
7844
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.common.v1.WorkerVersionCapabilities;
|
|
7845
|
+
|
|
7846
|
+
/**
|
|
7847
|
+
* Decodes a WorkerVersionCapabilities message from the specified reader or buffer, length delimited.
|
|
7848
|
+
* @param reader Reader or buffer to decode from
|
|
7849
|
+
* @returns WorkerVersionCapabilities
|
|
7850
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7851
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7852
|
+
*/
|
|
7853
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.common.v1.WorkerVersionCapabilities;
|
|
7854
|
+
|
|
7855
|
+
/**
|
|
7856
|
+
* Creates a WorkerVersionCapabilities message from a plain object. Also converts values to their respective internal types.
|
|
7857
|
+
* @param object Plain object
|
|
7858
|
+
* @returns WorkerVersionCapabilities
|
|
7859
|
+
*/
|
|
7860
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.common.v1.WorkerVersionCapabilities;
|
|
7861
|
+
|
|
7862
|
+
/**
|
|
7863
|
+
* Creates a plain object from a WorkerVersionCapabilities message. Also converts values to other types if specified.
|
|
7864
|
+
* @param message WorkerVersionCapabilities
|
|
7865
|
+
* @param [options] Conversion options
|
|
7866
|
+
* @returns Plain object
|
|
7867
|
+
*/
|
|
7868
|
+
public static toObject(message: temporal.api.common.v1.WorkerVersionCapabilities, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7869
|
+
|
|
7870
|
+
/**
|
|
7871
|
+
* Converts this WorkerVersionCapabilities to JSON.
|
|
7872
|
+
* @returns JSON object
|
|
7873
|
+
*/
|
|
7874
|
+
public toJSON(): { [k: string]: any };
|
|
7875
|
+
|
|
7876
|
+
/**
|
|
7877
|
+
* Gets the default type url for WorkerVersionCapabilities
|
|
7878
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7879
|
+
* @returns The default type url
|
|
7880
|
+
*/
|
|
7881
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7882
|
+
}
|
|
7697
7883
|
}
|
|
7698
7884
|
}
|
|
7699
7885
|
|
|
@@ -7864,7 +8050,8 @@ export namespace temporal {
|
|
|
7864
8050
|
enum SignalExternalWorkflowExecutionFailedCause {
|
|
7865
8051
|
SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED_CAUSE_UNSPECIFIED = 0,
|
|
7866
8052
|
SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED_CAUSE_EXTERNAL_WORKFLOW_EXECUTION_NOT_FOUND = 1,
|
|
7867
|
-
SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED_CAUSE_NAMESPACE_NOT_FOUND = 2
|
|
8053
|
+
SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED_CAUSE_NAMESPACE_NOT_FOUND = 2,
|
|
8054
|
+
SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED_CAUSE_SIGNAL_COUNT_LIMIT_EXCEEDED = 3
|
|
7868
8055
|
}
|
|
7869
8056
|
|
|
7870
8057
|
/** ResourceExhaustedCause enum. */
|
|
@@ -9707,32 +9894,32 @@ export namespace temporal {
|
|
|
9707
9894
|
public listSchedules(request: temporal.api.workflowservice.v1.IListSchedulesRequest): Promise<temporal.api.workflowservice.v1.ListSchedulesResponse>;
|
|
9708
9895
|
|
|
9709
9896
|
/**
|
|
9710
|
-
* Calls
|
|
9711
|
-
* @param request
|
|
9712
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
9897
|
+
* Calls UpdateWorkerBuildIdCompatibility.
|
|
9898
|
+
* @param request UpdateWorkerBuildIdCompatibilityRequest message or plain object
|
|
9899
|
+
* @param callback Node-style callback called with the error, if any, and UpdateWorkerBuildIdCompatibilityResponse
|
|
9713
9900
|
*/
|
|
9714
|
-
public
|
|
9901
|
+
public updateWorkerBuildIdCompatibility(request: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityRequest, callback: temporal.api.workflowservice.v1.WorkflowService.UpdateWorkerBuildIdCompatibilityCallback): void;
|
|
9715
9902
|
|
|
9716
9903
|
/**
|
|
9717
|
-
* Calls
|
|
9718
|
-
* @param request
|
|
9904
|
+
* Calls UpdateWorkerBuildIdCompatibility.
|
|
9905
|
+
* @param request UpdateWorkerBuildIdCompatibilityRequest message or plain object
|
|
9719
9906
|
* @returns Promise
|
|
9720
9907
|
*/
|
|
9721
|
-
public
|
|
9908
|
+
public updateWorkerBuildIdCompatibility(request: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityRequest): Promise<temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse>;
|
|
9722
9909
|
|
|
9723
9910
|
/**
|
|
9724
|
-
* Calls
|
|
9725
|
-
* @param request
|
|
9726
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
9911
|
+
* Calls GetWorkerBuildIdCompatibility.
|
|
9912
|
+
* @param request GetWorkerBuildIdCompatibilityRequest message or plain object
|
|
9913
|
+
* @param callback Node-style callback called with the error, if any, and GetWorkerBuildIdCompatibilityResponse
|
|
9727
9914
|
*/
|
|
9728
|
-
public
|
|
9915
|
+
public getWorkerBuildIdCompatibility(request: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityRequest, callback: temporal.api.workflowservice.v1.WorkflowService.GetWorkerBuildIdCompatibilityCallback): void;
|
|
9729
9916
|
|
|
9730
9917
|
/**
|
|
9731
|
-
* Calls
|
|
9732
|
-
* @param request
|
|
9918
|
+
* Calls GetWorkerBuildIdCompatibility.
|
|
9919
|
+
* @param request GetWorkerBuildIdCompatibilityRequest message or plain object
|
|
9733
9920
|
* @returns Promise
|
|
9734
9921
|
*/
|
|
9735
|
-
public
|
|
9922
|
+
public getWorkerBuildIdCompatibility(request: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityRequest): Promise<temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse>;
|
|
9736
9923
|
|
|
9737
9924
|
/**
|
|
9738
9925
|
* Calls UpdateWorkflowExecution.
|
|
@@ -9748,6 +9935,20 @@ export namespace temporal {
|
|
|
9748
9935
|
*/
|
|
9749
9936
|
public updateWorkflowExecution(request: temporal.api.workflowservice.v1.IUpdateWorkflowExecutionRequest): Promise<temporal.api.workflowservice.v1.UpdateWorkflowExecutionResponse>;
|
|
9750
9937
|
|
|
9938
|
+
/**
|
|
9939
|
+
* Calls PollWorkflowExecutionUpdate.
|
|
9940
|
+
* @param request PollWorkflowExecutionUpdateRequest message or plain object
|
|
9941
|
+
* @param callback Node-style callback called with the error, if any, and PollWorkflowExecutionUpdateResponse
|
|
9942
|
+
*/
|
|
9943
|
+
public pollWorkflowExecutionUpdate(request: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateRequest, callback: temporal.api.workflowservice.v1.WorkflowService.PollWorkflowExecutionUpdateCallback): void;
|
|
9944
|
+
|
|
9945
|
+
/**
|
|
9946
|
+
* Calls PollWorkflowExecutionUpdate.
|
|
9947
|
+
* @param request PollWorkflowExecutionUpdateRequest message or plain object
|
|
9948
|
+
* @returns Promise
|
|
9949
|
+
*/
|
|
9950
|
+
public pollWorkflowExecutionUpdate(request: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateRequest): Promise<temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse>;
|
|
9951
|
+
|
|
9751
9952
|
/**
|
|
9752
9953
|
* Calls StartBatchOperation.
|
|
9753
9954
|
* @param request StartBatchOperationRequest message or plain object
|
|
@@ -10144,18 +10345,18 @@ export namespace temporal {
|
|
|
10144
10345
|
type ListSchedulesCallback = (error: (Error|null), response?: temporal.api.workflowservice.v1.ListSchedulesResponse) => void;
|
|
10145
10346
|
|
|
10146
10347
|
/**
|
|
10147
|
-
* Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#
|
|
10348
|
+
* Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#updateWorkerBuildIdCompatibility}.
|
|
10148
10349
|
* @param error Error, if any
|
|
10149
|
-
* @param [response]
|
|
10350
|
+
* @param [response] UpdateWorkerBuildIdCompatibilityResponse
|
|
10150
10351
|
*/
|
|
10151
|
-
type
|
|
10352
|
+
type UpdateWorkerBuildIdCompatibilityCallback = (error: (Error|null), response?: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse) => void;
|
|
10152
10353
|
|
|
10153
10354
|
/**
|
|
10154
|
-
* Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#
|
|
10355
|
+
* Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#getWorkerBuildIdCompatibility}.
|
|
10155
10356
|
* @param error Error, if any
|
|
10156
|
-
* @param [response]
|
|
10357
|
+
* @param [response] GetWorkerBuildIdCompatibilityResponse
|
|
10157
10358
|
*/
|
|
10158
|
-
type
|
|
10359
|
+
type GetWorkerBuildIdCompatibilityCallback = (error: (Error|null), response?: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse) => void;
|
|
10159
10360
|
|
|
10160
10361
|
/**
|
|
10161
10362
|
* Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#updateWorkflowExecution}.
|
|
@@ -10164,6 +10365,13 @@ export namespace temporal {
|
|
|
10164
10365
|
*/
|
|
10165
10366
|
type UpdateWorkflowExecutionCallback = (error: (Error|null), response?: temporal.api.workflowservice.v1.UpdateWorkflowExecutionResponse) => void;
|
|
10166
10367
|
|
|
10368
|
+
/**
|
|
10369
|
+
* Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#pollWorkflowExecutionUpdate}.
|
|
10370
|
+
* @param error Error, if any
|
|
10371
|
+
* @param [response] PollWorkflowExecutionUpdateResponse
|
|
10372
|
+
*/
|
|
10373
|
+
type PollWorkflowExecutionUpdateCallback = (error: (Error|null), response?: temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse) => void;
|
|
10374
|
+
|
|
10167
10375
|
/**
|
|
10168
10376
|
* Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#startBatchOperation}.
|
|
10169
10377
|
* @param error Error, if any
|
|
@@ -11332,6 +11540,9 @@ export namespace temporal {
|
|
|
11332
11540
|
|
|
11333
11541
|
/** StartWorkflowExecutionRequest lastCompletionResult */
|
|
11334
11542
|
lastCompletionResult?: (temporal.api.common.v1.IPayloads|null);
|
|
11543
|
+
|
|
11544
|
+
/** StartWorkflowExecutionRequest workflowStartDelay */
|
|
11545
|
+
workflowStartDelay?: (google.protobuf.IDuration|null);
|
|
11335
11546
|
}
|
|
11336
11547
|
|
|
11337
11548
|
/** Represents a StartWorkflowExecutionRequest. */
|
|
@@ -11400,6 +11611,9 @@ export namespace temporal {
|
|
|
11400
11611
|
/** StartWorkflowExecutionRequest lastCompletionResult. */
|
|
11401
11612
|
public lastCompletionResult?: (temporal.api.common.v1.IPayloads|null);
|
|
11402
11613
|
|
|
11614
|
+
/** StartWorkflowExecutionRequest workflowStartDelay. */
|
|
11615
|
+
public workflowStartDelay?: (google.protobuf.IDuration|null);
|
|
11616
|
+
|
|
11403
11617
|
/**
|
|
11404
11618
|
* Creates a new StartWorkflowExecutionRequest instance using the specified properties.
|
|
11405
11619
|
* @param [properties] Properties to set
|
|
@@ -12020,8 +12234,8 @@ export namespace temporal {
|
|
|
12020
12234
|
/** PollWorkflowTaskQueueRequest binaryChecksum */
|
|
12021
12235
|
binaryChecksum?: (string|null);
|
|
12022
12236
|
|
|
12023
|
-
/** PollWorkflowTaskQueueRequest
|
|
12024
|
-
|
|
12237
|
+
/** PollWorkflowTaskQueueRequest workerVersionCapabilities */
|
|
12238
|
+
workerVersionCapabilities?: (temporal.api.common.v1.IWorkerVersionCapabilities|null);
|
|
12025
12239
|
}
|
|
12026
12240
|
|
|
12027
12241
|
/** Represents a PollWorkflowTaskQueueRequest. */
|
|
@@ -12045,8 +12259,8 @@ export namespace temporal {
|
|
|
12045
12259
|
/** PollWorkflowTaskQueueRequest binaryChecksum. */
|
|
12046
12260
|
public binaryChecksum: string;
|
|
12047
12261
|
|
|
12048
|
-
/** PollWorkflowTaskQueueRequest
|
|
12049
|
-
public
|
|
12262
|
+
/** PollWorkflowTaskQueueRequest workerVersionCapabilities. */
|
|
12263
|
+
public workerVersionCapabilities?: (temporal.api.common.v1.IWorkerVersionCapabilities|null);
|
|
12050
12264
|
|
|
12051
12265
|
/**
|
|
12052
12266
|
* Creates a new PollWorkflowTaskQueueRequest instance using the specified properties.
|
|
@@ -12323,8 +12537,8 @@ export namespace temporal {
|
|
|
12323
12537
|
/** RespondWorkflowTaskCompletedRequest namespace */
|
|
12324
12538
|
namespace?: (string|null);
|
|
12325
12539
|
|
|
12326
|
-
/** RespondWorkflowTaskCompletedRequest
|
|
12327
|
-
|
|
12540
|
+
/** RespondWorkflowTaskCompletedRequest workerVersionStamp */
|
|
12541
|
+
workerVersionStamp?: (temporal.api.common.v1.IWorkerVersionStamp|null);
|
|
12328
12542
|
|
|
12329
12543
|
/** RespondWorkflowTaskCompletedRequest messages */
|
|
12330
12544
|
messages?: (temporal.api.protocol.v1.IMessage[]|null);
|
|
@@ -12372,8 +12586,8 @@ export namespace temporal {
|
|
|
12372
12586
|
/** RespondWorkflowTaskCompletedRequest namespace. */
|
|
12373
12587
|
public namespace: string;
|
|
12374
12588
|
|
|
12375
|
-
/** RespondWorkflowTaskCompletedRequest
|
|
12376
|
-
public
|
|
12589
|
+
/** RespondWorkflowTaskCompletedRequest workerVersionStamp. */
|
|
12590
|
+
public workerVersionStamp?: (temporal.api.common.v1.IWorkerVersionStamp|null);
|
|
12377
12591
|
|
|
12378
12592
|
/** RespondWorkflowTaskCompletedRequest messages. */
|
|
12379
12593
|
public messages: temporal.api.protocol.v1.IMessage[];
|
|
@@ -12782,8 +12996,8 @@ export namespace temporal {
|
|
|
12782
12996
|
/** PollActivityTaskQueueRequest taskQueueMetadata */
|
|
12783
12997
|
taskQueueMetadata?: (temporal.api.taskqueue.v1.ITaskQueueMetadata|null);
|
|
12784
12998
|
|
|
12785
|
-
/** PollActivityTaskQueueRequest
|
|
12786
|
-
|
|
12999
|
+
/** PollActivityTaskQueueRequest workerVersionCapabilities */
|
|
13000
|
+
workerVersionCapabilities?: (temporal.api.common.v1.IWorkerVersionCapabilities|null);
|
|
12787
13001
|
}
|
|
12788
13002
|
|
|
12789
13003
|
/** Represents a PollActivityTaskQueueRequest. */
|
|
@@ -12807,8 +13021,8 @@ export namespace temporal {
|
|
|
12807
13021
|
/** PollActivityTaskQueueRequest taskQueueMetadata. */
|
|
12808
13022
|
public taskQueueMetadata?: (temporal.api.taskqueue.v1.ITaskQueueMetadata|null);
|
|
12809
13023
|
|
|
12810
|
-
/** PollActivityTaskQueueRequest
|
|
12811
|
-
public
|
|
13024
|
+
/** PollActivityTaskQueueRequest workerVersionCapabilities. */
|
|
13025
|
+
public workerVersionCapabilities?: (temporal.api.common.v1.IWorkerVersionCapabilities|null);
|
|
12812
13026
|
|
|
12813
13027
|
/**
|
|
12814
13028
|
* Creates a new PollActivityTaskQueueRequest instance using the specified properties.
|
|
@@ -14917,6 +15131,9 @@ export namespace temporal {
|
|
|
14917
15131
|
|
|
14918
15132
|
/** SignalWorkflowExecutionRequest header */
|
|
14919
15133
|
header?: (temporal.api.common.v1.IHeader|null);
|
|
15134
|
+
|
|
15135
|
+
/** SignalWorkflowExecutionRequest skipGenerateWorkflowTask */
|
|
15136
|
+
skipGenerateWorkflowTask?: (boolean|null);
|
|
14920
15137
|
}
|
|
14921
15138
|
|
|
14922
15139
|
/** Represents a SignalWorkflowExecutionRequest. */
|
|
@@ -14952,6 +15169,9 @@ export namespace temporal {
|
|
|
14952
15169
|
/** SignalWorkflowExecutionRequest header. */
|
|
14953
15170
|
public header?: (temporal.api.common.v1.IHeader|null);
|
|
14954
15171
|
|
|
15172
|
+
/** SignalWorkflowExecutionRequest skipGenerateWorkflowTask. */
|
|
15173
|
+
public skipGenerateWorkflowTask: boolean;
|
|
15174
|
+
|
|
14955
15175
|
/**
|
|
14956
15176
|
* Creates a new SignalWorkflowExecutionRequest instance using the specified properties.
|
|
14957
15177
|
* @param [properties] Properties to set
|
|
@@ -15166,6 +15386,12 @@ export namespace temporal {
|
|
|
15166
15386
|
|
|
15167
15387
|
/** SignalWithStartWorkflowExecutionRequest header */
|
|
15168
15388
|
header?: (temporal.api.common.v1.IHeader|null);
|
|
15389
|
+
|
|
15390
|
+
/** SignalWithStartWorkflowExecutionRequest workflowStartDelay */
|
|
15391
|
+
workflowStartDelay?: (google.protobuf.IDuration|null);
|
|
15392
|
+
|
|
15393
|
+
/** SignalWithStartWorkflowExecutionRequest skipGenerateWorkflowTask */
|
|
15394
|
+
skipGenerateWorkflowTask?: (boolean|null);
|
|
15169
15395
|
}
|
|
15170
15396
|
|
|
15171
15397
|
/** Represents a SignalWithStartWorkflowExecutionRequest. */
|
|
@@ -15234,6 +15460,12 @@ export namespace temporal {
|
|
|
15234
15460
|
/** SignalWithStartWorkflowExecutionRequest header. */
|
|
15235
15461
|
public header?: (temporal.api.common.v1.IHeader|null);
|
|
15236
15462
|
|
|
15463
|
+
/** SignalWithStartWorkflowExecutionRequest workflowStartDelay. */
|
|
15464
|
+
public workflowStartDelay?: (google.protobuf.IDuration|null);
|
|
15465
|
+
|
|
15466
|
+
/** SignalWithStartWorkflowExecutionRequest skipGenerateWorkflowTask. */
|
|
15467
|
+
public skipGenerateWorkflowTask: boolean;
|
|
15468
|
+
|
|
15237
15469
|
/**
|
|
15238
15470
|
* Creates a new SignalWithStartWorkflowExecutionRequest instance using the specified properties.
|
|
15239
15471
|
* @param [properties] Properties to set
|
|
@@ -20546,447 +20778,786 @@ export namespace temporal {
|
|
|
20546
20778
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
20547
20779
|
}
|
|
20548
20780
|
|
|
20549
|
-
/** Properties of an
|
|
20550
|
-
interface
|
|
20781
|
+
/** Properties of an UpdateWorkerBuildIdCompatibilityRequest. */
|
|
20782
|
+
interface IUpdateWorkerBuildIdCompatibilityRequest {
|
|
20551
20783
|
|
|
20552
|
-
/**
|
|
20784
|
+
/** UpdateWorkerBuildIdCompatibilityRequest namespace */
|
|
20553
20785
|
namespace?: (string|null);
|
|
20554
20786
|
|
|
20555
|
-
/**
|
|
20787
|
+
/** UpdateWorkerBuildIdCompatibilityRequest taskQueue */
|
|
20556
20788
|
taskQueue?: (string|null);
|
|
20557
20789
|
|
|
20558
|
-
/**
|
|
20559
|
-
|
|
20790
|
+
/** UpdateWorkerBuildIdCompatibilityRequest addNewBuildIdInNewDefaultSet */
|
|
20791
|
+
addNewBuildIdInNewDefaultSet?: (string|null);
|
|
20792
|
+
|
|
20793
|
+
/** UpdateWorkerBuildIdCompatibilityRequest addNewCompatibleBuildId */
|
|
20794
|
+
addNewCompatibleBuildId?: (temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.IAddNewCompatibleVersion|null);
|
|
20560
20795
|
|
|
20561
|
-
/**
|
|
20562
|
-
|
|
20796
|
+
/** UpdateWorkerBuildIdCompatibilityRequest promoteSetByBuildId */
|
|
20797
|
+
promoteSetByBuildId?: (string|null);
|
|
20563
20798
|
|
|
20564
|
-
/**
|
|
20565
|
-
|
|
20799
|
+
/** UpdateWorkerBuildIdCompatibilityRequest promoteBuildIdWithinSet */
|
|
20800
|
+
promoteBuildIdWithinSet?: (string|null);
|
|
20566
20801
|
}
|
|
20567
20802
|
|
|
20568
|
-
/** Represents an
|
|
20569
|
-
class
|
|
20803
|
+
/** Represents an UpdateWorkerBuildIdCompatibilityRequest. */
|
|
20804
|
+
class UpdateWorkerBuildIdCompatibilityRequest implements IUpdateWorkerBuildIdCompatibilityRequest {
|
|
20570
20805
|
|
|
20571
20806
|
/**
|
|
20572
|
-
* Constructs a new
|
|
20807
|
+
* Constructs a new UpdateWorkerBuildIdCompatibilityRequest.
|
|
20573
20808
|
* @param [properties] Properties to set
|
|
20574
20809
|
*/
|
|
20575
|
-
constructor(properties?: temporal.api.workflowservice.v1.
|
|
20810
|
+
constructor(properties?: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityRequest);
|
|
20576
20811
|
|
|
20577
|
-
/**
|
|
20812
|
+
/** UpdateWorkerBuildIdCompatibilityRequest namespace. */
|
|
20578
20813
|
public namespace: string;
|
|
20579
20814
|
|
|
20580
|
-
/**
|
|
20815
|
+
/** UpdateWorkerBuildIdCompatibilityRequest taskQueue. */
|
|
20581
20816
|
public taskQueue: string;
|
|
20582
20817
|
|
|
20583
|
-
/**
|
|
20584
|
-
public
|
|
20818
|
+
/** UpdateWorkerBuildIdCompatibilityRequest addNewBuildIdInNewDefaultSet. */
|
|
20819
|
+
public addNewBuildIdInNewDefaultSet?: (string|null);
|
|
20585
20820
|
|
|
20586
|
-
/**
|
|
20587
|
-
public
|
|
20821
|
+
/** UpdateWorkerBuildIdCompatibilityRequest addNewCompatibleBuildId. */
|
|
20822
|
+
public addNewCompatibleBuildId?: (temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.IAddNewCompatibleVersion|null);
|
|
20588
20823
|
|
|
20589
|
-
/**
|
|
20590
|
-
public
|
|
20824
|
+
/** UpdateWorkerBuildIdCompatibilityRequest promoteSetByBuildId. */
|
|
20825
|
+
public promoteSetByBuildId?: (string|null);
|
|
20826
|
+
|
|
20827
|
+
/** UpdateWorkerBuildIdCompatibilityRequest promoteBuildIdWithinSet. */
|
|
20828
|
+
public promoteBuildIdWithinSet?: (string|null);
|
|
20829
|
+
|
|
20830
|
+
/** UpdateWorkerBuildIdCompatibilityRequest operation. */
|
|
20831
|
+
public operation?: ("addNewBuildIdInNewDefaultSet"|"addNewCompatibleBuildId"|"promoteSetByBuildId"|"promoteBuildIdWithinSet");
|
|
20591
20832
|
|
|
20592
20833
|
/**
|
|
20593
|
-
* Creates a new
|
|
20834
|
+
* Creates a new UpdateWorkerBuildIdCompatibilityRequest instance using the specified properties.
|
|
20594
20835
|
* @param [properties] Properties to set
|
|
20595
|
-
* @returns
|
|
20836
|
+
* @returns UpdateWorkerBuildIdCompatibilityRequest instance
|
|
20596
20837
|
*/
|
|
20597
|
-
public static create(properties?: temporal.api.workflowservice.v1.
|
|
20838
|
+
public static create(properties?: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityRequest): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest;
|
|
20598
20839
|
|
|
20599
20840
|
/**
|
|
20600
|
-
* Encodes the specified
|
|
20601
|
-
* @param message
|
|
20841
|
+
* Encodes the specified UpdateWorkerBuildIdCompatibilityRequest message. Does not implicitly {@link temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.verify|verify} messages.
|
|
20842
|
+
* @param message UpdateWorkerBuildIdCompatibilityRequest message or plain object to encode
|
|
20602
20843
|
* @param [writer] Writer to encode to
|
|
20603
20844
|
* @returns Writer
|
|
20604
20845
|
*/
|
|
20605
|
-
public static encode(message: temporal.api.workflowservice.v1.
|
|
20846
|
+
public static encode(message: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20606
20847
|
|
|
20607
20848
|
/**
|
|
20608
|
-
* Encodes the specified
|
|
20609
|
-
* @param message
|
|
20849
|
+
* Encodes the specified UpdateWorkerBuildIdCompatibilityRequest message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.verify|verify} messages.
|
|
20850
|
+
* @param message UpdateWorkerBuildIdCompatibilityRequest message or plain object to encode
|
|
20610
20851
|
* @param [writer] Writer to encode to
|
|
20611
20852
|
* @returns Writer
|
|
20612
20853
|
*/
|
|
20613
|
-
public static encodeDelimited(message: temporal.api.workflowservice.v1.
|
|
20854
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20614
20855
|
|
|
20615
20856
|
/**
|
|
20616
|
-
* Decodes an
|
|
20857
|
+
* Decodes an UpdateWorkerBuildIdCompatibilityRequest message from the specified reader or buffer.
|
|
20617
20858
|
* @param reader Reader or buffer to decode from
|
|
20618
20859
|
* @param [length] Message length if known beforehand
|
|
20619
|
-
* @returns
|
|
20860
|
+
* @returns UpdateWorkerBuildIdCompatibilityRequest
|
|
20620
20861
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20621
20862
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20622
20863
|
*/
|
|
20623
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.
|
|
20864
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest;
|
|
20624
20865
|
|
|
20625
20866
|
/**
|
|
20626
|
-
* Decodes an
|
|
20867
|
+
* Decodes an UpdateWorkerBuildIdCompatibilityRequest message from the specified reader or buffer, length delimited.
|
|
20627
20868
|
* @param reader Reader or buffer to decode from
|
|
20628
|
-
* @returns
|
|
20869
|
+
* @returns UpdateWorkerBuildIdCompatibilityRequest
|
|
20629
20870
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20630
20871
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20631
20872
|
*/
|
|
20632
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.
|
|
20873
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest;
|
|
20633
20874
|
|
|
20634
20875
|
/**
|
|
20635
|
-
* Creates an
|
|
20876
|
+
* Creates an UpdateWorkerBuildIdCompatibilityRequest message from a plain object. Also converts values to their respective internal types.
|
|
20636
20877
|
* @param object Plain object
|
|
20637
|
-
* @returns
|
|
20878
|
+
* @returns UpdateWorkerBuildIdCompatibilityRequest
|
|
20638
20879
|
*/
|
|
20639
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.
|
|
20880
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest;
|
|
20640
20881
|
|
|
20641
20882
|
/**
|
|
20642
|
-
* Creates a plain object from an
|
|
20643
|
-
* @param message
|
|
20883
|
+
* Creates a plain object from an UpdateWorkerBuildIdCompatibilityRequest message. Also converts values to other types if specified.
|
|
20884
|
+
* @param message UpdateWorkerBuildIdCompatibilityRequest
|
|
20644
20885
|
* @param [options] Conversion options
|
|
20645
20886
|
* @returns Plain object
|
|
20646
20887
|
*/
|
|
20647
|
-
public static toObject(message: temporal.api.workflowservice.v1.
|
|
20888
|
+
public static toObject(message: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
20648
20889
|
|
|
20649
20890
|
/**
|
|
20650
|
-
* Converts this
|
|
20891
|
+
* Converts this UpdateWorkerBuildIdCompatibilityRequest to JSON.
|
|
20651
20892
|
* @returns JSON object
|
|
20652
20893
|
*/
|
|
20653
20894
|
public toJSON(): { [k: string]: any };
|
|
20654
20895
|
|
|
20655
20896
|
/**
|
|
20656
|
-
* Gets the default type url for
|
|
20897
|
+
* Gets the default type url for UpdateWorkerBuildIdCompatibilityRequest
|
|
20657
20898
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
20658
20899
|
* @returns The default type url
|
|
20659
20900
|
*/
|
|
20660
20901
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
20661
20902
|
}
|
|
20662
20903
|
|
|
20663
|
-
|
|
20664
|
-
|
|
20904
|
+
namespace UpdateWorkerBuildIdCompatibilityRequest {
|
|
20905
|
+
|
|
20906
|
+
/** Properties of an AddNewCompatibleVersion. */
|
|
20907
|
+
interface IAddNewCompatibleVersion {
|
|
20908
|
+
|
|
20909
|
+
/** AddNewCompatibleVersion newBuildId */
|
|
20910
|
+
newBuildId?: (string|null);
|
|
20911
|
+
|
|
20912
|
+
/** AddNewCompatibleVersion existingCompatibleBuildId */
|
|
20913
|
+
existingCompatibleBuildId?: (string|null);
|
|
20914
|
+
|
|
20915
|
+
/** AddNewCompatibleVersion makeSetDefault */
|
|
20916
|
+
makeSetDefault?: (boolean|null);
|
|
20917
|
+
}
|
|
20918
|
+
|
|
20919
|
+
/** Represents an AddNewCompatibleVersion. */
|
|
20920
|
+
class AddNewCompatibleVersion implements IAddNewCompatibleVersion {
|
|
20921
|
+
|
|
20922
|
+
/**
|
|
20923
|
+
* Constructs a new AddNewCompatibleVersion.
|
|
20924
|
+
* @param [properties] Properties to set
|
|
20925
|
+
*/
|
|
20926
|
+
constructor(properties?: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.IAddNewCompatibleVersion);
|
|
20927
|
+
|
|
20928
|
+
/** AddNewCompatibleVersion newBuildId. */
|
|
20929
|
+
public newBuildId: string;
|
|
20930
|
+
|
|
20931
|
+
/** AddNewCompatibleVersion existingCompatibleBuildId. */
|
|
20932
|
+
public existingCompatibleBuildId: string;
|
|
20933
|
+
|
|
20934
|
+
/** AddNewCompatibleVersion makeSetDefault. */
|
|
20935
|
+
public makeSetDefault: boolean;
|
|
20936
|
+
|
|
20937
|
+
/**
|
|
20938
|
+
* Creates a new AddNewCompatibleVersion instance using the specified properties.
|
|
20939
|
+
* @param [properties] Properties to set
|
|
20940
|
+
* @returns AddNewCompatibleVersion instance
|
|
20941
|
+
*/
|
|
20942
|
+
public static create(properties?: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.IAddNewCompatibleVersion): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion;
|
|
20943
|
+
|
|
20944
|
+
/**
|
|
20945
|
+
* Encodes the specified AddNewCompatibleVersion message. Does not implicitly {@link temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion.verify|verify} messages.
|
|
20946
|
+
* @param message AddNewCompatibleVersion message or plain object to encode
|
|
20947
|
+
* @param [writer] Writer to encode to
|
|
20948
|
+
* @returns Writer
|
|
20949
|
+
*/
|
|
20950
|
+
public static encode(message: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.IAddNewCompatibleVersion, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20951
|
+
|
|
20952
|
+
/**
|
|
20953
|
+
* Encodes the specified AddNewCompatibleVersion message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion.verify|verify} messages.
|
|
20954
|
+
* @param message AddNewCompatibleVersion message or plain object to encode
|
|
20955
|
+
* @param [writer] Writer to encode to
|
|
20956
|
+
* @returns Writer
|
|
20957
|
+
*/
|
|
20958
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.IAddNewCompatibleVersion, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20959
|
+
|
|
20960
|
+
/**
|
|
20961
|
+
* Decodes an AddNewCompatibleVersion message from the specified reader or buffer.
|
|
20962
|
+
* @param reader Reader or buffer to decode from
|
|
20963
|
+
* @param [length] Message length if known beforehand
|
|
20964
|
+
* @returns AddNewCompatibleVersion
|
|
20965
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20966
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20967
|
+
*/
|
|
20968
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion;
|
|
20969
|
+
|
|
20970
|
+
/**
|
|
20971
|
+
* Decodes an AddNewCompatibleVersion message from the specified reader or buffer, length delimited.
|
|
20972
|
+
* @param reader Reader or buffer to decode from
|
|
20973
|
+
* @returns AddNewCompatibleVersion
|
|
20974
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20975
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20976
|
+
*/
|
|
20977
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion;
|
|
20978
|
+
|
|
20979
|
+
/**
|
|
20980
|
+
* Creates an AddNewCompatibleVersion message from a plain object. Also converts values to their respective internal types.
|
|
20981
|
+
* @param object Plain object
|
|
20982
|
+
* @returns AddNewCompatibleVersion
|
|
20983
|
+
*/
|
|
20984
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion;
|
|
20985
|
+
|
|
20986
|
+
/**
|
|
20987
|
+
* Creates a plain object from an AddNewCompatibleVersion message. Also converts values to other types if specified.
|
|
20988
|
+
* @param message AddNewCompatibleVersion
|
|
20989
|
+
* @param [options] Conversion options
|
|
20990
|
+
* @returns Plain object
|
|
20991
|
+
*/
|
|
20992
|
+
public static toObject(message: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
20993
|
+
|
|
20994
|
+
/**
|
|
20995
|
+
* Converts this AddNewCompatibleVersion to JSON.
|
|
20996
|
+
* @returns JSON object
|
|
20997
|
+
*/
|
|
20998
|
+
public toJSON(): { [k: string]: any };
|
|
20999
|
+
|
|
21000
|
+
/**
|
|
21001
|
+
* Gets the default type url for AddNewCompatibleVersion
|
|
21002
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21003
|
+
* @returns The default type url
|
|
21004
|
+
*/
|
|
21005
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21006
|
+
}
|
|
21007
|
+
}
|
|
21008
|
+
|
|
21009
|
+
/** Properties of an UpdateWorkerBuildIdCompatibilityResponse. */
|
|
21010
|
+
interface IUpdateWorkerBuildIdCompatibilityResponse {
|
|
21011
|
+
|
|
21012
|
+
/** UpdateWorkerBuildIdCompatibilityResponse versionSetId */
|
|
21013
|
+
versionSetId?: (string|null);
|
|
20665
21014
|
}
|
|
20666
21015
|
|
|
20667
|
-
/** Represents an
|
|
20668
|
-
class
|
|
21016
|
+
/** Represents an UpdateWorkerBuildIdCompatibilityResponse. */
|
|
21017
|
+
class UpdateWorkerBuildIdCompatibilityResponse implements IUpdateWorkerBuildIdCompatibilityResponse {
|
|
20669
21018
|
|
|
20670
21019
|
/**
|
|
20671
|
-
* Constructs a new
|
|
21020
|
+
* Constructs a new UpdateWorkerBuildIdCompatibilityResponse.
|
|
20672
21021
|
* @param [properties] Properties to set
|
|
20673
21022
|
*/
|
|
20674
|
-
constructor(properties?: temporal.api.workflowservice.v1.
|
|
21023
|
+
constructor(properties?: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityResponse);
|
|
21024
|
+
|
|
21025
|
+
/** UpdateWorkerBuildIdCompatibilityResponse versionSetId. */
|
|
21026
|
+
public versionSetId: string;
|
|
20675
21027
|
|
|
20676
21028
|
/**
|
|
20677
|
-
* Creates a new
|
|
21029
|
+
* Creates a new UpdateWorkerBuildIdCompatibilityResponse instance using the specified properties.
|
|
20678
21030
|
* @param [properties] Properties to set
|
|
20679
|
-
* @returns
|
|
21031
|
+
* @returns UpdateWorkerBuildIdCompatibilityResponse instance
|
|
20680
21032
|
*/
|
|
20681
|
-
public static create(properties?: temporal.api.workflowservice.v1.
|
|
21033
|
+
public static create(properties?: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityResponse): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse;
|
|
20682
21034
|
|
|
20683
21035
|
/**
|
|
20684
|
-
* Encodes the specified
|
|
20685
|
-
* @param message
|
|
21036
|
+
* Encodes the specified UpdateWorkerBuildIdCompatibilityResponse message. Does not implicitly {@link temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse.verify|verify} messages.
|
|
21037
|
+
* @param message UpdateWorkerBuildIdCompatibilityResponse message or plain object to encode
|
|
20686
21038
|
* @param [writer] Writer to encode to
|
|
20687
21039
|
* @returns Writer
|
|
20688
21040
|
*/
|
|
20689
|
-
public static encode(message: temporal.api.workflowservice.v1.
|
|
21041
|
+
public static encode(message: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20690
21042
|
|
|
20691
21043
|
/**
|
|
20692
|
-
* Encodes the specified
|
|
20693
|
-
* @param message
|
|
21044
|
+
* Encodes the specified UpdateWorkerBuildIdCompatibilityResponse message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse.verify|verify} messages.
|
|
21045
|
+
* @param message UpdateWorkerBuildIdCompatibilityResponse message or plain object to encode
|
|
20694
21046
|
* @param [writer] Writer to encode to
|
|
20695
21047
|
* @returns Writer
|
|
20696
21048
|
*/
|
|
20697
|
-
public static encodeDelimited(message: temporal.api.workflowservice.v1.
|
|
21049
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.IUpdateWorkerBuildIdCompatibilityResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20698
21050
|
|
|
20699
21051
|
/**
|
|
20700
|
-
* Decodes an
|
|
21052
|
+
* Decodes an UpdateWorkerBuildIdCompatibilityResponse message from the specified reader or buffer.
|
|
20701
21053
|
* @param reader Reader or buffer to decode from
|
|
20702
21054
|
* @param [length] Message length if known beforehand
|
|
20703
|
-
* @returns
|
|
21055
|
+
* @returns UpdateWorkerBuildIdCompatibilityResponse
|
|
20704
21056
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20705
21057
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20706
21058
|
*/
|
|
20707
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.
|
|
21059
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse;
|
|
20708
21060
|
|
|
20709
21061
|
/**
|
|
20710
|
-
* Decodes an
|
|
21062
|
+
* Decodes an UpdateWorkerBuildIdCompatibilityResponse message from the specified reader or buffer, length delimited.
|
|
20711
21063
|
* @param reader Reader or buffer to decode from
|
|
20712
|
-
* @returns
|
|
21064
|
+
* @returns UpdateWorkerBuildIdCompatibilityResponse
|
|
20713
21065
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20714
21066
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20715
21067
|
*/
|
|
20716
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.
|
|
21068
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse;
|
|
20717
21069
|
|
|
20718
21070
|
/**
|
|
20719
|
-
* Creates an
|
|
21071
|
+
* Creates an UpdateWorkerBuildIdCompatibilityResponse message from a plain object. Also converts values to their respective internal types.
|
|
20720
21072
|
* @param object Plain object
|
|
20721
|
-
* @returns
|
|
21073
|
+
* @returns UpdateWorkerBuildIdCompatibilityResponse
|
|
20722
21074
|
*/
|
|
20723
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.
|
|
21075
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse;
|
|
20724
21076
|
|
|
20725
21077
|
/**
|
|
20726
|
-
* Creates a plain object from an
|
|
20727
|
-
* @param message
|
|
21078
|
+
* Creates a plain object from an UpdateWorkerBuildIdCompatibilityResponse message. Also converts values to other types if specified.
|
|
21079
|
+
* @param message UpdateWorkerBuildIdCompatibilityResponse
|
|
20728
21080
|
* @param [options] Conversion options
|
|
20729
21081
|
* @returns Plain object
|
|
20730
21082
|
*/
|
|
20731
|
-
public static toObject(message: temporal.api.workflowservice.v1.
|
|
21083
|
+
public static toObject(message: temporal.api.workflowservice.v1.UpdateWorkerBuildIdCompatibilityResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
20732
21084
|
|
|
20733
21085
|
/**
|
|
20734
|
-
* Converts this
|
|
21086
|
+
* Converts this UpdateWorkerBuildIdCompatibilityResponse to JSON.
|
|
20735
21087
|
* @returns JSON object
|
|
20736
21088
|
*/
|
|
20737
21089
|
public toJSON(): { [k: string]: any };
|
|
20738
21090
|
|
|
20739
21091
|
/**
|
|
20740
|
-
* Gets the default type url for
|
|
21092
|
+
* Gets the default type url for UpdateWorkerBuildIdCompatibilityResponse
|
|
20741
21093
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
20742
21094
|
* @returns The default type url
|
|
20743
21095
|
*/
|
|
20744
21096
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
20745
21097
|
}
|
|
20746
21098
|
|
|
20747
|
-
/** Properties of a
|
|
20748
|
-
interface
|
|
21099
|
+
/** Properties of a GetWorkerBuildIdCompatibilityRequest. */
|
|
21100
|
+
interface IGetWorkerBuildIdCompatibilityRequest {
|
|
20749
21101
|
|
|
20750
|
-
/**
|
|
21102
|
+
/** GetWorkerBuildIdCompatibilityRequest namespace */
|
|
20751
21103
|
namespace?: (string|null);
|
|
20752
21104
|
|
|
20753
|
-
/**
|
|
21105
|
+
/** GetWorkerBuildIdCompatibilityRequest taskQueue */
|
|
20754
21106
|
taskQueue?: (string|null);
|
|
20755
21107
|
|
|
20756
|
-
/**
|
|
20757
|
-
|
|
21108
|
+
/** GetWorkerBuildIdCompatibilityRequest maxSets */
|
|
21109
|
+
maxSets?: (number|null);
|
|
21110
|
+
|
|
21111
|
+
/** GetWorkerBuildIdCompatibilityRequest includeRetirementCandidates */
|
|
21112
|
+
includeRetirementCandidates?: (boolean|null);
|
|
21113
|
+
|
|
21114
|
+
/** GetWorkerBuildIdCompatibilityRequest includePollerCompatibility */
|
|
21115
|
+
includePollerCompatibility?: (boolean|null);
|
|
20758
21116
|
}
|
|
20759
21117
|
|
|
20760
|
-
/** Represents a
|
|
20761
|
-
class
|
|
21118
|
+
/** Represents a GetWorkerBuildIdCompatibilityRequest. */
|
|
21119
|
+
class GetWorkerBuildIdCompatibilityRequest implements IGetWorkerBuildIdCompatibilityRequest {
|
|
20762
21120
|
|
|
20763
21121
|
/**
|
|
20764
|
-
* Constructs a new
|
|
21122
|
+
* Constructs a new GetWorkerBuildIdCompatibilityRequest.
|
|
20765
21123
|
* @param [properties] Properties to set
|
|
20766
21124
|
*/
|
|
20767
|
-
constructor(properties?: temporal.api.workflowservice.v1.
|
|
21125
|
+
constructor(properties?: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityRequest);
|
|
20768
21126
|
|
|
20769
|
-
/**
|
|
21127
|
+
/** GetWorkerBuildIdCompatibilityRequest namespace. */
|
|
20770
21128
|
public namespace: string;
|
|
20771
21129
|
|
|
20772
|
-
/**
|
|
21130
|
+
/** GetWorkerBuildIdCompatibilityRequest taskQueue. */
|
|
20773
21131
|
public taskQueue: string;
|
|
20774
21132
|
|
|
20775
|
-
/**
|
|
20776
|
-
public
|
|
21133
|
+
/** GetWorkerBuildIdCompatibilityRequest maxSets. */
|
|
21134
|
+
public maxSets: number;
|
|
21135
|
+
|
|
21136
|
+
/** GetWorkerBuildIdCompatibilityRequest includeRetirementCandidates. */
|
|
21137
|
+
public includeRetirementCandidates: boolean;
|
|
21138
|
+
|
|
21139
|
+
/** GetWorkerBuildIdCompatibilityRequest includePollerCompatibility. */
|
|
21140
|
+
public includePollerCompatibility: boolean;
|
|
20777
21141
|
|
|
20778
21142
|
/**
|
|
20779
|
-
* Creates a new
|
|
21143
|
+
* Creates a new GetWorkerBuildIdCompatibilityRequest instance using the specified properties.
|
|
20780
21144
|
* @param [properties] Properties to set
|
|
20781
|
-
* @returns
|
|
21145
|
+
* @returns GetWorkerBuildIdCompatibilityRequest instance
|
|
20782
21146
|
*/
|
|
20783
|
-
public static create(properties?: temporal.api.workflowservice.v1.
|
|
21147
|
+
public static create(properties?: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityRequest): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest;
|
|
20784
21148
|
|
|
20785
21149
|
/**
|
|
20786
|
-
* Encodes the specified
|
|
20787
|
-
* @param message
|
|
21150
|
+
* Encodes the specified GetWorkerBuildIdCompatibilityRequest message. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest.verify|verify} messages.
|
|
21151
|
+
* @param message GetWorkerBuildIdCompatibilityRequest message or plain object to encode
|
|
20788
21152
|
* @param [writer] Writer to encode to
|
|
20789
21153
|
* @returns Writer
|
|
20790
21154
|
*/
|
|
20791
|
-
public static encode(message: temporal.api.workflowservice.v1.
|
|
21155
|
+
public static encode(message: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20792
21156
|
|
|
20793
21157
|
/**
|
|
20794
|
-
* Encodes the specified
|
|
20795
|
-
* @param message
|
|
21158
|
+
* Encodes the specified GetWorkerBuildIdCompatibilityRequest message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest.verify|verify} messages.
|
|
21159
|
+
* @param message GetWorkerBuildIdCompatibilityRequest message or plain object to encode
|
|
20796
21160
|
* @param [writer] Writer to encode to
|
|
20797
21161
|
* @returns Writer
|
|
20798
21162
|
*/
|
|
20799
|
-
public static encodeDelimited(message: temporal.api.workflowservice.v1.
|
|
21163
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20800
21164
|
|
|
20801
21165
|
/**
|
|
20802
|
-
* Decodes a
|
|
21166
|
+
* Decodes a GetWorkerBuildIdCompatibilityRequest message from the specified reader or buffer.
|
|
20803
21167
|
* @param reader Reader or buffer to decode from
|
|
20804
21168
|
* @param [length] Message length if known beforehand
|
|
20805
|
-
* @returns
|
|
21169
|
+
* @returns GetWorkerBuildIdCompatibilityRequest
|
|
20806
21170
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20807
21171
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20808
21172
|
*/
|
|
20809
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.
|
|
21173
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest;
|
|
20810
21174
|
|
|
20811
21175
|
/**
|
|
20812
|
-
* Decodes a
|
|
21176
|
+
* Decodes a GetWorkerBuildIdCompatibilityRequest message from the specified reader or buffer, length delimited.
|
|
20813
21177
|
* @param reader Reader or buffer to decode from
|
|
20814
|
-
* @returns
|
|
21178
|
+
* @returns GetWorkerBuildIdCompatibilityRequest
|
|
20815
21179
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20816
21180
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20817
21181
|
*/
|
|
20818
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.
|
|
21182
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest;
|
|
20819
21183
|
|
|
20820
21184
|
/**
|
|
20821
|
-
* Creates a
|
|
21185
|
+
* Creates a GetWorkerBuildIdCompatibilityRequest message from a plain object. Also converts values to their respective internal types.
|
|
20822
21186
|
* @param object Plain object
|
|
20823
|
-
* @returns
|
|
21187
|
+
* @returns GetWorkerBuildIdCompatibilityRequest
|
|
20824
21188
|
*/
|
|
20825
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.
|
|
21189
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest;
|
|
20826
21190
|
|
|
20827
21191
|
/**
|
|
20828
|
-
* Creates a plain object from a
|
|
20829
|
-
* @param message
|
|
21192
|
+
* Creates a plain object from a GetWorkerBuildIdCompatibilityRequest message. Also converts values to other types if specified.
|
|
21193
|
+
* @param message GetWorkerBuildIdCompatibilityRequest
|
|
20830
21194
|
* @param [options] Conversion options
|
|
20831
21195
|
* @returns Plain object
|
|
20832
21196
|
*/
|
|
20833
|
-
public static toObject(message: temporal.api.workflowservice.v1.
|
|
21197
|
+
public static toObject(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
20834
21198
|
|
|
20835
21199
|
/**
|
|
20836
|
-
* Converts this
|
|
21200
|
+
* Converts this GetWorkerBuildIdCompatibilityRequest to JSON.
|
|
20837
21201
|
* @returns JSON object
|
|
20838
21202
|
*/
|
|
20839
21203
|
public toJSON(): { [k: string]: any };
|
|
20840
21204
|
|
|
20841
21205
|
/**
|
|
20842
|
-
* Gets the default type url for
|
|
21206
|
+
* Gets the default type url for GetWorkerBuildIdCompatibilityRequest
|
|
20843
21207
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
20844
21208
|
* @returns The default type url
|
|
20845
21209
|
*/
|
|
20846
21210
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
20847
21211
|
}
|
|
20848
21212
|
|
|
20849
|
-
/** Properties of a
|
|
20850
|
-
interface
|
|
21213
|
+
/** Properties of a GetWorkerBuildIdCompatibilityResponse. */
|
|
21214
|
+
interface IGetWorkerBuildIdCompatibilityResponse {
|
|
21215
|
+
|
|
21216
|
+
/** GetWorkerBuildIdCompatibilityResponse majorVersionSets */
|
|
21217
|
+
majorVersionSets?: (temporal.api.taskqueue.v1.ICompatibleVersionSet[]|null);
|
|
20851
21218
|
|
|
20852
|
-
/**
|
|
20853
|
-
|
|
21219
|
+
/** GetWorkerBuildIdCompatibilityResponse retirementCandidates */
|
|
21220
|
+
retirementCandidates?: (temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IRetirementCandidate[]|null);
|
|
20854
21221
|
|
|
20855
|
-
/**
|
|
20856
|
-
|
|
21222
|
+
/** GetWorkerBuildIdCompatibilityResponse activeVersionsAndPollers */
|
|
21223
|
+
activeVersionsAndPollers?: (temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IVersionsWithCompatiblePollers[]|null);
|
|
20857
21224
|
}
|
|
20858
21225
|
|
|
20859
|
-
/** Represents a
|
|
20860
|
-
class
|
|
21226
|
+
/** Represents a GetWorkerBuildIdCompatibilityResponse. */
|
|
21227
|
+
class GetWorkerBuildIdCompatibilityResponse implements IGetWorkerBuildIdCompatibilityResponse {
|
|
20861
21228
|
|
|
20862
21229
|
/**
|
|
20863
|
-
* Constructs a new
|
|
21230
|
+
* Constructs a new GetWorkerBuildIdCompatibilityResponse.
|
|
20864
21231
|
* @param [properties] Properties to set
|
|
20865
21232
|
*/
|
|
20866
|
-
constructor(properties?: temporal.api.workflowservice.v1.
|
|
21233
|
+
constructor(properties?: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityResponse);
|
|
20867
21234
|
|
|
20868
|
-
/**
|
|
20869
|
-
public
|
|
21235
|
+
/** GetWorkerBuildIdCompatibilityResponse majorVersionSets. */
|
|
21236
|
+
public majorVersionSets: temporal.api.taskqueue.v1.ICompatibleVersionSet[];
|
|
20870
21237
|
|
|
20871
|
-
/**
|
|
20872
|
-
public
|
|
21238
|
+
/** GetWorkerBuildIdCompatibilityResponse retirementCandidates. */
|
|
21239
|
+
public retirementCandidates: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IRetirementCandidate[];
|
|
21240
|
+
|
|
21241
|
+
/** GetWorkerBuildIdCompatibilityResponse activeVersionsAndPollers. */
|
|
21242
|
+
public activeVersionsAndPollers: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IVersionsWithCompatiblePollers[];
|
|
20873
21243
|
|
|
20874
21244
|
/**
|
|
20875
|
-
* Creates a new
|
|
21245
|
+
* Creates a new GetWorkerBuildIdCompatibilityResponse instance using the specified properties.
|
|
20876
21246
|
* @param [properties] Properties to set
|
|
20877
|
-
* @returns
|
|
21247
|
+
* @returns GetWorkerBuildIdCompatibilityResponse instance
|
|
20878
21248
|
*/
|
|
20879
|
-
public static create(properties?: temporal.api.workflowservice.v1.
|
|
21249
|
+
public static create(properties?: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityResponse): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse;
|
|
20880
21250
|
|
|
20881
21251
|
/**
|
|
20882
|
-
* Encodes the specified
|
|
20883
|
-
* @param message
|
|
21252
|
+
* Encodes the specified GetWorkerBuildIdCompatibilityResponse message. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.verify|verify} messages.
|
|
21253
|
+
* @param message GetWorkerBuildIdCompatibilityResponse message or plain object to encode
|
|
20884
21254
|
* @param [writer] Writer to encode to
|
|
20885
21255
|
* @returns Writer
|
|
20886
21256
|
*/
|
|
20887
|
-
public static encode(message: temporal.api.workflowservice.v1.
|
|
21257
|
+
public static encode(message: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20888
21258
|
|
|
20889
21259
|
/**
|
|
20890
|
-
* Encodes the specified
|
|
20891
|
-
* @param message
|
|
21260
|
+
* Encodes the specified GetWorkerBuildIdCompatibilityResponse message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.verify|verify} messages.
|
|
21261
|
+
* @param message GetWorkerBuildIdCompatibilityResponse message or plain object to encode
|
|
20892
21262
|
* @param [writer] Writer to encode to
|
|
20893
21263
|
* @returns Writer
|
|
20894
21264
|
*/
|
|
20895
|
-
public static encodeDelimited(message: temporal.api.workflowservice.v1.
|
|
21265
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.IGetWorkerBuildIdCompatibilityResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20896
21266
|
|
|
20897
21267
|
/**
|
|
20898
|
-
* Decodes a
|
|
21268
|
+
* Decodes a GetWorkerBuildIdCompatibilityResponse message from the specified reader or buffer.
|
|
20899
21269
|
* @param reader Reader or buffer to decode from
|
|
20900
21270
|
* @param [length] Message length if known beforehand
|
|
20901
|
-
* @returns
|
|
21271
|
+
* @returns GetWorkerBuildIdCompatibilityResponse
|
|
20902
21272
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20903
21273
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20904
21274
|
*/
|
|
20905
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.
|
|
21275
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse;
|
|
20906
21276
|
|
|
20907
21277
|
/**
|
|
20908
|
-
* Decodes a
|
|
21278
|
+
* Decodes a GetWorkerBuildIdCompatibilityResponse message from the specified reader or buffer, length delimited.
|
|
20909
21279
|
* @param reader Reader or buffer to decode from
|
|
20910
|
-
* @returns
|
|
21280
|
+
* @returns GetWorkerBuildIdCompatibilityResponse
|
|
20911
21281
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20912
21282
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20913
21283
|
*/
|
|
20914
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.
|
|
21284
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse;
|
|
20915
21285
|
|
|
20916
21286
|
/**
|
|
20917
|
-
* Creates a
|
|
21287
|
+
* Creates a GetWorkerBuildIdCompatibilityResponse message from a plain object. Also converts values to their respective internal types.
|
|
20918
21288
|
* @param object Plain object
|
|
20919
|
-
* @returns
|
|
21289
|
+
* @returns GetWorkerBuildIdCompatibilityResponse
|
|
20920
21290
|
*/
|
|
20921
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.
|
|
21291
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse;
|
|
20922
21292
|
|
|
20923
21293
|
/**
|
|
20924
|
-
* Creates a plain object from a
|
|
20925
|
-
* @param message
|
|
21294
|
+
* Creates a plain object from a GetWorkerBuildIdCompatibilityResponse message. Also converts values to other types if specified.
|
|
21295
|
+
* @param message GetWorkerBuildIdCompatibilityResponse
|
|
20926
21296
|
* @param [options] Conversion options
|
|
20927
21297
|
* @returns Plain object
|
|
20928
21298
|
*/
|
|
20929
|
-
public static toObject(message: temporal.api.workflowservice.v1.
|
|
21299
|
+
public static toObject(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
20930
21300
|
|
|
20931
21301
|
/**
|
|
20932
|
-
* Converts this
|
|
21302
|
+
* Converts this GetWorkerBuildIdCompatibilityResponse to JSON.
|
|
20933
21303
|
* @returns JSON object
|
|
20934
21304
|
*/
|
|
20935
21305
|
public toJSON(): { [k: string]: any };
|
|
20936
21306
|
|
|
20937
21307
|
/**
|
|
20938
|
-
* Gets the default type url for
|
|
21308
|
+
* Gets the default type url for GetWorkerBuildIdCompatibilityResponse
|
|
20939
21309
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
20940
21310
|
* @returns The default type url
|
|
20941
21311
|
*/
|
|
20942
21312
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
20943
21313
|
}
|
|
20944
21314
|
|
|
20945
|
-
|
|
20946
|
-
interface IUpdateWorkflowExecutionRequest {
|
|
21315
|
+
namespace GetWorkerBuildIdCompatibilityResponse {
|
|
20947
21316
|
|
|
20948
|
-
/**
|
|
20949
|
-
|
|
21317
|
+
/** Properties of a RetirementCandidate. */
|
|
21318
|
+
interface IRetirementCandidate {
|
|
20950
21319
|
|
|
20951
|
-
|
|
20952
|
-
|
|
21320
|
+
/** RetirementCandidate buildId */
|
|
21321
|
+
buildId?: (string|null);
|
|
20953
21322
|
|
|
20954
|
-
|
|
20955
|
-
|
|
21323
|
+
/** RetirementCandidate allWorkflowsAreArchived */
|
|
21324
|
+
allWorkflowsAreArchived?: (boolean|null);
|
|
20956
21325
|
|
|
20957
|
-
|
|
20958
|
-
|
|
21326
|
+
/** RetirementCandidate pollers */
|
|
21327
|
+
pollers?: (temporal.api.taskqueue.v1.IPollerInfo[]|null);
|
|
21328
|
+
}
|
|
20959
21329
|
|
|
20960
|
-
/**
|
|
20961
|
-
|
|
20962
|
-
}
|
|
21330
|
+
/** Represents a RetirementCandidate. */
|
|
21331
|
+
class RetirementCandidate implements IRetirementCandidate {
|
|
20963
21332
|
|
|
20964
|
-
|
|
20965
|
-
|
|
21333
|
+
/**
|
|
21334
|
+
* Constructs a new RetirementCandidate.
|
|
21335
|
+
* @param [properties] Properties to set
|
|
21336
|
+
*/
|
|
21337
|
+
constructor(properties?: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IRetirementCandidate);
|
|
20966
21338
|
|
|
20967
|
-
|
|
20968
|
-
|
|
20969
|
-
* @param [properties] Properties to set
|
|
20970
|
-
*/
|
|
20971
|
-
constructor(properties?: temporal.api.workflowservice.v1.IUpdateWorkflowExecutionRequest);
|
|
21339
|
+
/** RetirementCandidate buildId. */
|
|
21340
|
+
public buildId: string;
|
|
20972
21341
|
|
|
20973
|
-
|
|
20974
|
-
|
|
21342
|
+
/** RetirementCandidate allWorkflowsAreArchived. */
|
|
21343
|
+
public allWorkflowsAreArchived: boolean;
|
|
20975
21344
|
|
|
20976
|
-
|
|
20977
|
-
|
|
21345
|
+
/** RetirementCandidate pollers. */
|
|
21346
|
+
public pollers: temporal.api.taskqueue.v1.IPollerInfo[];
|
|
20978
21347
|
|
|
20979
|
-
|
|
20980
|
-
|
|
21348
|
+
/**
|
|
21349
|
+
* Creates a new RetirementCandidate instance using the specified properties.
|
|
21350
|
+
* @param [properties] Properties to set
|
|
21351
|
+
* @returns RetirementCandidate instance
|
|
21352
|
+
*/
|
|
21353
|
+
public static create(properties?: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IRetirementCandidate): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.RetirementCandidate;
|
|
20981
21354
|
|
|
20982
|
-
|
|
20983
|
-
|
|
21355
|
+
/**
|
|
21356
|
+
* Encodes the specified RetirementCandidate message. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.RetirementCandidate.verify|verify} messages.
|
|
21357
|
+
* @param message RetirementCandidate message or plain object to encode
|
|
21358
|
+
* @param [writer] Writer to encode to
|
|
21359
|
+
* @returns Writer
|
|
21360
|
+
*/
|
|
21361
|
+
public static encode(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IRetirementCandidate, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20984
21362
|
|
|
20985
|
-
|
|
20986
|
-
|
|
21363
|
+
/**
|
|
21364
|
+
* Encodes the specified RetirementCandidate message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.RetirementCandidate.verify|verify} messages.
|
|
21365
|
+
* @param message RetirementCandidate message or plain object to encode
|
|
21366
|
+
* @param [writer] Writer to encode to
|
|
21367
|
+
* @returns Writer
|
|
21368
|
+
*/
|
|
21369
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IRetirementCandidate, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20987
21370
|
|
|
20988
|
-
|
|
20989
|
-
|
|
21371
|
+
/**
|
|
21372
|
+
* Decodes a RetirementCandidate message from the specified reader or buffer.
|
|
21373
|
+
* @param reader Reader or buffer to decode from
|
|
21374
|
+
* @param [length] Message length if known beforehand
|
|
21375
|
+
* @returns RetirementCandidate
|
|
21376
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21377
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21378
|
+
*/
|
|
21379
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.RetirementCandidate;
|
|
21380
|
+
|
|
21381
|
+
/**
|
|
21382
|
+
* Decodes a RetirementCandidate message from the specified reader or buffer, length delimited.
|
|
21383
|
+
* @param reader Reader or buffer to decode from
|
|
21384
|
+
* @returns RetirementCandidate
|
|
21385
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21386
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21387
|
+
*/
|
|
21388
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.RetirementCandidate;
|
|
21389
|
+
|
|
21390
|
+
/**
|
|
21391
|
+
* Creates a RetirementCandidate message from a plain object. Also converts values to their respective internal types.
|
|
21392
|
+
* @param object Plain object
|
|
21393
|
+
* @returns RetirementCandidate
|
|
21394
|
+
*/
|
|
21395
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.RetirementCandidate;
|
|
21396
|
+
|
|
21397
|
+
/**
|
|
21398
|
+
* Creates a plain object from a RetirementCandidate message. Also converts values to other types if specified.
|
|
21399
|
+
* @param message RetirementCandidate
|
|
21400
|
+
* @param [options] Conversion options
|
|
21401
|
+
* @returns Plain object
|
|
21402
|
+
*/
|
|
21403
|
+
public static toObject(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.RetirementCandidate, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
21404
|
+
|
|
21405
|
+
/**
|
|
21406
|
+
* Converts this RetirementCandidate to JSON.
|
|
21407
|
+
* @returns JSON object
|
|
21408
|
+
*/
|
|
21409
|
+
public toJSON(): { [k: string]: any };
|
|
21410
|
+
|
|
21411
|
+
/**
|
|
21412
|
+
* Gets the default type url for RetirementCandidate
|
|
21413
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21414
|
+
* @returns The default type url
|
|
21415
|
+
*/
|
|
21416
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21417
|
+
}
|
|
21418
|
+
|
|
21419
|
+
/** Properties of a VersionsWithCompatiblePollers. */
|
|
21420
|
+
interface IVersionsWithCompatiblePollers {
|
|
21421
|
+
|
|
21422
|
+
/** VersionsWithCompatiblePollers mostRecentBuildId */
|
|
21423
|
+
mostRecentBuildId?: (string|null);
|
|
21424
|
+
|
|
21425
|
+
/** VersionsWithCompatiblePollers pollers */
|
|
21426
|
+
pollers?: (temporal.api.taskqueue.v1.IPollerInfo[]|null);
|
|
21427
|
+
}
|
|
21428
|
+
|
|
21429
|
+
/** Represents a VersionsWithCompatiblePollers. */
|
|
21430
|
+
class VersionsWithCompatiblePollers implements IVersionsWithCompatiblePollers {
|
|
21431
|
+
|
|
21432
|
+
/**
|
|
21433
|
+
* Constructs a new VersionsWithCompatiblePollers.
|
|
21434
|
+
* @param [properties] Properties to set
|
|
21435
|
+
*/
|
|
21436
|
+
constructor(properties?: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IVersionsWithCompatiblePollers);
|
|
21437
|
+
|
|
21438
|
+
/** VersionsWithCompatiblePollers mostRecentBuildId. */
|
|
21439
|
+
public mostRecentBuildId: string;
|
|
21440
|
+
|
|
21441
|
+
/** VersionsWithCompatiblePollers pollers. */
|
|
21442
|
+
public pollers: temporal.api.taskqueue.v1.IPollerInfo[];
|
|
21443
|
+
|
|
21444
|
+
/**
|
|
21445
|
+
* Creates a new VersionsWithCompatiblePollers instance using the specified properties.
|
|
21446
|
+
* @param [properties] Properties to set
|
|
21447
|
+
* @returns VersionsWithCompatiblePollers instance
|
|
21448
|
+
*/
|
|
21449
|
+
public static create(properties?: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IVersionsWithCompatiblePollers): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.VersionsWithCompatiblePollers;
|
|
21450
|
+
|
|
21451
|
+
/**
|
|
21452
|
+
* Encodes the specified VersionsWithCompatiblePollers message. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.VersionsWithCompatiblePollers.verify|verify} messages.
|
|
21453
|
+
* @param message VersionsWithCompatiblePollers message or plain object to encode
|
|
21454
|
+
* @param [writer] Writer to encode to
|
|
21455
|
+
* @returns Writer
|
|
21456
|
+
*/
|
|
21457
|
+
public static encode(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IVersionsWithCompatiblePollers, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21458
|
+
|
|
21459
|
+
/**
|
|
21460
|
+
* Encodes the specified VersionsWithCompatiblePollers message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.VersionsWithCompatiblePollers.verify|verify} messages.
|
|
21461
|
+
* @param message VersionsWithCompatiblePollers message or plain object to encode
|
|
21462
|
+
* @param [writer] Writer to encode to
|
|
21463
|
+
* @returns Writer
|
|
21464
|
+
*/
|
|
21465
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.IVersionsWithCompatiblePollers, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21466
|
+
|
|
21467
|
+
/**
|
|
21468
|
+
* Decodes a VersionsWithCompatiblePollers message from the specified reader or buffer.
|
|
21469
|
+
* @param reader Reader or buffer to decode from
|
|
21470
|
+
* @param [length] Message length if known beforehand
|
|
21471
|
+
* @returns VersionsWithCompatiblePollers
|
|
21472
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21473
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21474
|
+
*/
|
|
21475
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.VersionsWithCompatiblePollers;
|
|
21476
|
+
|
|
21477
|
+
/**
|
|
21478
|
+
* Decodes a VersionsWithCompatiblePollers message from the specified reader or buffer, length delimited.
|
|
21479
|
+
* @param reader Reader or buffer to decode from
|
|
21480
|
+
* @returns VersionsWithCompatiblePollers
|
|
21481
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21482
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21483
|
+
*/
|
|
21484
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.VersionsWithCompatiblePollers;
|
|
21485
|
+
|
|
21486
|
+
/**
|
|
21487
|
+
* Creates a VersionsWithCompatiblePollers message from a plain object. Also converts values to their respective internal types.
|
|
21488
|
+
* @param object Plain object
|
|
21489
|
+
* @returns VersionsWithCompatiblePollers
|
|
21490
|
+
*/
|
|
21491
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.VersionsWithCompatiblePollers;
|
|
21492
|
+
|
|
21493
|
+
/**
|
|
21494
|
+
* Creates a plain object from a VersionsWithCompatiblePollers message. Also converts values to other types if specified.
|
|
21495
|
+
* @param message VersionsWithCompatiblePollers
|
|
21496
|
+
* @param [options] Conversion options
|
|
21497
|
+
* @returns Plain object
|
|
21498
|
+
*/
|
|
21499
|
+
public static toObject(message: temporal.api.workflowservice.v1.GetWorkerBuildIdCompatibilityResponse.VersionsWithCompatiblePollers, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
21500
|
+
|
|
21501
|
+
/**
|
|
21502
|
+
* Converts this VersionsWithCompatiblePollers to JSON.
|
|
21503
|
+
* @returns JSON object
|
|
21504
|
+
*/
|
|
21505
|
+
public toJSON(): { [k: string]: any };
|
|
21506
|
+
|
|
21507
|
+
/**
|
|
21508
|
+
* Gets the default type url for VersionsWithCompatiblePollers
|
|
21509
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21510
|
+
* @returns The default type url
|
|
21511
|
+
*/
|
|
21512
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21513
|
+
}
|
|
21514
|
+
}
|
|
21515
|
+
|
|
21516
|
+
/** Properties of an UpdateWorkflowExecutionRequest. */
|
|
21517
|
+
interface IUpdateWorkflowExecutionRequest {
|
|
21518
|
+
|
|
21519
|
+
/** UpdateWorkflowExecutionRequest namespace */
|
|
21520
|
+
namespace?: (string|null);
|
|
21521
|
+
|
|
21522
|
+
/** UpdateWorkflowExecutionRequest workflowExecution */
|
|
21523
|
+
workflowExecution?: (temporal.api.common.v1.IWorkflowExecution|null);
|
|
21524
|
+
|
|
21525
|
+
/** UpdateWorkflowExecutionRequest firstExecutionRunId */
|
|
21526
|
+
firstExecutionRunId?: (string|null);
|
|
21527
|
+
|
|
21528
|
+
/** UpdateWorkflowExecutionRequest waitPolicy */
|
|
21529
|
+
waitPolicy?: (temporal.api.update.v1.IWaitPolicy|null);
|
|
21530
|
+
|
|
21531
|
+
/** UpdateWorkflowExecutionRequest request */
|
|
21532
|
+
request?: (temporal.api.update.v1.IRequest|null);
|
|
21533
|
+
}
|
|
21534
|
+
|
|
21535
|
+
/** Represents an UpdateWorkflowExecutionRequest. */
|
|
21536
|
+
class UpdateWorkflowExecutionRequest implements IUpdateWorkflowExecutionRequest {
|
|
21537
|
+
|
|
21538
|
+
/**
|
|
21539
|
+
* Constructs a new UpdateWorkflowExecutionRequest.
|
|
21540
|
+
* @param [properties] Properties to set
|
|
21541
|
+
*/
|
|
21542
|
+
constructor(properties?: temporal.api.workflowservice.v1.IUpdateWorkflowExecutionRequest);
|
|
21543
|
+
|
|
21544
|
+
/** UpdateWorkflowExecutionRequest namespace. */
|
|
21545
|
+
public namespace: string;
|
|
21546
|
+
|
|
21547
|
+
/** UpdateWorkflowExecutionRequest workflowExecution. */
|
|
21548
|
+
public workflowExecution?: (temporal.api.common.v1.IWorkflowExecution|null);
|
|
21549
|
+
|
|
21550
|
+
/** UpdateWorkflowExecutionRequest firstExecutionRunId. */
|
|
21551
|
+
public firstExecutionRunId: string;
|
|
21552
|
+
|
|
21553
|
+
/** UpdateWorkflowExecutionRequest waitPolicy. */
|
|
21554
|
+
public waitPolicy?: (temporal.api.update.v1.IWaitPolicy|null);
|
|
21555
|
+
|
|
21556
|
+
/** UpdateWorkflowExecutionRequest request. */
|
|
21557
|
+
public request?: (temporal.api.update.v1.IRequest|null);
|
|
21558
|
+
|
|
21559
|
+
/**
|
|
21560
|
+
* Creates a new UpdateWorkflowExecutionRequest instance using the specified properties.
|
|
20990
21561
|
* @param [properties] Properties to set
|
|
20991
21562
|
* @returns UpdateWorkflowExecutionRequest instance
|
|
20992
21563
|
*/
|
|
@@ -22006,6 +22577,204 @@ export namespace temporal {
|
|
|
22006
22577
|
*/
|
|
22007
22578
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22008
22579
|
}
|
|
22580
|
+
|
|
22581
|
+
/** Properties of a PollWorkflowExecutionUpdateRequest. */
|
|
22582
|
+
interface IPollWorkflowExecutionUpdateRequest {
|
|
22583
|
+
|
|
22584
|
+
/** PollWorkflowExecutionUpdateRequest namespace */
|
|
22585
|
+
namespace?: (string|null);
|
|
22586
|
+
|
|
22587
|
+
/** PollWorkflowExecutionUpdateRequest updateRef */
|
|
22588
|
+
updateRef?: (temporal.api.update.v1.IUpdateRef|null);
|
|
22589
|
+
|
|
22590
|
+
/** PollWorkflowExecutionUpdateRequest identity */
|
|
22591
|
+
identity?: (string|null);
|
|
22592
|
+
|
|
22593
|
+
/** PollWorkflowExecutionUpdateRequest waitPolicy */
|
|
22594
|
+
waitPolicy?: (temporal.api.update.v1.IWaitPolicy|null);
|
|
22595
|
+
}
|
|
22596
|
+
|
|
22597
|
+
/** Represents a PollWorkflowExecutionUpdateRequest. */
|
|
22598
|
+
class PollWorkflowExecutionUpdateRequest implements IPollWorkflowExecutionUpdateRequest {
|
|
22599
|
+
|
|
22600
|
+
/**
|
|
22601
|
+
* Constructs a new PollWorkflowExecutionUpdateRequest.
|
|
22602
|
+
* @param [properties] Properties to set
|
|
22603
|
+
*/
|
|
22604
|
+
constructor(properties?: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateRequest);
|
|
22605
|
+
|
|
22606
|
+
/** PollWorkflowExecutionUpdateRequest namespace. */
|
|
22607
|
+
public namespace: string;
|
|
22608
|
+
|
|
22609
|
+
/** PollWorkflowExecutionUpdateRequest updateRef. */
|
|
22610
|
+
public updateRef?: (temporal.api.update.v1.IUpdateRef|null);
|
|
22611
|
+
|
|
22612
|
+
/** PollWorkflowExecutionUpdateRequest identity. */
|
|
22613
|
+
public identity: string;
|
|
22614
|
+
|
|
22615
|
+
/** PollWorkflowExecutionUpdateRequest waitPolicy. */
|
|
22616
|
+
public waitPolicy?: (temporal.api.update.v1.IWaitPolicy|null);
|
|
22617
|
+
|
|
22618
|
+
/**
|
|
22619
|
+
* Creates a new PollWorkflowExecutionUpdateRequest instance using the specified properties.
|
|
22620
|
+
* @param [properties] Properties to set
|
|
22621
|
+
* @returns PollWorkflowExecutionUpdateRequest instance
|
|
22622
|
+
*/
|
|
22623
|
+
public static create(properties?: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateRequest): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest;
|
|
22624
|
+
|
|
22625
|
+
/**
|
|
22626
|
+
* Encodes the specified PollWorkflowExecutionUpdateRequest message. Does not implicitly {@link temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest.verify|verify} messages.
|
|
22627
|
+
* @param message PollWorkflowExecutionUpdateRequest message or plain object to encode
|
|
22628
|
+
* @param [writer] Writer to encode to
|
|
22629
|
+
* @returns Writer
|
|
22630
|
+
*/
|
|
22631
|
+
public static encode(message: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22632
|
+
|
|
22633
|
+
/**
|
|
22634
|
+
* Encodes the specified PollWorkflowExecutionUpdateRequest message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest.verify|verify} messages.
|
|
22635
|
+
* @param message PollWorkflowExecutionUpdateRequest message or plain object to encode
|
|
22636
|
+
* @param [writer] Writer to encode to
|
|
22637
|
+
* @returns Writer
|
|
22638
|
+
*/
|
|
22639
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22640
|
+
|
|
22641
|
+
/**
|
|
22642
|
+
* Decodes a PollWorkflowExecutionUpdateRequest message from the specified reader or buffer.
|
|
22643
|
+
* @param reader Reader or buffer to decode from
|
|
22644
|
+
* @param [length] Message length if known beforehand
|
|
22645
|
+
* @returns PollWorkflowExecutionUpdateRequest
|
|
22646
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22647
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22648
|
+
*/
|
|
22649
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest;
|
|
22650
|
+
|
|
22651
|
+
/**
|
|
22652
|
+
* Decodes a PollWorkflowExecutionUpdateRequest message from the specified reader or buffer, length delimited.
|
|
22653
|
+
* @param reader Reader or buffer to decode from
|
|
22654
|
+
* @returns PollWorkflowExecutionUpdateRequest
|
|
22655
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22656
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22657
|
+
*/
|
|
22658
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest;
|
|
22659
|
+
|
|
22660
|
+
/**
|
|
22661
|
+
* Creates a PollWorkflowExecutionUpdateRequest message from a plain object. Also converts values to their respective internal types.
|
|
22662
|
+
* @param object Plain object
|
|
22663
|
+
* @returns PollWorkflowExecutionUpdateRequest
|
|
22664
|
+
*/
|
|
22665
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest;
|
|
22666
|
+
|
|
22667
|
+
/**
|
|
22668
|
+
* Creates a plain object from a PollWorkflowExecutionUpdateRequest message. Also converts values to other types if specified.
|
|
22669
|
+
* @param message PollWorkflowExecutionUpdateRequest
|
|
22670
|
+
* @param [options] Conversion options
|
|
22671
|
+
* @returns Plain object
|
|
22672
|
+
*/
|
|
22673
|
+
public static toObject(message: temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
22674
|
+
|
|
22675
|
+
/**
|
|
22676
|
+
* Converts this PollWorkflowExecutionUpdateRequest to JSON.
|
|
22677
|
+
* @returns JSON object
|
|
22678
|
+
*/
|
|
22679
|
+
public toJSON(): { [k: string]: any };
|
|
22680
|
+
|
|
22681
|
+
/**
|
|
22682
|
+
* Gets the default type url for PollWorkflowExecutionUpdateRequest
|
|
22683
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
22684
|
+
* @returns The default type url
|
|
22685
|
+
*/
|
|
22686
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22687
|
+
}
|
|
22688
|
+
|
|
22689
|
+
/** Properties of a PollWorkflowExecutionUpdateResponse. */
|
|
22690
|
+
interface IPollWorkflowExecutionUpdateResponse {
|
|
22691
|
+
|
|
22692
|
+
/** PollWorkflowExecutionUpdateResponse outcome */
|
|
22693
|
+
outcome?: (temporal.api.update.v1.IOutcome|null);
|
|
22694
|
+
}
|
|
22695
|
+
|
|
22696
|
+
/** Represents a PollWorkflowExecutionUpdateResponse. */
|
|
22697
|
+
class PollWorkflowExecutionUpdateResponse implements IPollWorkflowExecutionUpdateResponse {
|
|
22698
|
+
|
|
22699
|
+
/**
|
|
22700
|
+
* Constructs a new PollWorkflowExecutionUpdateResponse.
|
|
22701
|
+
* @param [properties] Properties to set
|
|
22702
|
+
*/
|
|
22703
|
+
constructor(properties?: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateResponse);
|
|
22704
|
+
|
|
22705
|
+
/** PollWorkflowExecutionUpdateResponse outcome. */
|
|
22706
|
+
public outcome?: (temporal.api.update.v1.IOutcome|null);
|
|
22707
|
+
|
|
22708
|
+
/**
|
|
22709
|
+
* Creates a new PollWorkflowExecutionUpdateResponse instance using the specified properties.
|
|
22710
|
+
* @param [properties] Properties to set
|
|
22711
|
+
* @returns PollWorkflowExecutionUpdateResponse instance
|
|
22712
|
+
*/
|
|
22713
|
+
public static create(properties?: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateResponse): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse;
|
|
22714
|
+
|
|
22715
|
+
/**
|
|
22716
|
+
* Encodes the specified PollWorkflowExecutionUpdateResponse message. Does not implicitly {@link temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse.verify|verify} messages.
|
|
22717
|
+
* @param message PollWorkflowExecutionUpdateResponse message or plain object to encode
|
|
22718
|
+
* @param [writer] Writer to encode to
|
|
22719
|
+
* @returns Writer
|
|
22720
|
+
*/
|
|
22721
|
+
public static encode(message: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22722
|
+
|
|
22723
|
+
/**
|
|
22724
|
+
* Encodes the specified PollWorkflowExecutionUpdateResponse message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse.verify|verify} messages.
|
|
22725
|
+
* @param message PollWorkflowExecutionUpdateResponse message or plain object to encode
|
|
22726
|
+
* @param [writer] Writer to encode to
|
|
22727
|
+
* @returns Writer
|
|
22728
|
+
*/
|
|
22729
|
+
public static encodeDelimited(message: temporal.api.workflowservice.v1.IPollWorkflowExecutionUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22730
|
+
|
|
22731
|
+
/**
|
|
22732
|
+
* Decodes a PollWorkflowExecutionUpdateResponse message from the specified reader or buffer.
|
|
22733
|
+
* @param reader Reader or buffer to decode from
|
|
22734
|
+
* @param [length] Message length if known beforehand
|
|
22735
|
+
* @returns PollWorkflowExecutionUpdateResponse
|
|
22736
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22737
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22738
|
+
*/
|
|
22739
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse;
|
|
22740
|
+
|
|
22741
|
+
/**
|
|
22742
|
+
* Decodes a PollWorkflowExecutionUpdateResponse message from the specified reader or buffer, length delimited.
|
|
22743
|
+
* @param reader Reader or buffer to decode from
|
|
22744
|
+
* @returns PollWorkflowExecutionUpdateResponse
|
|
22745
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22746
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22747
|
+
*/
|
|
22748
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse;
|
|
22749
|
+
|
|
22750
|
+
/**
|
|
22751
|
+
* Creates a PollWorkflowExecutionUpdateResponse message from a plain object. Also converts values to their respective internal types.
|
|
22752
|
+
* @param object Plain object
|
|
22753
|
+
* @returns PollWorkflowExecutionUpdateResponse
|
|
22754
|
+
*/
|
|
22755
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse;
|
|
22756
|
+
|
|
22757
|
+
/**
|
|
22758
|
+
* Creates a plain object from a PollWorkflowExecutionUpdateResponse message. Also converts values to other types if specified.
|
|
22759
|
+
* @param message PollWorkflowExecutionUpdateResponse
|
|
22760
|
+
* @param [options] Conversion options
|
|
22761
|
+
* @returns Plain object
|
|
22762
|
+
*/
|
|
22763
|
+
public static toObject(message: temporal.api.workflowservice.v1.PollWorkflowExecutionUpdateResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
22764
|
+
|
|
22765
|
+
/**
|
|
22766
|
+
* Converts this PollWorkflowExecutionUpdateResponse to JSON.
|
|
22767
|
+
* @returns JSON object
|
|
22768
|
+
*/
|
|
22769
|
+
public toJSON(): { [k: string]: any };
|
|
22770
|
+
|
|
22771
|
+
/**
|
|
22772
|
+
* Gets the default type url for PollWorkflowExecutionUpdateResponse
|
|
22773
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
22774
|
+
* @returns The default type url
|
|
22775
|
+
*/
|
|
22776
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22777
|
+
}
|
|
22009
22778
|
}
|
|
22010
22779
|
}
|
|
22011
22780
|
|
|
@@ -22966,8 +23735,8 @@ export namespace temporal {
|
|
|
22966
23735
|
/** WorkflowTaskCompletedEventAttributes binaryChecksum */
|
|
22967
23736
|
binaryChecksum?: (string|null);
|
|
22968
23737
|
|
|
22969
|
-
/** WorkflowTaskCompletedEventAttributes
|
|
22970
|
-
|
|
23738
|
+
/** WorkflowTaskCompletedEventAttributes workerVersion */
|
|
23739
|
+
workerVersion?: (temporal.api.common.v1.IWorkerVersionStamp|null);
|
|
22971
23740
|
|
|
22972
23741
|
/** WorkflowTaskCompletedEventAttributes sdkMetadata */
|
|
22973
23742
|
sdkMetadata?: (temporal.api.sdk.v1.IWorkflowTaskCompletedMetadata|null);
|
|
@@ -22997,8 +23766,8 @@ export namespace temporal {
|
|
|
22997
23766
|
/** WorkflowTaskCompletedEventAttributes binaryChecksum. */
|
|
22998
23767
|
public binaryChecksum: string;
|
|
22999
23768
|
|
|
23000
|
-
/** WorkflowTaskCompletedEventAttributes
|
|
23001
|
-
public
|
|
23769
|
+
/** WorkflowTaskCompletedEventAttributes workerVersion. */
|
|
23770
|
+
public workerVersion?: (temporal.api.common.v1.IWorkerVersionStamp|null);
|
|
23002
23771
|
|
|
23003
23772
|
/** WorkflowTaskCompletedEventAttributes sdkMetadata. */
|
|
23004
23773
|
public sdkMetadata?: (temporal.api.sdk.v1.IWorkflowTaskCompletedMetadata|null);
|
|
@@ -24759,6 +25528,9 @@ export namespace temporal {
|
|
|
24759
25528
|
|
|
24760
25529
|
/** WorkflowExecutionSignaledEventAttributes header */
|
|
24761
25530
|
header?: (temporal.api.common.v1.IHeader|null);
|
|
25531
|
+
|
|
25532
|
+
/** WorkflowExecutionSignaledEventAttributes skipGenerateWorkflowTask */
|
|
25533
|
+
skipGenerateWorkflowTask?: (boolean|null);
|
|
24762
25534
|
}
|
|
24763
25535
|
|
|
24764
25536
|
/** Represents a WorkflowExecutionSignaledEventAttributes. */
|
|
@@ -24782,6 +25554,9 @@ export namespace temporal {
|
|
|
24782
25554
|
/** WorkflowExecutionSignaledEventAttributes header. */
|
|
24783
25555
|
public header?: (temporal.api.common.v1.IHeader|null);
|
|
24784
25556
|
|
|
25557
|
+
/** WorkflowExecutionSignaledEventAttributes skipGenerateWorkflowTask. */
|
|
25558
|
+
public skipGenerateWorkflowTask: boolean;
|
|
25559
|
+
|
|
24785
25560
|
/**
|
|
24786
25561
|
* Creates a new WorkflowExecutionSignaledEventAttributes instance using the specified properties.
|
|
24787
25562
|
* @param [properties] Properties to set
|
|
@@ -28488,8 +29263,8 @@ export namespace temporal {
|
|
|
28488
29263
|
/** PollerInfo ratePerSecond */
|
|
28489
29264
|
ratePerSecond?: (number|null);
|
|
28490
29265
|
|
|
28491
|
-
/** PollerInfo
|
|
28492
|
-
|
|
29266
|
+
/** PollerInfo workerVersionCapabilities */
|
|
29267
|
+
workerVersionCapabilities?: (temporal.api.common.v1.IWorkerVersionCapabilities|null);
|
|
28493
29268
|
}
|
|
28494
29269
|
|
|
28495
29270
|
/** Represents a PollerInfo. */
|
|
@@ -28510,8 +29285,8 @@ export namespace temporal {
|
|
|
28510
29285
|
/** PollerInfo ratePerSecond. */
|
|
28511
29286
|
public ratePerSecond: number;
|
|
28512
29287
|
|
|
28513
|
-
/** PollerInfo
|
|
28514
|
-
public
|
|
29288
|
+
/** PollerInfo workerVersionCapabilities. */
|
|
29289
|
+
public workerVersionCapabilities?: (temporal.api.common.v1.IWorkerVersionCapabilities|null);
|
|
28515
29290
|
|
|
28516
29291
|
/**
|
|
28517
29292
|
* Creates a new PollerInfo instance using the specified properties.
|
|
@@ -28680,192 +29455,96 @@ export namespace temporal {
|
|
|
28680
29455
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28681
29456
|
}
|
|
28682
29457
|
|
|
28683
|
-
/** Properties of a
|
|
28684
|
-
interface
|
|
28685
|
-
|
|
28686
|
-
/** VersionIdNode version */
|
|
28687
|
-
version?: (temporal.api.taskqueue.v1.IVersionId|null);
|
|
29458
|
+
/** Properties of a CompatibleVersionSet. */
|
|
29459
|
+
interface ICompatibleVersionSet {
|
|
28688
29460
|
|
|
28689
|
-
/**
|
|
28690
|
-
|
|
29461
|
+
/** CompatibleVersionSet versionSetId */
|
|
29462
|
+
versionSetId?: (string|null);
|
|
28691
29463
|
|
|
28692
|
-
/**
|
|
28693
|
-
|
|
29464
|
+
/** CompatibleVersionSet buildIds */
|
|
29465
|
+
buildIds?: (string[]|null);
|
|
28694
29466
|
}
|
|
28695
29467
|
|
|
28696
|
-
/** Represents a
|
|
28697
|
-
class
|
|
29468
|
+
/** Represents a CompatibleVersionSet. */
|
|
29469
|
+
class CompatibleVersionSet implements ICompatibleVersionSet {
|
|
28698
29470
|
|
|
28699
29471
|
/**
|
|
28700
|
-
* Constructs a new
|
|
29472
|
+
* Constructs a new CompatibleVersionSet.
|
|
28701
29473
|
* @param [properties] Properties to set
|
|
28702
29474
|
*/
|
|
28703
|
-
constructor(properties?: temporal.api.taskqueue.v1.
|
|
28704
|
-
|
|
28705
|
-
/** VersionIdNode version. */
|
|
28706
|
-
public version?: (temporal.api.taskqueue.v1.IVersionId|null);
|
|
29475
|
+
constructor(properties?: temporal.api.taskqueue.v1.ICompatibleVersionSet);
|
|
28707
29476
|
|
|
28708
|
-
/**
|
|
28709
|
-
public
|
|
29477
|
+
/** CompatibleVersionSet versionSetId. */
|
|
29478
|
+
public versionSetId: string;
|
|
28710
29479
|
|
|
28711
|
-
/**
|
|
28712
|
-
public
|
|
29480
|
+
/** CompatibleVersionSet buildIds. */
|
|
29481
|
+
public buildIds: string[];
|
|
28713
29482
|
|
|
28714
29483
|
/**
|
|
28715
|
-
* Creates a new
|
|
29484
|
+
* Creates a new CompatibleVersionSet instance using the specified properties.
|
|
28716
29485
|
* @param [properties] Properties to set
|
|
28717
|
-
* @returns
|
|
29486
|
+
* @returns CompatibleVersionSet instance
|
|
28718
29487
|
*/
|
|
28719
|
-
public static create(properties?: temporal.api.taskqueue.v1.
|
|
29488
|
+
public static create(properties?: temporal.api.taskqueue.v1.ICompatibleVersionSet): temporal.api.taskqueue.v1.CompatibleVersionSet;
|
|
28720
29489
|
|
|
28721
29490
|
/**
|
|
28722
|
-
* Encodes the specified
|
|
28723
|
-
* @param message
|
|
29491
|
+
* Encodes the specified CompatibleVersionSet message. Does not implicitly {@link temporal.api.taskqueue.v1.CompatibleVersionSet.verify|verify} messages.
|
|
29492
|
+
* @param message CompatibleVersionSet message or plain object to encode
|
|
28724
29493
|
* @param [writer] Writer to encode to
|
|
28725
29494
|
* @returns Writer
|
|
28726
29495
|
*/
|
|
28727
|
-
public static encode(message: temporal.api.taskqueue.v1.
|
|
29496
|
+
public static encode(message: temporal.api.taskqueue.v1.ICompatibleVersionSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28728
29497
|
|
|
28729
29498
|
/**
|
|
28730
|
-
* Encodes the specified
|
|
28731
|
-
* @param message
|
|
29499
|
+
* Encodes the specified CompatibleVersionSet message, length delimited. Does not implicitly {@link temporal.api.taskqueue.v1.CompatibleVersionSet.verify|verify} messages.
|
|
29500
|
+
* @param message CompatibleVersionSet message or plain object to encode
|
|
28732
29501
|
* @param [writer] Writer to encode to
|
|
28733
29502
|
* @returns Writer
|
|
28734
29503
|
*/
|
|
28735
|
-
public static encodeDelimited(message: temporal.api.taskqueue.v1.
|
|
29504
|
+
public static encodeDelimited(message: temporal.api.taskqueue.v1.ICompatibleVersionSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28736
29505
|
|
|
28737
29506
|
/**
|
|
28738
|
-
* Decodes a
|
|
29507
|
+
* Decodes a CompatibleVersionSet message from the specified reader or buffer.
|
|
28739
29508
|
* @param reader Reader or buffer to decode from
|
|
28740
29509
|
* @param [length] Message length if known beforehand
|
|
28741
|
-
* @returns
|
|
29510
|
+
* @returns CompatibleVersionSet
|
|
28742
29511
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28743
29512
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28744
29513
|
*/
|
|
28745
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.taskqueue.v1.
|
|
29514
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.taskqueue.v1.CompatibleVersionSet;
|
|
28746
29515
|
|
|
28747
29516
|
/**
|
|
28748
|
-
* Decodes a
|
|
29517
|
+
* Decodes a CompatibleVersionSet message from the specified reader or buffer, length delimited.
|
|
28749
29518
|
* @param reader Reader or buffer to decode from
|
|
28750
|
-
* @returns
|
|
29519
|
+
* @returns CompatibleVersionSet
|
|
28751
29520
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28752
29521
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28753
29522
|
*/
|
|
28754
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.taskqueue.v1.
|
|
29523
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.taskqueue.v1.CompatibleVersionSet;
|
|
28755
29524
|
|
|
28756
29525
|
/**
|
|
28757
|
-
* Creates a
|
|
29526
|
+
* Creates a CompatibleVersionSet message from a plain object. Also converts values to their respective internal types.
|
|
28758
29527
|
* @param object Plain object
|
|
28759
|
-
* @returns
|
|
29528
|
+
* @returns CompatibleVersionSet
|
|
28760
29529
|
*/
|
|
28761
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.taskqueue.v1.
|
|
29530
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.taskqueue.v1.CompatibleVersionSet;
|
|
28762
29531
|
|
|
28763
29532
|
/**
|
|
28764
|
-
* Creates a plain object from a
|
|
28765
|
-
* @param message
|
|
29533
|
+
* Creates a plain object from a CompatibleVersionSet message. Also converts values to other types if specified.
|
|
29534
|
+
* @param message CompatibleVersionSet
|
|
28766
29535
|
* @param [options] Conversion options
|
|
28767
29536
|
* @returns Plain object
|
|
28768
29537
|
*/
|
|
28769
|
-
public static toObject(message: temporal.api.taskqueue.v1.
|
|
29538
|
+
public static toObject(message: temporal.api.taskqueue.v1.CompatibleVersionSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28770
29539
|
|
|
28771
29540
|
/**
|
|
28772
|
-
* Converts this
|
|
29541
|
+
* Converts this CompatibleVersionSet to JSON.
|
|
28773
29542
|
* @returns JSON object
|
|
28774
29543
|
*/
|
|
28775
29544
|
public toJSON(): { [k: string]: any };
|
|
28776
29545
|
|
|
28777
29546
|
/**
|
|
28778
|
-
* Gets the default type url for
|
|
28779
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28780
|
-
* @returns The default type url
|
|
28781
|
-
*/
|
|
28782
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28783
|
-
}
|
|
28784
|
-
|
|
28785
|
-
/** Properties of a VersionId. */
|
|
28786
|
-
interface IVersionId {
|
|
28787
|
-
|
|
28788
|
-
/** VersionId workerBuildId */
|
|
28789
|
-
workerBuildId?: (string|null);
|
|
28790
|
-
}
|
|
28791
|
-
|
|
28792
|
-
/** Represents a VersionId. */
|
|
28793
|
-
class VersionId implements IVersionId {
|
|
28794
|
-
|
|
28795
|
-
/**
|
|
28796
|
-
* Constructs a new VersionId.
|
|
28797
|
-
* @param [properties] Properties to set
|
|
28798
|
-
*/
|
|
28799
|
-
constructor(properties?: temporal.api.taskqueue.v1.IVersionId);
|
|
28800
|
-
|
|
28801
|
-
/** VersionId workerBuildId. */
|
|
28802
|
-
public workerBuildId: string;
|
|
28803
|
-
|
|
28804
|
-
/**
|
|
28805
|
-
* Creates a new VersionId instance using the specified properties.
|
|
28806
|
-
* @param [properties] Properties to set
|
|
28807
|
-
* @returns VersionId instance
|
|
28808
|
-
*/
|
|
28809
|
-
public static create(properties?: temporal.api.taskqueue.v1.IVersionId): temporal.api.taskqueue.v1.VersionId;
|
|
28810
|
-
|
|
28811
|
-
/**
|
|
28812
|
-
* Encodes the specified VersionId message. Does not implicitly {@link temporal.api.taskqueue.v1.VersionId.verify|verify} messages.
|
|
28813
|
-
* @param message VersionId message or plain object to encode
|
|
28814
|
-
* @param [writer] Writer to encode to
|
|
28815
|
-
* @returns Writer
|
|
28816
|
-
*/
|
|
28817
|
-
public static encode(message: temporal.api.taskqueue.v1.IVersionId, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28818
|
-
|
|
28819
|
-
/**
|
|
28820
|
-
* Encodes the specified VersionId message, length delimited. Does not implicitly {@link temporal.api.taskqueue.v1.VersionId.verify|verify} messages.
|
|
28821
|
-
* @param message VersionId message or plain object to encode
|
|
28822
|
-
* @param [writer] Writer to encode to
|
|
28823
|
-
* @returns Writer
|
|
28824
|
-
*/
|
|
28825
|
-
public static encodeDelimited(message: temporal.api.taskqueue.v1.IVersionId, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28826
|
-
|
|
28827
|
-
/**
|
|
28828
|
-
* Decodes a VersionId message from the specified reader or buffer.
|
|
28829
|
-
* @param reader Reader or buffer to decode from
|
|
28830
|
-
* @param [length] Message length if known beforehand
|
|
28831
|
-
* @returns VersionId
|
|
28832
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28833
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28834
|
-
*/
|
|
28835
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.taskqueue.v1.VersionId;
|
|
28836
|
-
|
|
28837
|
-
/**
|
|
28838
|
-
* Decodes a VersionId message from the specified reader or buffer, length delimited.
|
|
28839
|
-
* @param reader Reader or buffer to decode from
|
|
28840
|
-
* @returns VersionId
|
|
28841
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28842
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28843
|
-
*/
|
|
28844
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.taskqueue.v1.VersionId;
|
|
28845
|
-
|
|
28846
|
-
/**
|
|
28847
|
-
* Creates a VersionId message from a plain object. Also converts values to their respective internal types.
|
|
28848
|
-
* @param object Plain object
|
|
28849
|
-
* @returns VersionId
|
|
28850
|
-
*/
|
|
28851
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.taskqueue.v1.VersionId;
|
|
28852
|
-
|
|
28853
|
-
/**
|
|
28854
|
-
* Creates a plain object from a VersionId message. Also converts values to other types if specified.
|
|
28855
|
-
* @param message VersionId
|
|
28856
|
-
* @param [options] Conversion options
|
|
28857
|
-
* @returns Plain object
|
|
28858
|
-
*/
|
|
28859
|
-
public static toObject(message: temporal.api.taskqueue.v1.VersionId, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28860
|
-
|
|
28861
|
-
/**
|
|
28862
|
-
* Converts this VersionId to JSON.
|
|
28863
|
-
* @returns JSON object
|
|
28864
|
-
*/
|
|
28865
|
-
public toJSON(): { [k: string]: any };
|
|
28866
|
-
|
|
28867
|
-
/**
|
|
28868
|
-
* Gets the default type url for VersionId
|
|
29547
|
+
* Gets the default type url for CompatibleVersionSet
|
|
28869
29548
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28870
29549
|
* @returns The default type url
|
|
28871
29550
|
*/
|
|
@@ -29820,6 +30499,9 @@ export namespace temporal {
|
|
|
29820
30499
|
|
|
29821
30500
|
/** WorkflowExecutionInfo historySizeBytes */
|
|
29822
30501
|
historySizeBytes?: (Long|null);
|
|
30502
|
+
|
|
30503
|
+
/** WorkflowExecutionInfo mostRecentWorkerVersionStamp */
|
|
30504
|
+
mostRecentWorkerVersionStamp?: (temporal.api.common.v1.IWorkerVersionStamp|null);
|
|
29823
30505
|
}
|
|
29824
30506
|
|
|
29825
30507
|
/** Represents a WorkflowExecutionInfo. */
|
|
@@ -29876,6 +30558,9 @@ export namespace temporal {
|
|
|
29876
30558
|
/** WorkflowExecutionInfo historySizeBytes. */
|
|
29877
30559
|
public historySizeBytes: Long;
|
|
29878
30560
|
|
|
30561
|
+
/** WorkflowExecutionInfo mostRecentWorkerVersionStamp. */
|
|
30562
|
+
public mostRecentWorkerVersionStamp?: (temporal.api.common.v1.IWorkerVersionStamp|null);
|
|
30563
|
+
|
|
29879
30564
|
/**
|
|
29880
30565
|
* Creates a new WorkflowExecutionInfo instance using the specified properties.
|
|
29881
30566
|
* @param [properties] Properties to set
|