@temporalio/proto 1.4.3 → 1.5.0

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/protos/root.d.ts CHANGED
@@ -1871,6 +1871,9 @@ export namespace coresdk {
1871
1871
 
1872
1872
  /** StartWorkflow searchAttributes */
1873
1873
  searchAttributes?: (temporal.api.common.v1.ISearchAttributes|null);
1874
+
1875
+ /** StartWorkflow startTime */
1876
+ startTime?: (google.protobuf.ITimestamp|null);
1874
1877
  }
1875
1878
 
1876
1879
  /** Represents a StartWorkflow. */
@@ -1948,6 +1951,9 @@ export namespace coresdk {
1948
1951
  /** StartWorkflow searchAttributes. */
1949
1952
  public searchAttributes?: (temporal.api.common.v1.ISearchAttributes|null);
1950
1953
 
1954
+ /** StartWorkflow startTime. */
1955
+ public startTime?: (google.protobuf.ITimestamp|null);
1956
+
1951
1957
  /**
1952
1958
  * Creates a new StartWorkflow instance using the specified properties.
1953
1959
  * @param [properties] Properties to set
@@ -3954,6 +3960,9 @@ export namespace coresdk {
3954
3960
 
3955
3961
  /** WorkflowCommand upsertWorkflowSearchAttributes */
3956
3962
  upsertWorkflowSearchAttributes?: (coresdk.workflow_commands.IUpsertWorkflowSearchAttributes|null);
3963
+
3964
+ /** WorkflowCommand modifyWorkflowProperties */
3965
+ modifyWorkflowProperties?: (coresdk.workflow_commands.IModifyWorkflowProperties|null);
3957
3966
  }
3958
3967
 
3959
3968
  /** Represents a WorkflowCommand. */
@@ -4019,8 +4028,11 @@ export namespace coresdk {
4019
4028
  /** WorkflowCommand upsertWorkflowSearchAttributes. */
4020
4029
  public upsertWorkflowSearchAttributes?: (coresdk.workflow_commands.IUpsertWorkflowSearchAttributes|null);
4021
4030
 
4031
+ /** WorkflowCommand modifyWorkflowProperties. */
4032
+ public modifyWorkflowProperties?: (coresdk.workflow_commands.IModifyWorkflowProperties|null);
4033
+
4022
4034
  /** WorkflowCommand variant. */
4023
- public variant?: ("startTimer"|"scheduleActivity"|"respondToQuery"|"requestCancelActivity"|"cancelTimer"|"completeWorkflowExecution"|"failWorkflowExecution"|"continueAsNewWorkflowExecution"|"cancelWorkflowExecution"|"setPatchMarker"|"startChildWorkflowExecution"|"cancelChildWorkflowExecution"|"requestCancelExternalWorkflowExecution"|"signalExternalWorkflowExecution"|"cancelSignalWorkflow"|"scheduleLocalActivity"|"requestCancelLocalActivity"|"upsertWorkflowSearchAttributes");
4035
+ public variant?: ("startTimer"|"scheduleActivity"|"respondToQuery"|"requestCancelActivity"|"cancelTimer"|"completeWorkflowExecution"|"failWorkflowExecution"|"continueAsNewWorkflowExecution"|"cancelWorkflowExecution"|"setPatchMarker"|"startChildWorkflowExecution"|"cancelChildWorkflowExecution"|"requestCancelExternalWorkflowExecution"|"signalExternalWorkflowExecution"|"cancelSignalWorkflow"|"scheduleLocalActivity"|"requestCancelLocalActivity"|"upsertWorkflowSearchAttributes"|"modifyWorkflowProperties");
4024
4036
 
4025
4037
  /**
4026
4038
  * Creates a new WorkflowCommand instance using the specified properties.
@@ -4291,9 +4303,6 @@ export namespace coresdk {
4291
4303
  /** ScheduleActivity activityType */
4292
4304
  activityType?: (string|null);
4293
4305
 
4294
- /** ScheduleActivity namespace */
4295
- namespace?: (string|null);
4296
-
4297
4306
  /** ScheduleActivity taskQueue */
4298
4307
  taskQueue?: (string|null);
4299
4308
 
@@ -4343,9 +4352,6 @@ export namespace coresdk {
4343
4352
  /** ScheduleActivity activityType. */
4344
4353
  public activityType: string;
4345
4354
 
4346
- /** ScheduleActivity namespace. */
4347
- public namespace: string;
4348
-
4349
4355
  /** ScheduleActivity taskQueue. */
4350
4356
  public taskQueue: string;
4351
4357
 
@@ -6172,6 +6178,96 @@ export namespace coresdk {
6172
6178
  */
6173
6179
  public static getTypeUrl(typeUrlPrefix?: string): string;
6174
6180
  }
6181
+
6182
+ /** Properties of a ModifyWorkflowProperties. */
6183
+ interface IModifyWorkflowProperties {
6184
+
6185
+ /** ModifyWorkflowProperties upsertedMemo */
6186
+ upsertedMemo?: (temporal.api.common.v1.IMemo|null);
6187
+ }
6188
+
6189
+ /** Represents a ModifyWorkflowProperties. */
6190
+ class ModifyWorkflowProperties implements IModifyWorkflowProperties {
6191
+
6192
+ /**
6193
+ * Constructs a new ModifyWorkflowProperties.
6194
+ * @param [properties] Properties to set
6195
+ */
6196
+ constructor(properties?: coresdk.workflow_commands.IModifyWorkflowProperties);
6197
+
6198
+ /** ModifyWorkflowProperties upsertedMemo. */
6199
+ public upsertedMemo?: (temporal.api.common.v1.IMemo|null);
6200
+
6201
+ /**
6202
+ * Creates a new ModifyWorkflowProperties instance using the specified properties.
6203
+ * @param [properties] Properties to set
6204
+ * @returns ModifyWorkflowProperties instance
6205
+ */
6206
+ public static create(properties?: coresdk.workflow_commands.IModifyWorkflowProperties): coresdk.workflow_commands.ModifyWorkflowProperties;
6207
+
6208
+ /**
6209
+ * Encodes the specified ModifyWorkflowProperties message. Does not implicitly {@link coresdk.workflow_commands.ModifyWorkflowProperties.verify|verify} messages.
6210
+ * @param message ModifyWorkflowProperties message or plain object to encode
6211
+ * @param [writer] Writer to encode to
6212
+ * @returns Writer
6213
+ */
6214
+ public static encode(message: coresdk.workflow_commands.IModifyWorkflowProperties, writer?: $protobuf.Writer): $protobuf.Writer;
6215
+
6216
+ /**
6217
+ * Encodes the specified ModifyWorkflowProperties message, length delimited. Does not implicitly {@link coresdk.workflow_commands.ModifyWorkflowProperties.verify|verify} messages.
6218
+ * @param message ModifyWorkflowProperties message or plain object to encode
6219
+ * @param [writer] Writer to encode to
6220
+ * @returns Writer
6221
+ */
6222
+ public static encodeDelimited(message: coresdk.workflow_commands.IModifyWorkflowProperties, writer?: $protobuf.Writer): $protobuf.Writer;
6223
+
6224
+ /**
6225
+ * Decodes a ModifyWorkflowProperties message from the specified reader or buffer.
6226
+ * @param reader Reader or buffer to decode from
6227
+ * @param [length] Message length if known beforehand
6228
+ * @returns ModifyWorkflowProperties
6229
+ * @throws {Error} If the payload is not a reader or valid buffer
6230
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6231
+ */
6232
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): coresdk.workflow_commands.ModifyWorkflowProperties;
6233
+
6234
+ /**
6235
+ * Decodes a ModifyWorkflowProperties message from the specified reader or buffer, length delimited.
6236
+ * @param reader Reader or buffer to decode from
6237
+ * @returns ModifyWorkflowProperties
6238
+ * @throws {Error} If the payload is not a reader or valid buffer
6239
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6240
+ */
6241
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): coresdk.workflow_commands.ModifyWorkflowProperties;
6242
+
6243
+ /**
6244
+ * Creates a ModifyWorkflowProperties message from a plain object. Also converts values to their respective internal types.
6245
+ * @param object Plain object
6246
+ * @returns ModifyWorkflowProperties
6247
+ */
6248
+ public static fromObject(object: { [k: string]: any }): coresdk.workflow_commands.ModifyWorkflowProperties;
6249
+
6250
+ /**
6251
+ * Creates a plain object from a ModifyWorkflowProperties message. Also converts values to other types if specified.
6252
+ * @param message ModifyWorkflowProperties
6253
+ * @param [options] Conversion options
6254
+ * @returns Plain object
6255
+ */
6256
+ public static toObject(message: coresdk.workflow_commands.ModifyWorkflowProperties, options?: $protobuf.IConversionOptions): { [k: string]: any };
6257
+
6258
+ /**
6259
+ * Converts this ModifyWorkflowProperties to JSON.
6260
+ * @returns JSON object
6261
+ */
6262
+ public toJSON(): { [k: string]: any };
6263
+
6264
+ /**
6265
+ * Gets the default type url for ModifyWorkflowProperties
6266
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6267
+ * @returns The default type url
6268
+ */
6269
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6270
+ }
6175
6271
  }
6176
6272
 
6177
6273
  /** Namespace workflow_completion. */
@@ -7596,7 +7692,8 @@ export namespace temporal {
7596
7692
  WORKFLOW_TASK_FAILED_CAUSE_BAD_BINARY = 21,
7597
7693
  WORKFLOW_TASK_FAILED_CAUSE_SCHEDULE_ACTIVITY_DUPLICATE_ID = 22,
7598
7694
  WORKFLOW_TASK_FAILED_CAUSE_BAD_SEARCH_ATTRIBUTES = 23,
7599
- WORKFLOW_TASK_FAILED_CAUSE_NON_DETERMINISTIC_ERROR = 24
7695
+ WORKFLOW_TASK_FAILED_CAUSE_NON_DETERMINISTIC_ERROR = 24,
7696
+ WORKFLOW_TASK_FAILED_CAUSE_BAD_MODIFY_WORKFLOW_PROPERTIES_ATTRIBUTES = 25
7600
7697
  }
7601
7698
 
7602
7699
  /** StartChildWorkflowExecutionFailedCause enum. */
@@ -7625,7 +7722,8 @@ export namespace temporal {
7625
7722
  RESOURCE_EXHAUSTED_CAUSE_UNSPECIFIED = 0,
7626
7723
  RESOURCE_EXHAUSTED_CAUSE_RPS_LIMIT = 1,
7627
7724
  RESOURCE_EXHAUSTED_CAUSE_CONCURRENT_LIMIT = 2,
7628
- RESOURCE_EXHAUSTED_CAUSE_SYSTEM_OVERLOADED = 3
7725
+ RESOURCE_EXHAUSTED_CAUSE_SYSTEM_OVERLOADED = 3,
7726
+ RESOURCE_EXHAUSTED_CAUSE_PERSISTENCE_LIMIT = 4
7629
7727
  }
7630
7728
 
7631
7729
  /** QueryResultType enum. */
@@ -7723,7 +7821,8 @@ export namespace temporal {
7723
7821
  EVENT_TYPE_WORKFLOW_UPDATE_ACCEPTED = 42,
7724
7822
  EVENT_TYPE_WORKFLOW_UPDATE_COMPLETED = 43,
7725
7823
  EVENT_TYPE_WORKFLOW_PROPERTIES_MODIFIED_EXTERNALLY = 44,
7726
- EVENT_TYPE_ACTIVITY_PROPERTIES_MODIFIED_EXTERNALLY = 45
7824
+ EVENT_TYPE_ACTIVITY_PROPERTIES_MODIFIED_EXTERNALLY = 45,
7825
+ EVENT_TYPE_WORKFLOW_PROPERTIES_MODIFIED = 46
7727
7826
  }
7728
7827
 
7729
7828
  /** CommandType enum. */
@@ -7743,7 +7842,8 @@ export namespace temporal {
7743
7842
  COMMAND_TYPE_SIGNAL_EXTERNAL_WORKFLOW_EXECUTION = 12,
7744
7843
  COMMAND_TYPE_UPSERT_WORKFLOW_SEARCH_ATTRIBUTES = 13,
7745
7844
  COMMAND_TYPE_ACCEPT_WORKFLOW_UPDATE = 14,
7746
- COMMAND_TYPE_COMPLETE_WORKFLOW_UPDATE = 15
7845
+ COMMAND_TYPE_COMPLETE_WORKFLOW_UPDATE = 15,
7846
+ COMMAND_TYPE_MODIFY_WORKFLOW_PROPERTIES = 16
7747
7847
  }
7748
7848
 
7749
7849
  /** ScheduleOverlapPolicy enum. */
@@ -7756,15 +7856,6 @@ export namespace temporal {
7756
7856
  SCHEDULE_OVERLAP_POLICY_TERMINATE_OTHER = 5,
7757
7857
  SCHEDULE_OVERLAP_POLICY_ALLOW_ALL = 6
7758
7858
  }
7759
-
7760
- /** ClusterMemberRole enum. */
7761
- enum ClusterMemberRole {
7762
- CLUSTER_MEMBER_ROLE_UNSPECIFIED = 0,
7763
- CLUSTER_MEMBER_ROLE_FRONTEND = 1,
7764
- CLUSTER_MEMBER_ROLE_HISTORY = 2,
7765
- CLUSTER_MEMBER_ROLE_MATCHING = 3,
7766
- CLUSTER_MEMBER_ROLE_WORKER = 4
7767
- }
7768
7859
  }
7769
7860
  }
7770
7861
 
@@ -9109,6 +9200,20 @@ export namespace temporal {
9109
9200
  */
9110
9201
  public terminateWorkflowExecution(request: temporal.api.workflowservice.v1.ITerminateWorkflowExecutionRequest): Promise<temporal.api.workflowservice.v1.TerminateWorkflowExecutionResponse>;
9111
9202
 
9203
+ /**
9204
+ * Calls DeleteWorkflowExecution.
9205
+ * @param request DeleteWorkflowExecutionRequest message or plain object
9206
+ * @param callback Node-style callback called with the error, if any, and DeleteWorkflowExecutionResponse
9207
+ */
9208
+ public deleteWorkflowExecution(request: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionRequest, callback: temporal.api.workflowservice.v1.WorkflowService.DeleteWorkflowExecutionCallback): void;
9209
+
9210
+ /**
9211
+ * Calls DeleteWorkflowExecution.
9212
+ * @param request DeleteWorkflowExecutionRequest message or plain object
9213
+ * @returns Promise
9214
+ */
9215
+ public deleteWorkflowExecution(request: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionRequest): Promise<temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse>;
9216
+
9112
9217
  /**
9113
9218
  * Calls ListOpenWorkflowExecutions.
9114
9219
  * @param request ListOpenWorkflowExecutionsRequest message or plain object
@@ -9693,6 +9798,13 @@ export namespace temporal {
9693
9798
  */
9694
9799
  type TerminateWorkflowExecutionCallback = (error: (Error|null), response?: temporal.api.workflowservice.v1.TerminateWorkflowExecutionResponse) => void;
9695
9800
 
9801
+ /**
9802
+ * Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#deleteWorkflowExecution}.
9803
+ * @param error Error, if any
9804
+ * @param [response] DeleteWorkflowExecutionResponse
9805
+ */
9806
+ type DeleteWorkflowExecutionCallback = (error: (Error|null), response?: temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse) => void;
9807
+
9696
9808
  /**
9697
9809
  * Callback as used by {@link temporal.api.workflowservice.v1.WorkflowService#listOpenWorkflowExecutions}.
9698
9810
  * @param error Error, if any
@@ -11700,8 +11812,8 @@ export namespace temporal {
11700
11812
  /** PollWorkflowTaskQueueRequest binaryChecksum */
11701
11813
  binaryChecksum?: (string|null);
11702
11814
 
11703
- /** PollWorkflowTaskQueueRequest workerVersioningBuildId */
11704
- workerVersioningBuildId?: (string|null);
11815
+ /** PollWorkflowTaskQueueRequest workerVersioningId */
11816
+ workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
11705
11817
  }
11706
11818
 
11707
11819
  /** Represents a PollWorkflowTaskQueueRequest. */
@@ -11725,8 +11837,8 @@ export namespace temporal {
11725
11837
  /** PollWorkflowTaskQueueRequest binaryChecksum. */
11726
11838
  public binaryChecksum: string;
11727
11839
 
11728
- /** PollWorkflowTaskQueueRequest workerVersioningBuildId. */
11729
- public workerVersioningBuildId: string;
11840
+ /** PollWorkflowTaskQueueRequest workerVersioningId. */
11841
+ public workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
11730
11842
 
11731
11843
  /**
11732
11844
  * Creates a new PollWorkflowTaskQueueRequest instance using the specified properties.
@@ -11996,6 +12108,9 @@ export namespace temporal {
11996
12108
 
11997
12109
  /** RespondWorkflowTaskCompletedRequest namespace */
11998
12110
  namespace?: (string|null);
12111
+
12112
+ /** RespondWorkflowTaskCompletedRequest workerVersioningId */
12113
+ workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
11999
12114
  }
12000
12115
 
12001
12116
  /** Represents a RespondWorkflowTaskCompletedRequest. */
@@ -12034,6 +12149,9 @@ export namespace temporal {
12034
12149
  /** RespondWorkflowTaskCompletedRequest namespace. */
12035
12150
  public namespace: string;
12036
12151
 
12152
+ /** RespondWorkflowTaskCompletedRequest workerVersioningId. */
12153
+ public workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
12154
+
12037
12155
  /**
12038
12156
  * Creates a new RespondWorkflowTaskCompletedRequest instance using the specified properties.
12039
12157
  * @param [properties] Properties to set
@@ -12420,8 +12538,8 @@ export namespace temporal {
12420
12538
  /** PollActivityTaskQueueRequest taskQueueMetadata */
12421
12539
  taskQueueMetadata?: (temporal.api.taskqueue.v1.ITaskQueueMetadata|null);
12422
12540
 
12423
- /** PollActivityTaskQueueRequest workerVersioningBuildId */
12424
- workerVersioningBuildId?: (string|null);
12541
+ /** PollActivityTaskQueueRequest workerVersioningId */
12542
+ workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
12425
12543
  }
12426
12544
 
12427
12545
  /** Represents a PollActivityTaskQueueRequest. */
@@ -12445,8 +12563,8 @@ export namespace temporal {
12445
12563
  /** PollActivityTaskQueueRequest taskQueueMetadata. */
12446
12564
  public taskQueueMetadata?: (temporal.api.taskqueue.v1.ITaskQueueMetadata|null);
12447
12565
 
12448
- /** PollActivityTaskQueueRequest workerVersioningBuildId. */
12449
- public workerVersioningBuildId: string;
12566
+ /** PollActivityTaskQueueRequest workerVersioningId. */
12567
+ public workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
12450
12568
 
12451
12569
  /**
12452
12570
  * Creates a new PollActivityTaskQueueRequest instance using the specified properties.
@@ -15447,6 +15565,186 @@ export namespace temporal {
15447
15565
  public static getTypeUrl(typeUrlPrefix?: string): string;
15448
15566
  }
15449
15567
 
15568
+ /** Properties of a DeleteWorkflowExecutionRequest. */
15569
+ interface IDeleteWorkflowExecutionRequest {
15570
+
15571
+ /** DeleteWorkflowExecutionRequest namespace */
15572
+ namespace?: (string|null);
15573
+
15574
+ /** DeleteWorkflowExecutionRequest workflowExecution */
15575
+ workflowExecution?: (temporal.api.common.v1.IWorkflowExecution|null);
15576
+ }
15577
+
15578
+ /** Represents a DeleteWorkflowExecutionRequest. */
15579
+ class DeleteWorkflowExecutionRequest implements IDeleteWorkflowExecutionRequest {
15580
+
15581
+ /**
15582
+ * Constructs a new DeleteWorkflowExecutionRequest.
15583
+ * @param [properties] Properties to set
15584
+ */
15585
+ constructor(properties?: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionRequest);
15586
+
15587
+ /** DeleteWorkflowExecutionRequest namespace. */
15588
+ public namespace: string;
15589
+
15590
+ /** DeleteWorkflowExecutionRequest workflowExecution. */
15591
+ public workflowExecution?: (temporal.api.common.v1.IWorkflowExecution|null);
15592
+
15593
+ /**
15594
+ * Creates a new DeleteWorkflowExecutionRequest instance using the specified properties.
15595
+ * @param [properties] Properties to set
15596
+ * @returns DeleteWorkflowExecutionRequest instance
15597
+ */
15598
+ public static create(properties?: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionRequest): temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest;
15599
+
15600
+ /**
15601
+ * Encodes the specified DeleteWorkflowExecutionRequest message. Does not implicitly {@link temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest.verify|verify} messages.
15602
+ * @param message DeleteWorkflowExecutionRequest message or plain object to encode
15603
+ * @param [writer] Writer to encode to
15604
+ * @returns Writer
15605
+ */
15606
+ public static encode(message: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15607
+
15608
+ /**
15609
+ * Encodes the specified DeleteWorkflowExecutionRequest message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest.verify|verify} messages.
15610
+ * @param message DeleteWorkflowExecutionRequest message or plain object to encode
15611
+ * @param [writer] Writer to encode to
15612
+ * @returns Writer
15613
+ */
15614
+ public static encodeDelimited(message: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15615
+
15616
+ /**
15617
+ * Decodes a DeleteWorkflowExecutionRequest message from the specified reader or buffer.
15618
+ * @param reader Reader or buffer to decode from
15619
+ * @param [length] Message length if known beforehand
15620
+ * @returns DeleteWorkflowExecutionRequest
15621
+ * @throws {Error} If the payload is not a reader or valid buffer
15622
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15623
+ */
15624
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest;
15625
+
15626
+ /**
15627
+ * Decodes a DeleteWorkflowExecutionRequest message from the specified reader or buffer, length delimited.
15628
+ * @param reader Reader or buffer to decode from
15629
+ * @returns DeleteWorkflowExecutionRequest
15630
+ * @throws {Error} If the payload is not a reader or valid buffer
15631
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15632
+ */
15633
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest;
15634
+
15635
+ /**
15636
+ * Creates a DeleteWorkflowExecutionRequest message from a plain object. Also converts values to their respective internal types.
15637
+ * @param object Plain object
15638
+ * @returns DeleteWorkflowExecutionRequest
15639
+ */
15640
+ public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest;
15641
+
15642
+ /**
15643
+ * Creates a plain object from a DeleteWorkflowExecutionRequest message. Also converts values to other types if specified.
15644
+ * @param message DeleteWorkflowExecutionRequest
15645
+ * @param [options] Conversion options
15646
+ * @returns Plain object
15647
+ */
15648
+ public static toObject(message: temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
15649
+
15650
+ /**
15651
+ * Converts this DeleteWorkflowExecutionRequest to JSON.
15652
+ * @returns JSON object
15653
+ */
15654
+ public toJSON(): { [k: string]: any };
15655
+
15656
+ /**
15657
+ * Gets the default type url for DeleteWorkflowExecutionRequest
15658
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15659
+ * @returns The default type url
15660
+ */
15661
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15662
+ }
15663
+
15664
+ /** Properties of a DeleteWorkflowExecutionResponse. */
15665
+ interface IDeleteWorkflowExecutionResponse {
15666
+ }
15667
+
15668
+ /** Represents a DeleteWorkflowExecutionResponse. */
15669
+ class DeleteWorkflowExecutionResponse implements IDeleteWorkflowExecutionResponse {
15670
+
15671
+ /**
15672
+ * Constructs a new DeleteWorkflowExecutionResponse.
15673
+ * @param [properties] Properties to set
15674
+ */
15675
+ constructor(properties?: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionResponse);
15676
+
15677
+ /**
15678
+ * Creates a new DeleteWorkflowExecutionResponse instance using the specified properties.
15679
+ * @param [properties] Properties to set
15680
+ * @returns DeleteWorkflowExecutionResponse instance
15681
+ */
15682
+ public static create(properties?: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionResponse): temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse;
15683
+
15684
+ /**
15685
+ * Encodes the specified DeleteWorkflowExecutionResponse message. Does not implicitly {@link temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse.verify|verify} messages.
15686
+ * @param message DeleteWorkflowExecutionResponse message or plain object to encode
15687
+ * @param [writer] Writer to encode to
15688
+ * @returns Writer
15689
+ */
15690
+ public static encode(message: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15691
+
15692
+ /**
15693
+ * Encodes the specified DeleteWorkflowExecutionResponse message, length delimited. Does not implicitly {@link temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse.verify|verify} messages.
15694
+ * @param message DeleteWorkflowExecutionResponse message or plain object to encode
15695
+ * @param [writer] Writer to encode to
15696
+ * @returns Writer
15697
+ */
15698
+ public static encodeDelimited(message: temporal.api.workflowservice.v1.IDeleteWorkflowExecutionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15699
+
15700
+ /**
15701
+ * Decodes a DeleteWorkflowExecutionResponse message from the specified reader or buffer.
15702
+ * @param reader Reader or buffer to decode from
15703
+ * @param [length] Message length if known beforehand
15704
+ * @returns DeleteWorkflowExecutionResponse
15705
+ * @throws {Error} If the payload is not a reader or valid buffer
15706
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15707
+ */
15708
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse;
15709
+
15710
+ /**
15711
+ * Decodes a DeleteWorkflowExecutionResponse message from the specified reader or buffer, length delimited.
15712
+ * @param reader Reader or buffer to decode from
15713
+ * @returns DeleteWorkflowExecutionResponse
15714
+ * @throws {Error} If the payload is not a reader or valid buffer
15715
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15716
+ */
15717
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse;
15718
+
15719
+ /**
15720
+ * Creates a DeleteWorkflowExecutionResponse message from a plain object. Also converts values to their respective internal types.
15721
+ * @param object Plain object
15722
+ * @returns DeleteWorkflowExecutionResponse
15723
+ */
15724
+ public static fromObject(object: { [k: string]: any }): temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse;
15725
+
15726
+ /**
15727
+ * Creates a plain object from a DeleteWorkflowExecutionResponse message. Also converts values to other types if specified.
15728
+ * @param message DeleteWorkflowExecutionResponse
15729
+ * @param [options] Conversion options
15730
+ * @returns Plain object
15731
+ */
15732
+ public static toObject(message: temporal.api.workflowservice.v1.DeleteWorkflowExecutionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
15733
+
15734
+ /**
15735
+ * Converts this DeleteWorkflowExecutionResponse to JSON.
15736
+ * @returns JSON object
15737
+ */
15738
+ public toJSON(): { [k: string]: any };
15739
+
15740
+ /**
15741
+ * Gets the default type url for DeleteWorkflowExecutionResponse
15742
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15743
+ * @returns The default type url
15744
+ */
15745
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15746
+ }
15747
+
15450
15748
  /** Properties of a ListOpenWorkflowExecutionsRequest. */
15451
15749
  interface IListOpenWorkflowExecutionsRequest {
15452
15750
 
@@ -18274,6 +18572,12 @@ export namespace temporal {
18274
18572
 
18275
18573
  /** Capabilities encodedFailureAttributes */
18276
18574
  encodedFailureAttributes?: (boolean|null);
18575
+
18576
+ /** Capabilities buildIdBasedVersioning */
18577
+ buildIdBasedVersioning?: (boolean|null);
18578
+
18579
+ /** Capabilities upsertMemo */
18580
+ upsertMemo?: (boolean|null);
18277
18581
  }
18278
18582
 
18279
18583
  /** Represents a Capabilities. */
@@ -18300,6 +18604,12 @@ export namespace temporal {
18300
18604
  /** Capabilities encodedFailureAttributes. */
18301
18605
  public encodedFailureAttributes: boolean;
18302
18606
 
18607
+ /** Capabilities buildIdBasedVersioning. */
18608
+ public buildIdBasedVersioning: boolean;
18609
+
18610
+ /** Capabilities upsertMemo. */
18611
+ public upsertMemo: boolean;
18612
+
18303
18613
  /**
18304
18614
  * Creates a new Capabilities instance using the specified properties.
18305
18615
  * @param [properties] Properties to set
@@ -20610,6 +20920,12 @@ export namespace temporal {
20610
20920
  /** StartBatchOperationRequest visibilityQuery */
20611
20921
  visibilityQuery?: (string|null);
20612
20922
 
20923
+ /** StartBatchOperationRequest jobId */
20924
+ jobId?: (string|null);
20925
+
20926
+ /** StartBatchOperationRequest reason */
20927
+ reason?: (string|null);
20928
+
20613
20929
  /** StartBatchOperationRequest terminationOperation */
20614
20930
  terminationOperation?: (temporal.api.batch.v1.IBatchOperationTermination|null);
20615
20931
 
@@ -20635,6 +20951,12 @@ export namespace temporal {
20635
20951
  /** StartBatchOperationRequest visibilityQuery. */
20636
20952
  public visibilityQuery: string;
20637
20953
 
20954
+ /** StartBatchOperationRequest jobId. */
20955
+ public jobId: string;
20956
+
20957
+ /** StartBatchOperationRequest reason. */
20958
+ public reason: string;
20959
+
20638
20960
  /** StartBatchOperationRequest terminationOperation. */
20639
20961
  public terminationOperation?: (temporal.api.batch.v1.IBatchOperationTermination|null);
20640
20962
 
@@ -20720,9 +21042,6 @@ export namespace temporal {
20720
21042
 
20721
21043
  /** Properties of a StartBatchOperationResponse. */
20722
21044
  interface IStartBatchOperationResponse {
20723
-
20724
- /** StartBatchOperationResponse jobId */
20725
- jobId?: (string|null);
20726
21045
  }
20727
21046
 
20728
21047
  /** Represents a StartBatchOperationResponse. */
@@ -20734,9 +21053,6 @@ export namespace temporal {
20734
21053
  */
20735
21054
  constructor(properties?: temporal.api.workflowservice.v1.IStartBatchOperationResponse);
20736
21055
 
20737
- /** StartBatchOperationResponse jobId. */
20738
- public jobId: string;
20739
-
20740
21056
  /**
20741
21057
  * Creates a new StartBatchOperationResponse instance using the specified properties.
20742
21058
  * @param [properties] Properties to set
@@ -20816,6 +21132,12 @@ export namespace temporal {
20816
21132
 
20817
21133
  /** StopBatchOperationRequest jobId */
20818
21134
  jobId?: (string|null);
21135
+
21136
+ /** StopBatchOperationRequest reason */
21137
+ reason?: (string|null);
21138
+
21139
+ /** StopBatchOperationRequest identity */
21140
+ identity?: (string|null);
20819
21141
  }
20820
21142
 
20821
21143
  /** Represents a StopBatchOperationRequest. */
@@ -20833,6 +21155,12 @@ export namespace temporal {
20833
21155
  /** StopBatchOperationRequest jobId. */
20834
21156
  public jobId: string;
20835
21157
 
21158
+ /** StopBatchOperationRequest reason. */
21159
+ public reason: string;
21160
+
21161
+ /** StopBatchOperationRequest identity. */
21162
+ public identity: string;
21163
+
20836
21164
  /**
20837
21165
  * Creates a new StopBatchOperationRequest instance using the specified properties.
20838
21166
  * @param [properties] Properties to set
@@ -21110,6 +21438,12 @@ export namespace temporal {
21110
21438
 
21111
21439
  /** DescribeBatchOperationResponse failureOperationCount */
21112
21440
  failureOperationCount?: (Long|null);
21441
+
21442
+ /** DescribeBatchOperationResponse identity */
21443
+ identity?: (string|null);
21444
+
21445
+ /** DescribeBatchOperationResponse reason */
21446
+ reason?: (string|null);
21113
21447
  }
21114
21448
 
21115
21449
  /** Represents a DescribeBatchOperationResponse. */
@@ -21145,6 +21479,12 @@ export namespace temporal {
21145
21479
  /** DescribeBatchOperationResponse failureOperationCount. */
21146
21480
  public failureOperationCount: Long;
21147
21481
 
21482
+ /** DescribeBatchOperationResponse identity. */
21483
+ public identity: string;
21484
+
21485
+ /** DescribeBatchOperationResponse reason. */
21486
+ public reason: string;
21487
+
21148
21488
  /**
21149
21489
  * Creates a new DescribeBatchOperationResponse instance using the specified properties.
21150
21490
  * @param [properties] Properties to set
@@ -22372,6 +22712,9 @@ export namespace temporal {
22372
22712
 
22373
22713
  /** WorkflowTaskCompletedEventAttributes binaryChecksum */
22374
22714
  binaryChecksum?: (string|null);
22715
+
22716
+ /** WorkflowTaskCompletedEventAttributes workerVersioningId */
22717
+ workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
22375
22718
  }
22376
22719
 
22377
22720
  /** Represents a WorkflowTaskCompletedEventAttributes. */
@@ -22395,6 +22738,9 @@ export namespace temporal {
22395
22738
  /** WorkflowTaskCompletedEventAttributes binaryChecksum. */
22396
22739
  public binaryChecksum: string;
22397
22740
 
22741
+ /** WorkflowTaskCompletedEventAttributes workerVersioningId. */
22742
+ public workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
22743
+
22398
22744
  /**
22399
22745
  * Creates a new WorkflowTaskCompletedEventAttributes instance using the specified properties.
22400
22746
  * @param [properties] Properties to set
@@ -25178,6 +25524,102 @@ export namespace temporal {
25178
25524
  public static getTypeUrl(typeUrlPrefix?: string): string;
25179
25525
  }
25180
25526
 
25527
+ /** Properties of a WorkflowPropertiesModifiedEventAttributes. */
25528
+ interface IWorkflowPropertiesModifiedEventAttributes {
25529
+
25530
+ /** WorkflowPropertiesModifiedEventAttributes workflowTaskCompletedEventId */
25531
+ workflowTaskCompletedEventId?: (Long|null);
25532
+
25533
+ /** WorkflowPropertiesModifiedEventAttributes upsertedMemo */
25534
+ upsertedMemo?: (temporal.api.common.v1.IMemo|null);
25535
+ }
25536
+
25537
+ /** Represents a WorkflowPropertiesModifiedEventAttributes. */
25538
+ class WorkflowPropertiesModifiedEventAttributes implements IWorkflowPropertiesModifiedEventAttributes {
25539
+
25540
+ /**
25541
+ * Constructs a new WorkflowPropertiesModifiedEventAttributes.
25542
+ * @param [properties] Properties to set
25543
+ */
25544
+ constructor(properties?: temporal.api.history.v1.IWorkflowPropertiesModifiedEventAttributes);
25545
+
25546
+ /** WorkflowPropertiesModifiedEventAttributes workflowTaskCompletedEventId. */
25547
+ public workflowTaskCompletedEventId: Long;
25548
+
25549
+ /** WorkflowPropertiesModifiedEventAttributes upsertedMemo. */
25550
+ public upsertedMemo?: (temporal.api.common.v1.IMemo|null);
25551
+
25552
+ /**
25553
+ * Creates a new WorkflowPropertiesModifiedEventAttributes instance using the specified properties.
25554
+ * @param [properties] Properties to set
25555
+ * @returns WorkflowPropertiesModifiedEventAttributes instance
25556
+ */
25557
+ public static create(properties?: temporal.api.history.v1.IWorkflowPropertiesModifiedEventAttributes): temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes;
25558
+
25559
+ /**
25560
+ * Encodes the specified WorkflowPropertiesModifiedEventAttributes message. Does not implicitly {@link temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes.verify|verify} messages.
25561
+ * @param message WorkflowPropertiesModifiedEventAttributes message or plain object to encode
25562
+ * @param [writer] Writer to encode to
25563
+ * @returns Writer
25564
+ */
25565
+ public static encode(message: temporal.api.history.v1.IWorkflowPropertiesModifiedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
25566
+
25567
+ /**
25568
+ * Encodes the specified WorkflowPropertiesModifiedEventAttributes message, length delimited. Does not implicitly {@link temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes.verify|verify} messages.
25569
+ * @param message WorkflowPropertiesModifiedEventAttributes message or plain object to encode
25570
+ * @param [writer] Writer to encode to
25571
+ * @returns Writer
25572
+ */
25573
+ public static encodeDelimited(message: temporal.api.history.v1.IWorkflowPropertiesModifiedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
25574
+
25575
+ /**
25576
+ * Decodes a WorkflowPropertiesModifiedEventAttributes message from the specified reader or buffer.
25577
+ * @param reader Reader or buffer to decode from
25578
+ * @param [length] Message length if known beforehand
25579
+ * @returns WorkflowPropertiesModifiedEventAttributes
25580
+ * @throws {Error} If the payload is not a reader or valid buffer
25581
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25582
+ */
25583
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes;
25584
+
25585
+ /**
25586
+ * Decodes a WorkflowPropertiesModifiedEventAttributes message from the specified reader or buffer, length delimited.
25587
+ * @param reader Reader or buffer to decode from
25588
+ * @returns WorkflowPropertiesModifiedEventAttributes
25589
+ * @throws {Error} If the payload is not a reader or valid buffer
25590
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25591
+ */
25592
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes;
25593
+
25594
+ /**
25595
+ * Creates a WorkflowPropertiesModifiedEventAttributes message from a plain object. Also converts values to their respective internal types.
25596
+ * @param object Plain object
25597
+ * @returns WorkflowPropertiesModifiedEventAttributes
25598
+ */
25599
+ public static fromObject(object: { [k: string]: any }): temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes;
25600
+
25601
+ /**
25602
+ * Creates a plain object from a WorkflowPropertiesModifiedEventAttributes message. Also converts values to other types if specified.
25603
+ * @param message WorkflowPropertiesModifiedEventAttributes
25604
+ * @param [options] Conversion options
25605
+ * @returns Plain object
25606
+ */
25607
+ public static toObject(message: temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes, options?: $protobuf.IConversionOptions): { [k: string]: any };
25608
+
25609
+ /**
25610
+ * Converts this WorkflowPropertiesModifiedEventAttributes to JSON.
25611
+ * @returns JSON object
25612
+ */
25613
+ public toJSON(): { [k: string]: any };
25614
+
25615
+ /**
25616
+ * Gets the default type url for WorkflowPropertiesModifiedEventAttributes
25617
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25618
+ * @returns The default type url
25619
+ */
25620
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25621
+ }
25622
+
25181
25623
  /** Properties of a StartChildWorkflowExecutionInitiatedEventAttributes. */
25182
25624
  interface IStartChildWorkflowExecutionInitiatedEventAttributes {
25183
25625
 
@@ -26932,6 +27374,9 @@ export namespace temporal {
26932
27374
 
26933
27375
  /** HistoryEvent activityPropertiesModifiedExternallyEventAttributes */
26934
27376
  activityPropertiesModifiedExternallyEventAttributes?: (temporal.api.history.v1.IActivityPropertiesModifiedExternallyEventAttributes|null);
27377
+
27378
+ /** HistoryEvent workflowPropertiesModifiedEventAttributes */
27379
+ workflowPropertiesModifiedEventAttributes?: (temporal.api.history.v1.IWorkflowPropertiesModifiedEventAttributes|null);
26935
27380
  }
26936
27381
 
26937
27382
  /** Represents a HistoryEvent. */
@@ -27096,8 +27541,11 @@ export namespace temporal {
27096
27541
  /** HistoryEvent activityPropertiesModifiedExternallyEventAttributes. */
27097
27542
  public activityPropertiesModifiedExternallyEventAttributes?: (temporal.api.history.v1.IActivityPropertiesModifiedExternallyEventAttributes|null);
27098
27543
 
27544
+ /** HistoryEvent workflowPropertiesModifiedEventAttributes. */
27545
+ public workflowPropertiesModifiedEventAttributes?: (temporal.api.history.v1.IWorkflowPropertiesModifiedEventAttributes|null);
27546
+
27099
27547
  /** HistoryEvent attributes. */
27100
- public attributes?: ("workflowExecutionStartedEventAttributes"|"workflowExecutionCompletedEventAttributes"|"workflowExecutionFailedEventAttributes"|"workflowExecutionTimedOutEventAttributes"|"workflowTaskScheduledEventAttributes"|"workflowTaskStartedEventAttributes"|"workflowTaskCompletedEventAttributes"|"workflowTaskTimedOutEventAttributes"|"workflowTaskFailedEventAttributes"|"activityTaskScheduledEventAttributes"|"activityTaskStartedEventAttributes"|"activityTaskCompletedEventAttributes"|"activityTaskFailedEventAttributes"|"activityTaskTimedOutEventAttributes"|"timerStartedEventAttributes"|"timerFiredEventAttributes"|"activityTaskCancelRequestedEventAttributes"|"activityTaskCanceledEventAttributes"|"timerCanceledEventAttributes"|"markerRecordedEventAttributes"|"workflowExecutionSignaledEventAttributes"|"workflowExecutionTerminatedEventAttributes"|"workflowExecutionCancelRequestedEventAttributes"|"workflowExecutionCanceledEventAttributes"|"requestCancelExternalWorkflowExecutionInitiatedEventAttributes"|"requestCancelExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionCancelRequestedEventAttributes"|"workflowExecutionContinuedAsNewEventAttributes"|"startChildWorkflowExecutionInitiatedEventAttributes"|"startChildWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionStartedEventAttributes"|"childWorkflowExecutionCompletedEventAttributes"|"childWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionCanceledEventAttributes"|"childWorkflowExecutionTimedOutEventAttributes"|"childWorkflowExecutionTerminatedEventAttributes"|"signalExternalWorkflowExecutionInitiatedEventAttributes"|"signalExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionSignaledEventAttributes"|"upsertWorkflowSearchAttributesEventAttributes"|"workflowUpdateRequestedEventAttributes"|"workflowUpdateAcceptedEventAttributes"|"workflowUpdateCompletedEventAttributes"|"workflowPropertiesModifiedExternallyEventAttributes"|"activityPropertiesModifiedExternallyEventAttributes");
27548
+ public attributes?: ("workflowExecutionStartedEventAttributes"|"workflowExecutionCompletedEventAttributes"|"workflowExecutionFailedEventAttributes"|"workflowExecutionTimedOutEventAttributes"|"workflowTaskScheduledEventAttributes"|"workflowTaskStartedEventAttributes"|"workflowTaskCompletedEventAttributes"|"workflowTaskTimedOutEventAttributes"|"workflowTaskFailedEventAttributes"|"activityTaskScheduledEventAttributes"|"activityTaskStartedEventAttributes"|"activityTaskCompletedEventAttributes"|"activityTaskFailedEventAttributes"|"activityTaskTimedOutEventAttributes"|"timerStartedEventAttributes"|"timerFiredEventAttributes"|"activityTaskCancelRequestedEventAttributes"|"activityTaskCanceledEventAttributes"|"timerCanceledEventAttributes"|"markerRecordedEventAttributes"|"workflowExecutionSignaledEventAttributes"|"workflowExecutionTerminatedEventAttributes"|"workflowExecutionCancelRequestedEventAttributes"|"workflowExecutionCanceledEventAttributes"|"requestCancelExternalWorkflowExecutionInitiatedEventAttributes"|"requestCancelExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionCancelRequestedEventAttributes"|"workflowExecutionContinuedAsNewEventAttributes"|"startChildWorkflowExecutionInitiatedEventAttributes"|"startChildWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionStartedEventAttributes"|"childWorkflowExecutionCompletedEventAttributes"|"childWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionCanceledEventAttributes"|"childWorkflowExecutionTimedOutEventAttributes"|"childWorkflowExecutionTerminatedEventAttributes"|"signalExternalWorkflowExecutionInitiatedEventAttributes"|"signalExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionSignaledEventAttributes"|"upsertWorkflowSearchAttributesEventAttributes"|"workflowUpdateRequestedEventAttributes"|"workflowUpdateAcceptedEventAttributes"|"workflowUpdateCompletedEventAttributes"|"workflowPropertiesModifiedExternallyEventAttributes"|"activityPropertiesModifiedExternallyEventAttributes"|"workflowPropertiesModifiedEventAttributes");
27101
27549
 
27102
27550
  /**
27103
27551
  * Creates a new HistoryEvent instance using the specified properties.
@@ -27772,8 +28220,8 @@ export namespace temporal {
27772
28220
  /** PollerInfo ratePerSecond */
27773
28221
  ratePerSecond?: (number|null);
27774
28222
 
27775
- /** PollerInfo workerVersioningBuildId */
27776
- workerVersioningBuildId?: (string|null);
28223
+ /** PollerInfo workerVersioningId */
28224
+ workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
27777
28225
  }
27778
28226
 
27779
28227
  /** Represents a PollerInfo. */
@@ -27794,8 +28242,8 @@ export namespace temporal {
27794
28242
  /** PollerInfo ratePerSecond. */
27795
28243
  public ratePerSecond: number;
27796
28244
 
27797
- /** PollerInfo workerVersioningBuildId. */
27798
- public workerVersioningBuildId: string;
28245
+ /** PollerInfo workerVersioningId. */
28246
+ public workerVersioningId?: (temporal.api.taskqueue.v1.IVersionId|null);
27799
28247
 
27800
28248
  /**
27801
28249
  * Creates a new PollerInfo instance using the specified properties.
@@ -28318,6 +28766,9 @@ export namespace temporal {
28318
28766
 
28319
28767
  /** WorkflowExecutionInfo stateTransitionCount */
28320
28768
  stateTransitionCount?: (Long|null);
28769
+
28770
+ /** WorkflowExecutionInfo historySizeBytes */
28771
+ historySizeBytes?: (Long|null);
28321
28772
  }
28322
28773
 
28323
28774
  /** Represents a WorkflowExecutionInfo. */
@@ -28371,6 +28822,9 @@ export namespace temporal {
28371
28822
  /** WorkflowExecutionInfo stateTransitionCount. */
28372
28823
  public stateTransitionCount: Long;
28373
28824
 
28825
+ /** WorkflowExecutionInfo historySizeBytes. */
28826
+ public historySizeBytes: Long;
28827
+
28374
28828
  /**
28375
28829
  * Creates a new WorkflowExecutionInfo instance using the specified properties.
28376
28830
  * @param [properties] Properties to set
@@ -30346,6 +30800,96 @@ export namespace temporal {
30346
30800
  public static getTypeUrl(typeUrlPrefix?: string): string;
30347
30801
  }
30348
30802
 
30803
+ /** Properties of a ModifyWorkflowPropertiesCommandAttributes. */
30804
+ interface IModifyWorkflowPropertiesCommandAttributes {
30805
+
30806
+ /** ModifyWorkflowPropertiesCommandAttributes upsertedMemo */
30807
+ upsertedMemo?: (temporal.api.common.v1.IMemo|null);
30808
+ }
30809
+
30810
+ /** Represents a ModifyWorkflowPropertiesCommandAttributes. */
30811
+ class ModifyWorkflowPropertiesCommandAttributes implements IModifyWorkflowPropertiesCommandAttributes {
30812
+
30813
+ /**
30814
+ * Constructs a new ModifyWorkflowPropertiesCommandAttributes.
30815
+ * @param [properties] Properties to set
30816
+ */
30817
+ constructor(properties?: temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes);
30818
+
30819
+ /** ModifyWorkflowPropertiesCommandAttributes upsertedMemo. */
30820
+ public upsertedMemo?: (temporal.api.common.v1.IMemo|null);
30821
+
30822
+ /**
30823
+ * Creates a new ModifyWorkflowPropertiesCommandAttributes instance using the specified properties.
30824
+ * @param [properties] Properties to set
30825
+ * @returns ModifyWorkflowPropertiesCommandAttributes instance
30826
+ */
30827
+ public static create(properties?: temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes): temporal.api.command.v1.ModifyWorkflowPropertiesCommandAttributes;
30828
+
30829
+ /**
30830
+ * Encodes the specified ModifyWorkflowPropertiesCommandAttributes message. Does not implicitly {@link temporal.api.command.v1.ModifyWorkflowPropertiesCommandAttributes.verify|verify} messages.
30831
+ * @param message ModifyWorkflowPropertiesCommandAttributes message or plain object to encode
30832
+ * @param [writer] Writer to encode to
30833
+ * @returns Writer
30834
+ */
30835
+ public static encode(message: temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
30836
+
30837
+ /**
30838
+ * Encodes the specified ModifyWorkflowPropertiesCommandAttributes message, length delimited. Does not implicitly {@link temporal.api.command.v1.ModifyWorkflowPropertiesCommandAttributes.verify|verify} messages.
30839
+ * @param message ModifyWorkflowPropertiesCommandAttributes message or plain object to encode
30840
+ * @param [writer] Writer to encode to
30841
+ * @returns Writer
30842
+ */
30843
+ public static encodeDelimited(message: temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
30844
+
30845
+ /**
30846
+ * Decodes a ModifyWorkflowPropertiesCommandAttributes message from the specified reader or buffer.
30847
+ * @param reader Reader or buffer to decode from
30848
+ * @param [length] Message length if known beforehand
30849
+ * @returns ModifyWorkflowPropertiesCommandAttributes
30850
+ * @throws {Error} If the payload is not a reader or valid buffer
30851
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
30852
+ */
30853
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.command.v1.ModifyWorkflowPropertiesCommandAttributes;
30854
+
30855
+ /**
30856
+ * Decodes a ModifyWorkflowPropertiesCommandAttributes message from the specified reader or buffer, length delimited.
30857
+ * @param reader Reader or buffer to decode from
30858
+ * @returns ModifyWorkflowPropertiesCommandAttributes
30859
+ * @throws {Error} If the payload is not a reader or valid buffer
30860
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
30861
+ */
30862
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.command.v1.ModifyWorkflowPropertiesCommandAttributes;
30863
+
30864
+ /**
30865
+ * Creates a ModifyWorkflowPropertiesCommandAttributes message from a plain object. Also converts values to their respective internal types.
30866
+ * @param object Plain object
30867
+ * @returns ModifyWorkflowPropertiesCommandAttributes
30868
+ */
30869
+ public static fromObject(object: { [k: string]: any }): temporal.api.command.v1.ModifyWorkflowPropertiesCommandAttributes;
30870
+
30871
+ /**
30872
+ * Creates a plain object from a ModifyWorkflowPropertiesCommandAttributes message. Also converts values to other types if specified.
30873
+ * @param message ModifyWorkflowPropertiesCommandAttributes
30874
+ * @param [options] Conversion options
30875
+ * @returns Plain object
30876
+ */
30877
+ public static toObject(message: temporal.api.command.v1.ModifyWorkflowPropertiesCommandAttributes, options?: $protobuf.IConversionOptions): { [k: string]: any };
30878
+
30879
+ /**
30880
+ * Converts this ModifyWorkflowPropertiesCommandAttributes to JSON.
30881
+ * @returns JSON object
30882
+ */
30883
+ public toJSON(): { [k: string]: any };
30884
+
30885
+ /**
30886
+ * Gets the default type url for ModifyWorkflowPropertiesCommandAttributes
30887
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
30888
+ * @returns The default type url
30889
+ */
30890
+ public static getTypeUrl(typeUrlPrefix?: string): string;
30891
+ }
30892
+
30349
30893
  /** Properties of a RecordMarkerCommandAttributes. */
30350
30894
  interface IRecordMarkerCommandAttributes {
30351
30895
 
@@ -31053,6 +31597,9 @@ export namespace temporal {
31053
31597
 
31054
31598
  /** Command completeWorkflowUpdateCommandAttributes */
31055
31599
  completeWorkflowUpdateCommandAttributes?: (temporal.api.command.v1.ICompleteWorkflowUpdateCommandAttributes|null);
31600
+
31601
+ /** Command modifyWorkflowPropertiesCommandAttributes */
31602
+ modifyWorkflowPropertiesCommandAttributes?: (temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes|null);
31056
31603
  }
31057
31604
 
31058
31605
  /** Represents a Command. */
@@ -31112,8 +31659,11 @@ export namespace temporal {
31112
31659
  /** Command completeWorkflowUpdateCommandAttributes. */
31113
31660
  public completeWorkflowUpdateCommandAttributes?: (temporal.api.command.v1.ICompleteWorkflowUpdateCommandAttributes|null);
31114
31661
 
31662
+ /** Command modifyWorkflowPropertiesCommandAttributes. */
31663
+ public modifyWorkflowPropertiesCommandAttributes?: (temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes|null);
31664
+
31115
31665
  /** Command attributes. */
31116
- public attributes?: ("scheduleActivityTaskCommandAttributes"|"startTimerCommandAttributes"|"completeWorkflowExecutionCommandAttributes"|"failWorkflowExecutionCommandAttributes"|"requestCancelActivityTaskCommandAttributes"|"cancelTimerCommandAttributes"|"cancelWorkflowExecutionCommandAttributes"|"requestCancelExternalWorkflowExecutionCommandAttributes"|"recordMarkerCommandAttributes"|"continueAsNewWorkflowExecutionCommandAttributes"|"startChildWorkflowExecutionCommandAttributes"|"signalExternalWorkflowExecutionCommandAttributes"|"upsertWorkflowSearchAttributesCommandAttributes"|"acceptWorkflowUpdateCommandAttributes"|"completeWorkflowUpdateCommandAttributes");
31666
+ public attributes?: ("scheduleActivityTaskCommandAttributes"|"startTimerCommandAttributes"|"completeWorkflowExecutionCommandAttributes"|"failWorkflowExecutionCommandAttributes"|"requestCancelActivityTaskCommandAttributes"|"cancelTimerCommandAttributes"|"cancelWorkflowExecutionCommandAttributes"|"requestCancelExternalWorkflowExecutionCommandAttributes"|"recordMarkerCommandAttributes"|"continueAsNewWorkflowExecutionCommandAttributes"|"startChildWorkflowExecutionCommandAttributes"|"signalExternalWorkflowExecutionCommandAttributes"|"upsertWorkflowSearchAttributesCommandAttributes"|"acceptWorkflowUpdateCommandAttributes"|"completeWorkflowUpdateCommandAttributes"|"modifyWorkflowPropertiesCommandAttributes");
31117
31667
 
31118
31668
  /**
31119
31669
  * Creates a new Command instance using the specified properties.
@@ -32839,6 +33389,9 @@ export namespace temporal {
32839
33389
 
32840
33390
  /** CalendarSpec dayOfWeek */
32841
33391
  dayOfWeek?: (string|null);
33392
+
33393
+ /** CalendarSpec comment */
33394
+ comment?: (string|null);
32842
33395
  }
32843
33396
 
32844
33397
  /** Represents a CalendarSpec. */
@@ -32871,6 +33424,9 @@ export namespace temporal {
32871
33424
  /** CalendarSpec dayOfWeek. */
32872
33425
  public dayOfWeek: string;
32873
33426
 
33427
+ /** CalendarSpec comment. */
33428
+ public comment: string;
33429
+
32874
33430
  /**
32875
33431
  * Creates a new CalendarSpec instance using the specified properties.
32876
33432
  * @param [properties] Properties to set
@@ -32942,6 +33498,240 @@ export namespace temporal {
32942
33498
  public static getTypeUrl(typeUrlPrefix?: string): string;
32943
33499
  }
32944
33500
 
33501
+ /** Properties of a Range. */
33502
+ interface IRange {
33503
+
33504
+ /** Range start */
33505
+ start?: (number|null);
33506
+
33507
+ /** Range end */
33508
+ end?: (number|null);
33509
+
33510
+ /** Range step */
33511
+ step?: (number|null);
33512
+ }
33513
+
33514
+ /** Represents a Range. */
33515
+ class Range implements IRange {
33516
+
33517
+ /**
33518
+ * Constructs a new Range.
33519
+ * @param [properties] Properties to set
33520
+ */
33521
+ constructor(properties?: temporal.api.schedule.v1.IRange);
33522
+
33523
+ /** Range start. */
33524
+ public start: number;
33525
+
33526
+ /** Range end. */
33527
+ public end: number;
33528
+
33529
+ /** Range step. */
33530
+ public step: number;
33531
+
33532
+ /**
33533
+ * Creates a new Range instance using the specified properties.
33534
+ * @param [properties] Properties to set
33535
+ * @returns Range instance
33536
+ */
33537
+ public static create(properties?: temporal.api.schedule.v1.IRange): temporal.api.schedule.v1.Range;
33538
+
33539
+ /**
33540
+ * Encodes the specified Range message. Does not implicitly {@link temporal.api.schedule.v1.Range.verify|verify} messages.
33541
+ * @param message Range message or plain object to encode
33542
+ * @param [writer] Writer to encode to
33543
+ * @returns Writer
33544
+ */
33545
+ public static encode(message: temporal.api.schedule.v1.IRange, writer?: $protobuf.Writer): $protobuf.Writer;
33546
+
33547
+ /**
33548
+ * Encodes the specified Range message, length delimited. Does not implicitly {@link temporal.api.schedule.v1.Range.verify|verify} messages.
33549
+ * @param message Range message or plain object to encode
33550
+ * @param [writer] Writer to encode to
33551
+ * @returns Writer
33552
+ */
33553
+ public static encodeDelimited(message: temporal.api.schedule.v1.IRange, writer?: $protobuf.Writer): $protobuf.Writer;
33554
+
33555
+ /**
33556
+ * Decodes a Range message from the specified reader or buffer.
33557
+ * @param reader Reader or buffer to decode from
33558
+ * @param [length] Message length if known beforehand
33559
+ * @returns Range
33560
+ * @throws {Error} If the payload is not a reader or valid buffer
33561
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33562
+ */
33563
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.schedule.v1.Range;
33564
+
33565
+ /**
33566
+ * Decodes a Range message from the specified reader or buffer, length delimited.
33567
+ * @param reader Reader or buffer to decode from
33568
+ * @returns Range
33569
+ * @throws {Error} If the payload is not a reader or valid buffer
33570
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33571
+ */
33572
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.schedule.v1.Range;
33573
+
33574
+ /**
33575
+ * Creates a Range message from a plain object. Also converts values to their respective internal types.
33576
+ * @param object Plain object
33577
+ * @returns Range
33578
+ */
33579
+ public static fromObject(object: { [k: string]: any }): temporal.api.schedule.v1.Range;
33580
+
33581
+ /**
33582
+ * Creates a plain object from a Range message. Also converts values to other types if specified.
33583
+ * @param message Range
33584
+ * @param [options] Conversion options
33585
+ * @returns Plain object
33586
+ */
33587
+ public static toObject(message: temporal.api.schedule.v1.Range, options?: $protobuf.IConversionOptions): { [k: string]: any };
33588
+
33589
+ /**
33590
+ * Converts this Range to JSON.
33591
+ * @returns JSON object
33592
+ */
33593
+ public toJSON(): { [k: string]: any };
33594
+
33595
+ /**
33596
+ * Gets the default type url for Range
33597
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
33598
+ * @returns The default type url
33599
+ */
33600
+ public static getTypeUrl(typeUrlPrefix?: string): string;
33601
+ }
33602
+
33603
+ /** Properties of a StructuredCalendarSpec. */
33604
+ interface IStructuredCalendarSpec {
33605
+
33606
+ /** StructuredCalendarSpec second */
33607
+ second?: (temporal.api.schedule.v1.IRange[]|null);
33608
+
33609
+ /** StructuredCalendarSpec minute */
33610
+ minute?: (temporal.api.schedule.v1.IRange[]|null);
33611
+
33612
+ /** StructuredCalendarSpec hour */
33613
+ hour?: (temporal.api.schedule.v1.IRange[]|null);
33614
+
33615
+ /** StructuredCalendarSpec dayOfMonth */
33616
+ dayOfMonth?: (temporal.api.schedule.v1.IRange[]|null);
33617
+
33618
+ /** StructuredCalendarSpec month */
33619
+ month?: (temporal.api.schedule.v1.IRange[]|null);
33620
+
33621
+ /** StructuredCalendarSpec year */
33622
+ year?: (temporal.api.schedule.v1.IRange[]|null);
33623
+
33624
+ /** StructuredCalendarSpec dayOfWeek */
33625
+ dayOfWeek?: (temporal.api.schedule.v1.IRange[]|null);
33626
+
33627
+ /** StructuredCalendarSpec comment */
33628
+ comment?: (string|null);
33629
+ }
33630
+
33631
+ /** Represents a StructuredCalendarSpec. */
33632
+ class StructuredCalendarSpec implements IStructuredCalendarSpec {
33633
+
33634
+ /**
33635
+ * Constructs a new StructuredCalendarSpec.
33636
+ * @param [properties] Properties to set
33637
+ */
33638
+ constructor(properties?: temporal.api.schedule.v1.IStructuredCalendarSpec);
33639
+
33640
+ /** StructuredCalendarSpec second. */
33641
+ public second: temporal.api.schedule.v1.IRange[];
33642
+
33643
+ /** StructuredCalendarSpec minute. */
33644
+ public minute: temporal.api.schedule.v1.IRange[];
33645
+
33646
+ /** StructuredCalendarSpec hour. */
33647
+ public hour: temporal.api.schedule.v1.IRange[];
33648
+
33649
+ /** StructuredCalendarSpec dayOfMonth. */
33650
+ public dayOfMonth: temporal.api.schedule.v1.IRange[];
33651
+
33652
+ /** StructuredCalendarSpec month. */
33653
+ public month: temporal.api.schedule.v1.IRange[];
33654
+
33655
+ /** StructuredCalendarSpec year. */
33656
+ public year: temporal.api.schedule.v1.IRange[];
33657
+
33658
+ /** StructuredCalendarSpec dayOfWeek. */
33659
+ public dayOfWeek: temporal.api.schedule.v1.IRange[];
33660
+
33661
+ /** StructuredCalendarSpec comment. */
33662
+ public comment: string;
33663
+
33664
+ /**
33665
+ * Creates a new StructuredCalendarSpec instance using the specified properties.
33666
+ * @param [properties] Properties to set
33667
+ * @returns StructuredCalendarSpec instance
33668
+ */
33669
+ public static create(properties?: temporal.api.schedule.v1.IStructuredCalendarSpec): temporal.api.schedule.v1.StructuredCalendarSpec;
33670
+
33671
+ /**
33672
+ * Encodes the specified StructuredCalendarSpec message. Does not implicitly {@link temporal.api.schedule.v1.StructuredCalendarSpec.verify|verify} messages.
33673
+ * @param message StructuredCalendarSpec message or plain object to encode
33674
+ * @param [writer] Writer to encode to
33675
+ * @returns Writer
33676
+ */
33677
+ public static encode(message: temporal.api.schedule.v1.IStructuredCalendarSpec, writer?: $protobuf.Writer): $protobuf.Writer;
33678
+
33679
+ /**
33680
+ * Encodes the specified StructuredCalendarSpec message, length delimited. Does not implicitly {@link temporal.api.schedule.v1.StructuredCalendarSpec.verify|verify} messages.
33681
+ * @param message StructuredCalendarSpec message or plain object to encode
33682
+ * @param [writer] Writer to encode to
33683
+ * @returns Writer
33684
+ */
33685
+ public static encodeDelimited(message: temporal.api.schedule.v1.IStructuredCalendarSpec, writer?: $protobuf.Writer): $protobuf.Writer;
33686
+
33687
+ /**
33688
+ * Decodes a StructuredCalendarSpec message from the specified reader or buffer.
33689
+ * @param reader Reader or buffer to decode from
33690
+ * @param [length] Message length if known beforehand
33691
+ * @returns StructuredCalendarSpec
33692
+ * @throws {Error} If the payload is not a reader or valid buffer
33693
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33694
+ */
33695
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.schedule.v1.StructuredCalendarSpec;
33696
+
33697
+ /**
33698
+ * Decodes a StructuredCalendarSpec message from the specified reader or buffer, length delimited.
33699
+ * @param reader Reader or buffer to decode from
33700
+ * @returns StructuredCalendarSpec
33701
+ * @throws {Error} If the payload is not a reader or valid buffer
33702
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33703
+ */
33704
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.schedule.v1.StructuredCalendarSpec;
33705
+
33706
+ /**
33707
+ * Creates a StructuredCalendarSpec message from a plain object. Also converts values to their respective internal types.
33708
+ * @param object Plain object
33709
+ * @returns StructuredCalendarSpec
33710
+ */
33711
+ public static fromObject(object: { [k: string]: any }): temporal.api.schedule.v1.StructuredCalendarSpec;
33712
+
33713
+ /**
33714
+ * Creates a plain object from a StructuredCalendarSpec message. Also converts values to other types if specified.
33715
+ * @param message StructuredCalendarSpec
33716
+ * @param [options] Conversion options
33717
+ * @returns Plain object
33718
+ */
33719
+ public static toObject(message: temporal.api.schedule.v1.StructuredCalendarSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
33720
+
33721
+ /**
33722
+ * Converts this StructuredCalendarSpec to JSON.
33723
+ * @returns JSON object
33724
+ */
33725
+ public toJSON(): { [k: string]: any };
33726
+
33727
+ /**
33728
+ * Gets the default type url for StructuredCalendarSpec
33729
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
33730
+ * @returns The default type url
33731
+ */
33732
+ public static getTypeUrl(typeUrlPrefix?: string): string;
33733
+ }
33734
+
32945
33735
  /** Properties of an IntervalSpec. */
32946
33736
  interface IIntervalSpec {
32947
33737
 
@@ -33041,6 +33831,12 @@ export namespace temporal {
33041
33831
  /** Properties of a ScheduleSpec. */
33042
33832
  interface IScheduleSpec {
33043
33833
 
33834
+ /** ScheduleSpec structuredCalendar */
33835
+ structuredCalendar?: (temporal.api.schedule.v1.IStructuredCalendarSpec[]|null);
33836
+
33837
+ /** ScheduleSpec cronString */
33838
+ cronString?: (string[]|null);
33839
+
33044
33840
  /** ScheduleSpec calendar */
33045
33841
  calendar?: (temporal.api.schedule.v1.ICalendarSpec[]|null);
33046
33842
 
@@ -33050,6 +33846,9 @@ export namespace temporal {
33050
33846
  /** ScheduleSpec excludeCalendar */
33051
33847
  excludeCalendar?: (temporal.api.schedule.v1.ICalendarSpec[]|null);
33052
33848
 
33849
+ /** ScheduleSpec excludeStructuredCalendar */
33850
+ excludeStructuredCalendar?: (temporal.api.schedule.v1.IStructuredCalendarSpec[]|null);
33851
+
33053
33852
  /** ScheduleSpec startTime */
33054
33853
  startTime?: (google.protobuf.ITimestamp|null);
33055
33854
 
@@ -33075,6 +33874,12 @@ export namespace temporal {
33075
33874
  */
33076
33875
  constructor(properties?: temporal.api.schedule.v1.IScheduleSpec);
33077
33876
 
33877
+ /** ScheduleSpec structuredCalendar. */
33878
+ public structuredCalendar: temporal.api.schedule.v1.IStructuredCalendarSpec[];
33879
+
33880
+ /** ScheduleSpec cronString. */
33881
+ public cronString: string[];
33882
+
33078
33883
  /** ScheduleSpec calendar. */
33079
33884
  public calendar: temporal.api.schedule.v1.ICalendarSpec[];
33080
33885
 
@@ -33084,6 +33889,9 @@ export namespace temporal {
33084
33889
  /** ScheduleSpec excludeCalendar. */
33085
33890
  public excludeCalendar: temporal.api.schedule.v1.ICalendarSpec[];
33086
33891
 
33892
+ /** ScheduleSpec excludeStructuredCalendar. */
33893
+ public excludeStructuredCalendar: temporal.api.schedule.v1.IStructuredCalendarSpec[];
33894
+
33087
33895
  /** ScheduleSpec startTime. */
33088
33896
  public startTime?: (google.protobuf.ITimestamp|null);
33089
33897
 
@@ -34788,9 +35596,6 @@ export namespace temporal {
34788
35596
  /** Properties of a BatchOperationTermination. */
34789
35597
  interface IBatchOperationTermination {
34790
35598
 
34791
- /** BatchOperationTermination reason */
34792
- reason?: (string|null);
34793
-
34794
35599
  /** BatchOperationTermination details */
34795
35600
  details?: (temporal.api.common.v1.IPayloads|null);
34796
35601
 
@@ -34807,9 +35612,6 @@ export namespace temporal {
34807
35612
  */
34808
35613
  constructor(properties?: temporal.api.batch.v1.IBatchOperationTermination);
34809
35614
 
34810
- /** BatchOperationTermination reason. */
34811
- public reason: string;
34812
-
34813
35615
  /** BatchOperationTermination details. */
34814
35616
  public details?: (temporal.api.common.v1.IPayloads|null);
34815
35617
 
@@ -34998,9 +35800,6 @@ export namespace temporal {
34998
35800
  /** Properties of a BatchOperationCancellation. */
34999
35801
  interface IBatchOperationCancellation {
35000
35802
 
35001
- /** BatchOperationCancellation reason */
35002
- reason?: (string|null);
35003
-
35004
35803
  /** BatchOperationCancellation identity */
35005
35804
  identity?: (string|null);
35006
35805
  }
@@ -35014,9 +35813,6 @@ export namespace temporal {
35014
35813
  */
35015
35814
  constructor(properties?: temporal.api.batch.v1.IBatchOperationCancellation);
35016
35815
 
35017
- /** BatchOperationCancellation reason. */
35018
- public reason: string;
35019
-
35020
35816
  /** BatchOperationCancellation identity. */
35021
35817
  public identity: string;
35022
35818
 
@@ -35175,20 +35971,6 @@ export namespace temporal {
35175
35971
  */
35176
35972
  public deleteNamespace(request: temporal.api.operatorservice.v1.IDeleteNamespaceRequest): Promise<temporal.api.operatorservice.v1.DeleteNamespaceResponse>;
35177
35973
 
35178
- /**
35179
- * Calls DeleteWorkflowExecution.
35180
- * @param request DeleteWorkflowExecutionRequest message or plain object
35181
- * @param callback Node-style callback called with the error, if any, and DeleteWorkflowExecutionResponse
35182
- */
35183
- public deleteWorkflowExecution(request: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionRequest, callback: temporal.api.operatorservice.v1.OperatorService.DeleteWorkflowExecutionCallback): void;
35184
-
35185
- /**
35186
- * Calls DeleteWorkflowExecution.
35187
- * @param request DeleteWorkflowExecutionRequest message or plain object
35188
- * @returns Promise
35189
- */
35190
- public deleteWorkflowExecution(request: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionRequest): Promise<temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse>;
35191
-
35192
35974
  /**
35193
35975
  * Calls AddOrUpdateRemoteCluster.
35194
35976
  * @param request AddOrUpdateRemoteClusterRequest message or plain object
@@ -35217,20 +35999,6 @@ export namespace temporal {
35217
35999
  */
35218
36000
  public removeRemoteCluster(request: temporal.api.operatorservice.v1.IRemoveRemoteClusterRequest): Promise<temporal.api.operatorservice.v1.RemoveRemoteClusterResponse>;
35219
36001
 
35220
- /**
35221
- * Calls DescribeCluster.
35222
- * @param request DescribeClusterRequest message or plain object
35223
- * @param callback Node-style callback called with the error, if any, and DescribeClusterResponse
35224
- */
35225
- public describeCluster(request: temporal.api.operatorservice.v1.IDescribeClusterRequest, callback: temporal.api.operatorservice.v1.OperatorService.DescribeClusterCallback): void;
35226
-
35227
- /**
35228
- * Calls DescribeCluster.
35229
- * @param request DescribeClusterRequest message or plain object
35230
- * @returns Promise
35231
- */
35232
- public describeCluster(request: temporal.api.operatorservice.v1.IDescribeClusterRequest): Promise<temporal.api.operatorservice.v1.DescribeClusterResponse>;
35233
-
35234
36002
  /**
35235
36003
  * Calls ListClusters.
35236
36004
  * @param request ListClustersRequest message or plain object
@@ -35244,20 +36012,6 @@ export namespace temporal {
35244
36012
  * @returns Promise
35245
36013
  */
35246
36014
  public listClusters(request: temporal.api.operatorservice.v1.IListClustersRequest): Promise<temporal.api.operatorservice.v1.ListClustersResponse>;
35247
-
35248
- /**
35249
- * Calls ListClusterMembers.
35250
- * @param request ListClusterMembersRequest message or plain object
35251
- * @param callback Node-style callback called with the error, if any, and ListClusterMembersResponse
35252
- */
35253
- public listClusterMembers(request: temporal.api.operatorservice.v1.IListClusterMembersRequest, callback: temporal.api.operatorservice.v1.OperatorService.ListClusterMembersCallback): void;
35254
-
35255
- /**
35256
- * Calls ListClusterMembers.
35257
- * @param request ListClusterMembersRequest message or plain object
35258
- * @returns Promise
35259
- */
35260
- public listClusterMembers(request: temporal.api.operatorservice.v1.IListClusterMembersRequest): Promise<temporal.api.operatorservice.v1.ListClusterMembersResponse>;
35261
36015
  }
35262
36016
 
35263
36017
  namespace OperatorService {
@@ -35290,13 +36044,6 @@ export namespace temporal {
35290
36044
  */
35291
36045
  type DeleteNamespaceCallback = (error: (Error|null), response?: temporal.api.operatorservice.v1.DeleteNamespaceResponse) => void;
35292
36046
 
35293
- /**
35294
- * Callback as used by {@link temporal.api.operatorservice.v1.OperatorService#deleteWorkflowExecution}.
35295
- * @param error Error, if any
35296
- * @param [response] DeleteWorkflowExecutionResponse
35297
- */
35298
- type DeleteWorkflowExecutionCallback = (error: (Error|null), response?: temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse) => void;
35299
-
35300
36047
  /**
35301
36048
  * Callback as used by {@link temporal.api.operatorservice.v1.OperatorService#addOrUpdateRemoteCluster}.
35302
36049
  * @param error Error, if any
@@ -35311,26 +36058,12 @@ export namespace temporal {
35311
36058
  */
35312
36059
  type RemoveRemoteClusterCallback = (error: (Error|null), response?: temporal.api.operatorservice.v1.RemoveRemoteClusterResponse) => void;
35313
36060
 
35314
- /**
35315
- * Callback as used by {@link temporal.api.operatorservice.v1.OperatorService#describeCluster}.
35316
- * @param error Error, if any
35317
- * @param [response] DescribeClusterResponse
35318
- */
35319
- type DescribeClusterCallback = (error: (Error|null), response?: temporal.api.operatorservice.v1.DescribeClusterResponse) => void;
35320
-
35321
36061
  /**
35322
36062
  * Callback as used by {@link temporal.api.operatorservice.v1.OperatorService#listClusters}.
35323
36063
  * @param error Error, if any
35324
36064
  * @param [response] ListClustersResponse
35325
36065
  */
35326
36066
  type ListClustersCallback = (error: (Error|null), response?: temporal.api.operatorservice.v1.ListClustersResponse) => void;
35327
-
35328
- /**
35329
- * Callback as used by {@link temporal.api.operatorservice.v1.OperatorService#listClusterMembers}.
35330
- * @param error Error, if any
35331
- * @param [response] ListClusterMembersResponse
35332
- */
35333
- type ListClusterMembersCallback = (error: (Error|null), response?: temporal.api.operatorservice.v1.ListClusterMembersResponse) => void;
35334
36067
  }
35335
36068
 
35336
36069
  /** Properties of an AddSearchAttributesRequest. */
@@ -36047,186 +36780,6 @@ export namespace temporal {
36047
36780
  public static getTypeUrl(typeUrlPrefix?: string): string;
36048
36781
  }
36049
36782
 
36050
- /** Properties of a DeleteWorkflowExecutionRequest. */
36051
- interface IDeleteWorkflowExecutionRequest {
36052
-
36053
- /** DeleteWorkflowExecutionRequest namespace */
36054
- namespace?: (string|null);
36055
-
36056
- /** DeleteWorkflowExecutionRequest workflowExecution */
36057
- workflowExecution?: (temporal.api.common.v1.IWorkflowExecution|null);
36058
- }
36059
-
36060
- /** Represents a DeleteWorkflowExecutionRequest. */
36061
- class DeleteWorkflowExecutionRequest implements IDeleteWorkflowExecutionRequest {
36062
-
36063
- /**
36064
- * Constructs a new DeleteWorkflowExecutionRequest.
36065
- * @param [properties] Properties to set
36066
- */
36067
- constructor(properties?: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionRequest);
36068
-
36069
- /** DeleteWorkflowExecutionRequest namespace. */
36070
- public namespace: string;
36071
-
36072
- /** DeleteWorkflowExecutionRequest workflowExecution. */
36073
- public workflowExecution?: (temporal.api.common.v1.IWorkflowExecution|null);
36074
-
36075
- /**
36076
- * Creates a new DeleteWorkflowExecutionRequest instance using the specified properties.
36077
- * @param [properties] Properties to set
36078
- * @returns DeleteWorkflowExecutionRequest instance
36079
- */
36080
- public static create(properties?: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionRequest): temporal.api.operatorservice.v1.DeleteWorkflowExecutionRequest;
36081
-
36082
- /**
36083
- * Encodes the specified DeleteWorkflowExecutionRequest message. Does not implicitly {@link temporal.api.operatorservice.v1.DeleteWorkflowExecutionRequest.verify|verify} messages.
36084
- * @param message DeleteWorkflowExecutionRequest message or plain object to encode
36085
- * @param [writer] Writer to encode to
36086
- * @returns Writer
36087
- */
36088
- public static encode(message: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
36089
-
36090
- /**
36091
- * Encodes the specified DeleteWorkflowExecutionRequest message, length delimited. Does not implicitly {@link temporal.api.operatorservice.v1.DeleteWorkflowExecutionRequest.verify|verify} messages.
36092
- * @param message DeleteWorkflowExecutionRequest message or plain object to encode
36093
- * @param [writer] Writer to encode to
36094
- * @returns Writer
36095
- */
36096
- public static encodeDelimited(message: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
36097
-
36098
- /**
36099
- * Decodes a DeleteWorkflowExecutionRequest message from the specified reader or buffer.
36100
- * @param reader Reader or buffer to decode from
36101
- * @param [length] Message length if known beforehand
36102
- * @returns DeleteWorkflowExecutionRequest
36103
- * @throws {Error} If the payload is not a reader or valid buffer
36104
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36105
- */
36106
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.operatorservice.v1.DeleteWorkflowExecutionRequest;
36107
-
36108
- /**
36109
- * Decodes a DeleteWorkflowExecutionRequest message from the specified reader or buffer, length delimited.
36110
- * @param reader Reader or buffer to decode from
36111
- * @returns DeleteWorkflowExecutionRequest
36112
- * @throws {Error} If the payload is not a reader or valid buffer
36113
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36114
- */
36115
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.operatorservice.v1.DeleteWorkflowExecutionRequest;
36116
-
36117
- /**
36118
- * Creates a DeleteWorkflowExecutionRequest message from a plain object. Also converts values to their respective internal types.
36119
- * @param object Plain object
36120
- * @returns DeleteWorkflowExecutionRequest
36121
- */
36122
- public static fromObject(object: { [k: string]: any }): temporal.api.operatorservice.v1.DeleteWorkflowExecutionRequest;
36123
-
36124
- /**
36125
- * Creates a plain object from a DeleteWorkflowExecutionRequest message. Also converts values to other types if specified.
36126
- * @param message DeleteWorkflowExecutionRequest
36127
- * @param [options] Conversion options
36128
- * @returns Plain object
36129
- */
36130
- public static toObject(message: temporal.api.operatorservice.v1.DeleteWorkflowExecutionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
36131
-
36132
- /**
36133
- * Converts this DeleteWorkflowExecutionRequest to JSON.
36134
- * @returns JSON object
36135
- */
36136
- public toJSON(): { [k: string]: any };
36137
-
36138
- /**
36139
- * Gets the default type url for DeleteWorkflowExecutionRequest
36140
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36141
- * @returns The default type url
36142
- */
36143
- public static getTypeUrl(typeUrlPrefix?: string): string;
36144
- }
36145
-
36146
- /** Properties of a DeleteWorkflowExecutionResponse. */
36147
- interface IDeleteWorkflowExecutionResponse {
36148
- }
36149
-
36150
- /** Represents a DeleteWorkflowExecutionResponse. */
36151
- class DeleteWorkflowExecutionResponse implements IDeleteWorkflowExecutionResponse {
36152
-
36153
- /**
36154
- * Constructs a new DeleteWorkflowExecutionResponse.
36155
- * @param [properties] Properties to set
36156
- */
36157
- constructor(properties?: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionResponse);
36158
-
36159
- /**
36160
- * Creates a new DeleteWorkflowExecutionResponse instance using the specified properties.
36161
- * @param [properties] Properties to set
36162
- * @returns DeleteWorkflowExecutionResponse instance
36163
- */
36164
- public static create(properties?: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionResponse): temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse;
36165
-
36166
- /**
36167
- * Encodes the specified DeleteWorkflowExecutionResponse message. Does not implicitly {@link temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse.verify|verify} messages.
36168
- * @param message DeleteWorkflowExecutionResponse message or plain object to encode
36169
- * @param [writer] Writer to encode to
36170
- * @returns Writer
36171
- */
36172
- public static encode(message: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
36173
-
36174
- /**
36175
- * Encodes the specified DeleteWorkflowExecutionResponse message, length delimited. Does not implicitly {@link temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse.verify|verify} messages.
36176
- * @param message DeleteWorkflowExecutionResponse message or plain object to encode
36177
- * @param [writer] Writer to encode to
36178
- * @returns Writer
36179
- */
36180
- public static encodeDelimited(message: temporal.api.operatorservice.v1.IDeleteWorkflowExecutionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
36181
-
36182
- /**
36183
- * Decodes a DeleteWorkflowExecutionResponse message from the specified reader or buffer.
36184
- * @param reader Reader or buffer to decode from
36185
- * @param [length] Message length if known beforehand
36186
- * @returns DeleteWorkflowExecutionResponse
36187
- * @throws {Error} If the payload is not a reader or valid buffer
36188
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36189
- */
36190
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse;
36191
-
36192
- /**
36193
- * Decodes a DeleteWorkflowExecutionResponse message from the specified reader or buffer, length delimited.
36194
- * @param reader Reader or buffer to decode from
36195
- * @returns DeleteWorkflowExecutionResponse
36196
- * @throws {Error} If the payload is not a reader or valid buffer
36197
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36198
- */
36199
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse;
36200
-
36201
- /**
36202
- * Creates a DeleteWorkflowExecutionResponse message from a plain object. Also converts values to their respective internal types.
36203
- * @param object Plain object
36204
- * @returns DeleteWorkflowExecutionResponse
36205
- */
36206
- public static fromObject(object: { [k: string]: any }): temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse;
36207
-
36208
- /**
36209
- * Creates a plain object from a DeleteWorkflowExecutionResponse message. Also converts values to other types if specified.
36210
- * @param message DeleteWorkflowExecutionResponse
36211
- * @param [options] Conversion options
36212
- * @returns Plain object
36213
- */
36214
- public static toObject(message: temporal.api.operatorservice.v1.DeleteWorkflowExecutionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
36215
-
36216
- /**
36217
- * Converts this DeleteWorkflowExecutionResponse to JSON.
36218
- * @returns JSON object
36219
- */
36220
- public toJSON(): { [k: string]: any };
36221
-
36222
- /**
36223
- * Gets the default type url for DeleteWorkflowExecutionResponse
36224
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36225
- * @returns The default type url
36226
- */
36227
- public static getTypeUrl(typeUrlPrefix?: string): string;
36228
- }
36229
-
36230
36783
  /** Properties of an AddOrUpdateRemoteClusterRequest. */
36231
36784
  interface IAddOrUpdateRemoteClusterRequest {
36232
36785
 
@@ -36581,252 +37134,6 @@ export namespace temporal {
36581
37134
  public static getTypeUrl(typeUrlPrefix?: string): string;
36582
37135
  }
36583
37136
 
36584
- /** Properties of a DescribeClusterRequest. */
36585
- interface IDescribeClusterRequest {
36586
-
36587
- /** DescribeClusterRequest clusterName */
36588
- clusterName?: (string|null);
36589
- }
36590
-
36591
- /** Represents a DescribeClusterRequest. */
36592
- class DescribeClusterRequest implements IDescribeClusterRequest {
36593
-
36594
- /**
36595
- * Constructs a new DescribeClusterRequest.
36596
- * @param [properties] Properties to set
36597
- */
36598
- constructor(properties?: temporal.api.operatorservice.v1.IDescribeClusterRequest);
36599
-
36600
- /** DescribeClusterRequest clusterName. */
36601
- public clusterName: string;
36602
-
36603
- /**
36604
- * Creates a new DescribeClusterRequest instance using the specified properties.
36605
- * @param [properties] Properties to set
36606
- * @returns DescribeClusterRequest instance
36607
- */
36608
- public static create(properties?: temporal.api.operatorservice.v1.IDescribeClusterRequest): temporal.api.operatorservice.v1.DescribeClusterRequest;
36609
-
36610
- /**
36611
- * Encodes the specified DescribeClusterRequest message. Does not implicitly {@link temporal.api.operatorservice.v1.DescribeClusterRequest.verify|verify} messages.
36612
- * @param message DescribeClusterRequest message or plain object to encode
36613
- * @param [writer] Writer to encode to
36614
- * @returns Writer
36615
- */
36616
- public static encode(message: temporal.api.operatorservice.v1.IDescribeClusterRequest, writer?: $protobuf.Writer): $protobuf.Writer;
36617
-
36618
- /**
36619
- * Encodes the specified DescribeClusterRequest message, length delimited. Does not implicitly {@link temporal.api.operatorservice.v1.DescribeClusterRequest.verify|verify} messages.
36620
- * @param message DescribeClusterRequest message or plain object to encode
36621
- * @param [writer] Writer to encode to
36622
- * @returns Writer
36623
- */
36624
- public static encodeDelimited(message: temporal.api.operatorservice.v1.IDescribeClusterRequest, writer?: $protobuf.Writer): $protobuf.Writer;
36625
-
36626
- /**
36627
- * Decodes a DescribeClusterRequest message from the specified reader or buffer.
36628
- * @param reader Reader or buffer to decode from
36629
- * @param [length] Message length if known beforehand
36630
- * @returns DescribeClusterRequest
36631
- * @throws {Error} If the payload is not a reader or valid buffer
36632
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36633
- */
36634
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.operatorservice.v1.DescribeClusterRequest;
36635
-
36636
- /**
36637
- * Decodes a DescribeClusterRequest message from the specified reader or buffer, length delimited.
36638
- * @param reader Reader or buffer to decode from
36639
- * @returns DescribeClusterRequest
36640
- * @throws {Error} If the payload is not a reader or valid buffer
36641
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36642
- */
36643
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.operatorservice.v1.DescribeClusterRequest;
36644
-
36645
- /**
36646
- * Creates a DescribeClusterRequest message from a plain object. Also converts values to their respective internal types.
36647
- * @param object Plain object
36648
- * @returns DescribeClusterRequest
36649
- */
36650
- public static fromObject(object: { [k: string]: any }): temporal.api.operatorservice.v1.DescribeClusterRequest;
36651
-
36652
- /**
36653
- * Creates a plain object from a DescribeClusterRequest message. Also converts values to other types if specified.
36654
- * @param message DescribeClusterRequest
36655
- * @param [options] Conversion options
36656
- * @returns Plain object
36657
- */
36658
- public static toObject(message: temporal.api.operatorservice.v1.DescribeClusterRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
36659
-
36660
- /**
36661
- * Converts this DescribeClusterRequest to JSON.
36662
- * @returns JSON object
36663
- */
36664
- public toJSON(): { [k: string]: any };
36665
-
36666
- /**
36667
- * Gets the default type url for DescribeClusterRequest
36668
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36669
- * @returns The default type url
36670
- */
36671
- public static getTypeUrl(typeUrlPrefix?: string): string;
36672
- }
36673
-
36674
- /** Properties of a DescribeClusterResponse. */
36675
- interface IDescribeClusterResponse {
36676
-
36677
- /** DescribeClusterResponse supportedClients */
36678
- supportedClients?: ({ [k: string]: string }|null);
36679
-
36680
- /** DescribeClusterResponse serverVersion */
36681
- serverVersion?: (string|null);
36682
-
36683
- /** DescribeClusterResponse membershipInfo */
36684
- membershipInfo?: (temporal.api.cluster.v1.IMembershipInfo|null);
36685
-
36686
- /** DescribeClusterResponse clusterId */
36687
- clusterId?: (string|null);
36688
-
36689
- /** DescribeClusterResponse clusterName */
36690
- clusterName?: (string|null);
36691
-
36692
- /** DescribeClusterResponse historyShardCount */
36693
- historyShardCount?: (number|null);
36694
-
36695
- /** DescribeClusterResponse persistenceStore */
36696
- persistenceStore?: (string|null);
36697
-
36698
- /** DescribeClusterResponse visibilityStore */
36699
- visibilityStore?: (string|null);
36700
-
36701
- /** DescribeClusterResponse versionInfo */
36702
- versionInfo?: (temporal.api.version.v1.IVersionInfo|null);
36703
-
36704
- /** DescribeClusterResponse failoverVersionIncrement */
36705
- failoverVersionIncrement?: (Long|null);
36706
-
36707
- /** DescribeClusterResponse initialFailoverVersion */
36708
- initialFailoverVersion?: (Long|null);
36709
-
36710
- /** DescribeClusterResponse isGlobalNamespaceEnabled */
36711
- isGlobalNamespaceEnabled?: (boolean|null);
36712
- }
36713
-
36714
- /** Represents a DescribeClusterResponse. */
36715
- class DescribeClusterResponse implements IDescribeClusterResponse {
36716
-
36717
- /**
36718
- * Constructs a new DescribeClusterResponse.
36719
- * @param [properties] Properties to set
36720
- */
36721
- constructor(properties?: temporal.api.operatorservice.v1.IDescribeClusterResponse);
36722
-
36723
- /** DescribeClusterResponse supportedClients. */
36724
- public supportedClients: { [k: string]: string };
36725
-
36726
- /** DescribeClusterResponse serverVersion. */
36727
- public serverVersion: string;
36728
-
36729
- /** DescribeClusterResponse membershipInfo. */
36730
- public membershipInfo?: (temporal.api.cluster.v1.IMembershipInfo|null);
36731
-
36732
- /** DescribeClusterResponse clusterId. */
36733
- public clusterId: string;
36734
-
36735
- /** DescribeClusterResponse clusterName. */
36736
- public clusterName: string;
36737
-
36738
- /** DescribeClusterResponse historyShardCount. */
36739
- public historyShardCount: number;
36740
-
36741
- /** DescribeClusterResponse persistenceStore. */
36742
- public persistenceStore: string;
36743
-
36744
- /** DescribeClusterResponse visibilityStore. */
36745
- public visibilityStore: string;
36746
-
36747
- /** DescribeClusterResponse versionInfo. */
36748
- public versionInfo?: (temporal.api.version.v1.IVersionInfo|null);
36749
-
36750
- /** DescribeClusterResponse failoverVersionIncrement. */
36751
- public failoverVersionIncrement: Long;
36752
-
36753
- /** DescribeClusterResponse initialFailoverVersion. */
36754
- public initialFailoverVersion: Long;
36755
-
36756
- /** DescribeClusterResponse isGlobalNamespaceEnabled. */
36757
- public isGlobalNamespaceEnabled: boolean;
36758
-
36759
- /**
36760
- * Creates a new DescribeClusterResponse instance using the specified properties.
36761
- * @param [properties] Properties to set
36762
- * @returns DescribeClusterResponse instance
36763
- */
36764
- public static create(properties?: temporal.api.operatorservice.v1.IDescribeClusterResponse): temporal.api.operatorservice.v1.DescribeClusterResponse;
36765
-
36766
- /**
36767
- * Encodes the specified DescribeClusterResponse message. Does not implicitly {@link temporal.api.operatorservice.v1.DescribeClusterResponse.verify|verify} messages.
36768
- * @param message DescribeClusterResponse message or plain object to encode
36769
- * @param [writer] Writer to encode to
36770
- * @returns Writer
36771
- */
36772
- public static encode(message: temporal.api.operatorservice.v1.IDescribeClusterResponse, writer?: $protobuf.Writer): $protobuf.Writer;
36773
-
36774
- /**
36775
- * Encodes the specified DescribeClusterResponse message, length delimited. Does not implicitly {@link temporal.api.operatorservice.v1.DescribeClusterResponse.verify|verify} messages.
36776
- * @param message DescribeClusterResponse message or plain object to encode
36777
- * @param [writer] Writer to encode to
36778
- * @returns Writer
36779
- */
36780
- public static encodeDelimited(message: temporal.api.operatorservice.v1.IDescribeClusterResponse, writer?: $protobuf.Writer): $protobuf.Writer;
36781
-
36782
- /**
36783
- * Decodes a DescribeClusterResponse message from the specified reader or buffer.
36784
- * @param reader Reader or buffer to decode from
36785
- * @param [length] Message length if known beforehand
36786
- * @returns DescribeClusterResponse
36787
- * @throws {Error} If the payload is not a reader or valid buffer
36788
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36789
- */
36790
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.operatorservice.v1.DescribeClusterResponse;
36791
-
36792
- /**
36793
- * Decodes a DescribeClusterResponse message from the specified reader or buffer, length delimited.
36794
- * @param reader Reader or buffer to decode from
36795
- * @returns DescribeClusterResponse
36796
- * @throws {Error} If the payload is not a reader or valid buffer
36797
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
36798
- */
36799
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.operatorservice.v1.DescribeClusterResponse;
36800
-
36801
- /**
36802
- * Creates a DescribeClusterResponse message from a plain object. Also converts values to their respective internal types.
36803
- * @param object Plain object
36804
- * @returns DescribeClusterResponse
36805
- */
36806
- public static fromObject(object: { [k: string]: any }): temporal.api.operatorservice.v1.DescribeClusterResponse;
36807
-
36808
- /**
36809
- * Creates a plain object from a DescribeClusterResponse message. Also converts values to other types if specified.
36810
- * @param message DescribeClusterResponse
36811
- * @param [options] Conversion options
36812
- * @returns Plain object
36813
- */
36814
- public static toObject(message: temporal.api.operatorservice.v1.DescribeClusterResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
36815
-
36816
- /**
36817
- * Converts this DescribeClusterResponse to JSON.
36818
- * @returns JSON object
36819
- */
36820
- public toJSON(): { [k: string]: any };
36821
-
36822
- /**
36823
- * Gets the default type url for DescribeClusterResponse
36824
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36825
- * @returns The default type url
36826
- */
36827
- public static getTypeUrl(typeUrlPrefix?: string): string;
36828
- }
36829
-
36830
37137
  /** Properties of a ListClustersRequest. */
36831
37138
  interface IListClustersRequest {
36832
37139
 
@@ -36927,7 +37234,7 @@ export namespace temporal {
36927
37234
  interface IListClustersResponse {
36928
37235
 
36929
37236
  /** ListClustersResponse clusters */
36930
- clusters?: (temporal.api.cluster.v1.IClusterMetadata[]|null);
37237
+ clusters?: (temporal.api.operatorservice.v1.IClusterMetadata[]|null);
36931
37238
 
36932
37239
  /** ListClustersResponse nextPageToken */
36933
37240
  nextPageToken?: (Uint8Array|null);
@@ -36943,7 +37250,7 @@ export namespace temporal {
36943
37250
  constructor(properties?: temporal.api.operatorservice.v1.IListClustersResponse);
36944
37251
 
36945
37252
  /** ListClustersResponse clusters. */
36946
- public clusters: temporal.api.cluster.v1.IClusterMetadata[];
37253
+ public clusters: temporal.api.operatorservice.v1.IClusterMetadata[];
36947
37254
 
36948
37255
  /** ListClustersResponse nextPageToken. */
36949
37256
  public nextPageToken: Uint8Array;
@@ -37019,265 +37326,23 @@ export namespace temporal {
37019
37326
  public static getTypeUrl(typeUrlPrefix?: string): string;
37020
37327
  }
37021
37328
 
37022
- /** Properties of a ListClusterMembersRequest. */
37023
- interface IListClusterMembersRequest {
37024
-
37025
- /** ListClusterMembersRequest lastHeartbeatWithin */
37026
- lastHeartbeatWithin?: (google.protobuf.IDuration|null);
37027
-
37028
- /** ListClusterMembersRequest rpcAddress */
37029
- rpcAddress?: (string|null);
37030
-
37031
- /** ListClusterMembersRequest hostId */
37032
- hostId?: (string|null);
37033
-
37034
- /** ListClusterMembersRequest role */
37035
- role?: (temporal.api.enums.v1.ClusterMemberRole|null);
37036
-
37037
- /** ListClusterMembersRequest sessionStartedAfterTime */
37038
- sessionStartedAfterTime?: (google.protobuf.ITimestamp|null);
37039
-
37040
- /** ListClusterMembersRequest pageSize */
37041
- pageSize?: (number|null);
37042
-
37043
- /** ListClusterMembersRequest nextPageToken */
37044
- nextPageToken?: (Uint8Array|null);
37045
- }
37046
-
37047
- /** Represents a ListClusterMembersRequest. */
37048
- class ListClusterMembersRequest implements IListClusterMembersRequest {
37049
-
37050
- /**
37051
- * Constructs a new ListClusterMembersRequest.
37052
- * @param [properties] Properties to set
37053
- */
37054
- constructor(properties?: temporal.api.operatorservice.v1.IListClusterMembersRequest);
37055
-
37056
- /** ListClusterMembersRequest lastHeartbeatWithin. */
37057
- public lastHeartbeatWithin?: (google.protobuf.IDuration|null);
37058
-
37059
- /** ListClusterMembersRequest rpcAddress. */
37060
- public rpcAddress: string;
37061
-
37062
- /** ListClusterMembersRequest hostId. */
37063
- public hostId: string;
37064
-
37065
- /** ListClusterMembersRequest role. */
37066
- public role: temporal.api.enums.v1.ClusterMemberRole;
37067
-
37068
- /** ListClusterMembersRequest sessionStartedAfterTime. */
37069
- public sessionStartedAfterTime?: (google.protobuf.ITimestamp|null);
37070
-
37071
- /** ListClusterMembersRequest pageSize. */
37072
- public pageSize: number;
37073
-
37074
- /** ListClusterMembersRequest nextPageToken. */
37075
- public nextPageToken: Uint8Array;
37076
-
37077
- /**
37078
- * Creates a new ListClusterMembersRequest instance using the specified properties.
37079
- * @param [properties] Properties to set
37080
- * @returns ListClusterMembersRequest instance
37081
- */
37082
- public static create(properties?: temporal.api.operatorservice.v1.IListClusterMembersRequest): temporal.api.operatorservice.v1.ListClusterMembersRequest;
37083
-
37084
- /**
37085
- * Encodes the specified ListClusterMembersRequest message. Does not implicitly {@link temporal.api.operatorservice.v1.ListClusterMembersRequest.verify|verify} messages.
37086
- * @param message ListClusterMembersRequest message or plain object to encode
37087
- * @param [writer] Writer to encode to
37088
- * @returns Writer
37089
- */
37090
- public static encode(message: temporal.api.operatorservice.v1.IListClusterMembersRequest, writer?: $protobuf.Writer): $protobuf.Writer;
37091
-
37092
- /**
37093
- * Encodes the specified ListClusterMembersRequest message, length delimited. Does not implicitly {@link temporal.api.operatorservice.v1.ListClusterMembersRequest.verify|verify} messages.
37094
- * @param message ListClusterMembersRequest message or plain object to encode
37095
- * @param [writer] Writer to encode to
37096
- * @returns Writer
37097
- */
37098
- public static encodeDelimited(message: temporal.api.operatorservice.v1.IListClusterMembersRequest, writer?: $protobuf.Writer): $protobuf.Writer;
37099
-
37100
- /**
37101
- * Decodes a ListClusterMembersRequest message from the specified reader or buffer.
37102
- * @param reader Reader or buffer to decode from
37103
- * @param [length] Message length if known beforehand
37104
- * @returns ListClusterMembersRequest
37105
- * @throws {Error} If the payload is not a reader or valid buffer
37106
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37107
- */
37108
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.operatorservice.v1.ListClusterMembersRequest;
37109
-
37110
- /**
37111
- * Decodes a ListClusterMembersRequest message from the specified reader or buffer, length delimited.
37112
- * @param reader Reader or buffer to decode from
37113
- * @returns ListClusterMembersRequest
37114
- * @throws {Error} If the payload is not a reader or valid buffer
37115
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37116
- */
37117
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.operatorservice.v1.ListClusterMembersRequest;
37118
-
37119
- /**
37120
- * Creates a ListClusterMembersRequest message from a plain object. Also converts values to their respective internal types.
37121
- * @param object Plain object
37122
- * @returns ListClusterMembersRequest
37123
- */
37124
- public static fromObject(object: { [k: string]: any }): temporal.api.operatorservice.v1.ListClusterMembersRequest;
37125
-
37126
- /**
37127
- * Creates a plain object from a ListClusterMembersRequest message. Also converts values to other types if specified.
37128
- * @param message ListClusterMembersRequest
37129
- * @param [options] Conversion options
37130
- * @returns Plain object
37131
- */
37132
- public static toObject(message: temporal.api.operatorservice.v1.ListClusterMembersRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
37133
-
37134
- /**
37135
- * Converts this ListClusterMembersRequest to JSON.
37136
- * @returns JSON object
37137
- */
37138
- public toJSON(): { [k: string]: any };
37139
-
37140
- /**
37141
- * Gets the default type url for ListClusterMembersRequest
37142
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37143
- * @returns The default type url
37144
- */
37145
- public static getTypeUrl(typeUrlPrefix?: string): string;
37146
- }
37147
-
37148
- /** Properties of a ListClusterMembersResponse. */
37149
- interface IListClusterMembersResponse {
37150
-
37151
- /** ListClusterMembersResponse activeMembers */
37152
- activeMembers?: (temporal.api.cluster.v1.IClusterMember[]|null);
37153
-
37154
- /** ListClusterMembersResponse nextPageToken */
37155
- nextPageToken?: (Uint8Array|null);
37156
- }
37157
-
37158
- /** Represents a ListClusterMembersResponse. */
37159
- class ListClusterMembersResponse implements IListClusterMembersResponse {
37160
-
37161
- /**
37162
- * Constructs a new ListClusterMembersResponse.
37163
- * @param [properties] Properties to set
37164
- */
37165
- constructor(properties?: temporal.api.operatorservice.v1.IListClusterMembersResponse);
37166
-
37167
- /** ListClusterMembersResponse activeMembers. */
37168
- public activeMembers: temporal.api.cluster.v1.IClusterMember[];
37169
-
37170
- /** ListClusterMembersResponse nextPageToken. */
37171
- public nextPageToken: Uint8Array;
37172
-
37173
- /**
37174
- * Creates a new ListClusterMembersResponse instance using the specified properties.
37175
- * @param [properties] Properties to set
37176
- * @returns ListClusterMembersResponse instance
37177
- */
37178
- public static create(properties?: temporal.api.operatorservice.v1.IListClusterMembersResponse): temporal.api.operatorservice.v1.ListClusterMembersResponse;
37179
-
37180
- /**
37181
- * Encodes the specified ListClusterMembersResponse message. Does not implicitly {@link temporal.api.operatorservice.v1.ListClusterMembersResponse.verify|verify} messages.
37182
- * @param message ListClusterMembersResponse message or plain object to encode
37183
- * @param [writer] Writer to encode to
37184
- * @returns Writer
37185
- */
37186
- public static encode(message: temporal.api.operatorservice.v1.IListClusterMembersResponse, writer?: $protobuf.Writer): $protobuf.Writer;
37187
-
37188
- /**
37189
- * Encodes the specified ListClusterMembersResponse message, length delimited. Does not implicitly {@link temporal.api.operatorservice.v1.ListClusterMembersResponse.verify|verify} messages.
37190
- * @param message ListClusterMembersResponse message or plain object to encode
37191
- * @param [writer] Writer to encode to
37192
- * @returns Writer
37193
- */
37194
- public static encodeDelimited(message: temporal.api.operatorservice.v1.IListClusterMembersResponse, writer?: $protobuf.Writer): $protobuf.Writer;
37195
-
37196
- /**
37197
- * Decodes a ListClusterMembersResponse message from the specified reader or buffer.
37198
- * @param reader Reader or buffer to decode from
37199
- * @param [length] Message length if known beforehand
37200
- * @returns ListClusterMembersResponse
37201
- * @throws {Error} If the payload is not a reader or valid buffer
37202
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37203
- */
37204
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.operatorservice.v1.ListClusterMembersResponse;
37205
-
37206
- /**
37207
- * Decodes a ListClusterMembersResponse message from the specified reader or buffer, length delimited.
37208
- * @param reader Reader or buffer to decode from
37209
- * @returns ListClusterMembersResponse
37210
- * @throws {Error} If the payload is not a reader or valid buffer
37211
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37212
- */
37213
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.operatorservice.v1.ListClusterMembersResponse;
37214
-
37215
- /**
37216
- * Creates a ListClusterMembersResponse message from a plain object. Also converts values to their respective internal types.
37217
- * @param object Plain object
37218
- * @returns ListClusterMembersResponse
37219
- */
37220
- public static fromObject(object: { [k: string]: any }): temporal.api.operatorservice.v1.ListClusterMembersResponse;
37221
-
37222
- /**
37223
- * Creates a plain object from a ListClusterMembersResponse message. Also converts values to other types if specified.
37224
- * @param message ListClusterMembersResponse
37225
- * @param [options] Conversion options
37226
- * @returns Plain object
37227
- */
37228
- public static toObject(message: temporal.api.operatorservice.v1.ListClusterMembersResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
37229
-
37230
- /**
37231
- * Converts this ListClusterMembersResponse to JSON.
37232
- * @returns JSON object
37233
- */
37234
- public toJSON(): { [k: string]: any };
37235
-
37236
- /**
37237
- * Gets the default type url for ListClusterMembersResponse
37238
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37239
- * @returns The default type url
37240
- */
37241
- public static getTypeUrl(typeUrlPrefix?: string): string;
37242
- }
37243
- }
37244
- }
37245
-
37246
- /** Namespace cluster. */
37247
- namespace cluster {
37248
-
37249
- /** Namespace v1. */
37250
- namespace v1 {
37251
-
37252
37329
  /** Properties of a ClusterMetadata. */
37253
37330
  interface IClusterMetadata {
37254
37331
 
37255
- /** ClusterMetadata cluster */
37256
- cluster?: (string|null);
37257
-
37258
- /** ClusterMetadata historyShardCount */
37259
- historyShardCount?: (number|null);
37332
+ /** ClusterMetadata clusterName */
37333
+ clusterName?: (string|null);
37260
37334
 
37261
37335
  /** ClusterMetadata clusterId */
37262
37336
  clusterId?: (string|null);
37263
37337
 
37264
- /** ClusterMetadata versionInfo */
37265
- versionInfo?: (temporal.api.version.v1.IVersionInfo|null);
37266
-
37267
- /** ClusterMetadata indexSearchAttributes */
37268
- indexSearchAttributes?: ({ [k: string]: temporal.api.cluster.v1.IIndexSearchAttributes }|null);
37269
-
37270
- /** ClusterMetadata clusterAddress */
37271
- clusterAddress?: (string|null);
37272
-
37273
- /** ClusterMetadata failoverVersionIncrement */
37274
- failoverVersionIncrement?: (Long|null);
37338
+ /** ClusterMetadata address */
37339
+ address?: (string|null);
37275
37340
 
37276
37341
  /** ClusterMetadata initialFailoverVersion */
37277
37342
  initialFailoverVersion?: (Long|null);
37278
37343
 
37279
- /** ClusterMetadata isGlobalNamespaceEnabled */
37280
- isGlobalNamespaceEnabled?: (boolean|null);
37344
+ /** ClusterMetadata historyShardCount */
37345
+ historyShardCount?: (number|null);
37281
37346
 
37282
37347
  /** ClusterMetadata isConnectionEnabled */
37283
37348
  isConnectionEnabled?: (boolean|null);
@@ -37290,34 +37355,22 @@ export namespace temporal {
37290
37355
  * Constructs a new ClusterMetadata.
37291
37356
  * @param [properties] Properties to set
37292
37357
  */
37293
- constructor(properties?: temporal.api.cluster.v1.IClusterMetadata);
37294
-
37295
- /** ClusterMetadata cluster. */
37296
- public cluster: string;
37358
+ constructor(properties?: temporal.api.operatorservice.v1.IClusterMetadata);
37297
37359
 
37298
- /** ClusterMetadata historyShardCount. */
37299
- public historyShardCount: number;
37360
+ /** ClusterMetadata clusterName. */
37361
+ public clusterName: string;
37300
37362
 
37301
37363
  /** ClusterMetadata clusterId. */
37302
37364
  public clusterId: string;
37303
37365
 
37304
- /** ClusterMetadata versionInfo. */
37305
- public versionInfo?: (temporal.api.version.v1.IVersionInfo|null);
37306
-
37307
- /** ClusterMetadata indexSearchAttributes. */
37308
- public indexSearchAttributes: { [k: string]: temporal.api.cluster.v1.IIndexSearchAttributes };
37309
-
37310
- /** ClusterMetadata clusterAddress. */
37311
- public clusterAddress: string;
37312
-
37313
- /** ClusterMetadata failoverVersionIncrement. */
37314
- public failoverVersionIncrement: Long;
37366
+ /** ClusterMetadata address. */
37367
+ public address: string;
37315
37368
 
37316
37369
  /** ClusterMetadata initialFailoverVersion. */
37317
37370
  public initialFailoverVersion: Long;
37318
37371
 
37319
- /** ClusterMetadata isGlobalNamespaceEnabled. */
37320
- public isGlobalNamespaceEnabled: boolean;
37372
+ /** ClusterMetadata historyShardCount. */
37373
+ public historyShardCount: number;
37321
37374
 
37322
37375
  /** ClusterMetadata isConnectionEnabled. */
37323
37376
  public isConnectionEnabled: boolean;
@@ -37327,23 +37380,23 @@ export namespace temporal {
37327
37380
  * @param [properties] Properties to set
37328
37381
  * @returns ClusterMetadata instance
37329
37382
  */
37330
- public static create(properties?: temporal.api.cluster.v1.IClusterMetadata): temporal.api.cluster.v1.ClusterMetadata;
37383
+ public static create(properties?: temporal.api.operatorservice.v1.IClusterMetadata): temporal.api.operatorservice.v1.ClusterMetadata;
37331
37384
 
37332
37385
  /**
37333
- * Encodes the specified ClusterMetadata message. Does not implicitly {@link temporal.api.cluster.v1.ClusterMetadata.verify|verify} messages.
37386
+ * Encodes the specified ClusterMetadata message. Does not implicitly {@link temporal.api.operatorservice.v1.ClusterMetadata.verify|verify} messages.
37334
37387
  * @param message ClusterMetadata message or plain object to encode
37335
37388
  * @param [writer] Writer to encode to
37336
37389
  * @returns Writer
37337
37390
  */
37338
- public static encode(message: temporal.api.cluster.v1.IClusterMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
37391
+ public static encode(message: temporal.api.operatorservice.v1.IClusterMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
37339
37392
 
37340
37393
  /**
37341
- * Encodes the specified ClusterMetadata message, length delimited. Does not implicitly {@link temporal.api.cluster.v1.ClusterMetadata.verify|verify} messages.
37394
+ * Encodes the specified ClusterMetadata message, length delimited. Does not implicitly {@link temporal.api.operatorservice.v1.ClusterMetadata.verify|verify} messages.
37342
37395
  * @param message ClusterMetadata message or plain object to encode
37343
37396
  * @param [writer] Writer to encode to
37344
37397
  * @returns Writer
37345
37398
  */
37346
- public static encodeDelimited(message: temporal.api.cluster.v1.IClusterMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
37399
+ public static encodeDelimited(message: temporal.api.operatorservice.v1.IClusterMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
37347
37400
 
37348
37401
  /**
37349
37402
  * Decodes a ClusterMetadata message from the specified reader or buffer.
@@ -37353,7 +37406,7 @@ export namespace temporal {
37353
37406
  * @throws {Error} If the payload is not a reader or valid buffer
37354
37407
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
37355
37408
  */
37356
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cluster.v1.ClusterMetadata;
37409
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.operatorservice.v1.ClusterMetadata;
37357
37410
 
37358
37411
  /**
37359
37412
  * Decodes a ClusterMetadata message from the specified reader or buffer, length delimited.
@@ -37362,14 +37415,14 @@ export namespace temporal {
37362
37415
  * @throws {Error} If the payload is not a reader or valid buffer
37363
37416
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
37364
37417
  */
37365
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cluster.v1.ClusterMetadata;
37418
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.operatorservice.v1.ClusterMetadata;
37366
37419
 
37367
37420
  /**
37368
37421
  * Creates a ClusterMetadata message from a plain object. Also converts values to their respective internal types.
37369
37422
  * @param object Plain object
37370
37423
  * @returns ClusterMetadata
37371
37424
  */
37372
- public static fromObject(object: { [k: string]: any }): temporal.api.cluster.v1.ClusterMetadata;
37425
+ public static fromObject(object: { [k: string]: any }): temporal.api.operatorservice.v1.ClusterMetadata;
37373
37426
 
37374
37427
  /**
37375
37428
  * Creates a plain object from a ClusterMetadata message. Also converts values to other types if specified.
@@ -37377,7 +37430,7 @@ export namespace temporal {
37377
37430
  * @param [options] Conversion options
37378
37431
  * @returns Plain object
37379
37432
  */
37380
- public static toObject(message: temporal.api.cluster.v1.ClusterMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
37433
+ public static toObject(message: temporal.api.operatorservice.v1.ClusterMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
37381
37434
 
37382
37435
  /**
37383
37436
  * Converts this ClusterMetadata to JSON.
@@ -37392,516 +37445,6 @@ export namespace temporal {
37392
37445
  */
37393
37446
  public static getTypeUrl(typeUrlPrefix?: string): string;
37394
37447
  }
37395
-
37396
- /** Properties of an IndexSearchAttributes. */
37397
- interface IIndexSearchAttributes {
37398
-
37399
- /** IndexSearchAttributes customSearchAttributes */
37400
- customSearchAttributes?: ({ [k: string]: temporal.api.enums.v1.IndexedValueType }|null);
37401
- }
37402
-
37403
- /** Represents an IndexSearchAttributes. */
37404
- class IndexSearchAttributes implements IIndexSearchAttributes {
37405
-
37406
- /**
37407
- * Constructs a new IndexSearchAttributes.
37408
- * @param [properties] Properties to set
37409
- */
37410
- constructor(properties?: temporal.api.cluster.v1.IIndexSearchAttributes);
37411
-
37412
- /** IndexSearchAttributes customSearchAttributes. */
37413
- public customSearchAttributes: { [k: string]: temporal.api.enums.v1.IndexedValueType };
37414
-
37415
- /**
37416
- * Creates a new IndexSearchAttributes instance using the specified properties.
37417
- * @param [properties] Properties to set
37418
- * @returns IndexSearchAttributes instance
37419
- */
37420
- public static create(properties?: temporal.api.cluster.v1.IIndexSearchAttributes): temporal.api.cluster.v1.IndexSearchAttributes;
37421
-
37422
- /**
37423
- * Encodes the specified IndexSearchAttributes message. Does not implicitly {@link temporal.api.cluster.v1.IndexSearchAttributes.verify|verify} messages.
37424
- * @param message IndexSearchAttributes message or plain object to encode
37425
- * @param [writer] Writer to encode to
37426
- * @returns Writer
37427
- */
37428
- public static encode(message: temporal.api.cluster.v1.IIndexSearchAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
37429
-
37430
- /**
37431
- * Encodes the specified IndexSearchAttributes message, length delimited. Does not implicitly {@link temporal.api.cluster.v1.IndexSearchAttributes.verify|verify} messages.
37432
- * @param message IndexSearchAttributes message or plain object to encode
37433
- * @param [writer] Writer to encode to
37434
- * @returns Writer
37435
- */
37436
- public static encodeDelimited(message: temporal.api.cluster.v1.IIndexSearchAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
37437
-
37438
- /**
37439
- * Decodes an IndexSearchAttributes message from the specified reader or buffer.
37440
- * @param reader Reader or buffer to decode from
37441
- * @param [length] Message length if known beforehand
37442
- * @returns IndexSearchAttributes
37443
- * @throws {Error} If the payload is not a reader or valid buffer
37444
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37445
- */
37446
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cluster.v1.IndexSearchAttributes;
37447
-
37448
- /**
37449
- * Decodes an IndexSearchAttributes message from the specified reader or buffer, length delimited.
37450
- * @param reader Reader or buffer to decode from
37451
- * @returns IndexSearchAttributes
37452
- * @throws {Error} If the payload is not a reader or valid buffer
37453
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37454
- */
37455
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cluster.v1.IndexSearchAttributes;
37456
-
37457
- /**
37458
- * Creates an IndexSearchAttributes message from a plain object. Also converts values to their respective internal types.
37459
- * @param object Plain object
37460
- * @returns IndexSearchAttributes
37461
- */
37462
- public static fromObject(object: { [k: string]: any }): temporal.api.cluster.v1.IndexSearchAttributes;
37463
-
37464
- /**
37465
- * Creates a plain object from an IndexSearchAttributes message. Also converts values to other types if specified.
37466
- * @param message IndexSearchAttributes
37467
- * @param [options] Conversion options
37468
- * @returns Plain object
37469
- */
37470
- public static toObject(message: temporal.api.cluster.v1.IndexSearchAttributes, options?: $protobuf.IConversionOptions): { [k: string]: any };
37471
-
37472
- /**
37473
- * Converts this IndexSearchAttributes to JSON.
37474
- * @returns JSON object
37475
- */
37476
- public toJSON(): { [k: string]: any };
37477
-
37478
- /**
37479
- * Gets the default type url for IndexSearchAttributes
37480
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37481
- * @returns The default type url
37482
- */
37483
- public static getTypeUrl(typeUrlPrefix?: string): string;
37484
- }
37485
-
37486
- /** Properties of a HostInfo. */
37487
- interface IHostInfo {
37488
-
37489
- /** HostInfo identity */
37490
- identity?: (string|null);
37491
- }
37492
-
37493
- /** Represents a HostInfo. */
37494
- class HostInfo implements IHostInfo {
37495
-
37496
- /**
37497
- * Constructs a new HostInfo.
37498
- * @param [properties] Properties to set
37499
- */
37500
- constructor(properties?: temporal.api.cluster.v1.IHostInfo);
37501
-
37502
- /** HostInfo identity. */
37503
- public identity: string;
37504
-
37505
- /**
37506
- * Creates a new HostInfo instance using the specified properties.
37507
- * @param [properties] Properties to set
37508
- * @returns HostInfo instance
37509
- */
37510
- public static create(properties?: temporal.api.cluster.v1.IHostInfo): temporal.api.cluster.v1.HostInfo;
37511
-
37512
- /**
37513
- * Encodes the specified HostInfo message. Does not implicitly {@link temporal.api.cluster.v1.HostInfo.verify|verify} messages.
37514
- * @param message HostInfo message or plain object to encode
37515
- * @param [writer] Writer to encode to
37516
- * @returns Writer
37517
- */
37518
- public static encode(message: temporal.api.cluster.v1.IHostInfo, writer?: $protobuf.Writer): $protobuf.Writer;
37519
-
37520
- /**
37521
- * Encodes the specified HostInfo message, length delimited. Does not implicitly {@link temporal.api.cluster.v1.HostInfo.verify|verify} messages.
37522
- * @param message HostInfo message or plain object to encode
37523
- * @param [writer] Writer to encode to
37524
- * @returns Writer
37525
- */
37526
- public static encodeDelimited(message: temporal.api.cluster.v1.IHostInfo, writer?: $protobuf.Writer): $protobuf.Writer;
37527
-
37528
- /**
37529
- * Decodes a HostInfo message from the specified reader or buffer.
37530
- * @param reader Reader or buffer to decode from
37531
- * @param [length] Message length if known beforehand
37532
- * @returns HostInfo
37533
- * @throws {Error} If the payload is not a reader or valid buffer
37534
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37535
- */
37536
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cluster.v1.HostInfo;
37537
-
37538
- /**
37539
- * Decodes a HostInfo message from the specified reader or buffer, length delimited.
37540
- * @param reader Reader or buffer to decode from
37541
- * @returns HostInfo
37542
- * @throws {Error} If the payload is not a reader or valid buffer
37543
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37544
- */
37545
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cluster.v1.HostInfo;
37546
-
37547
- /**
37548
- * Creates a HostInfo message from a plain object. Also converts values to their respective internal types.
37549
- * @param object Plain object
37550
- * @returns HostInfo
37551
- */
37552
- public static fromObject(object: { [k: string]: any }): temporal.api.cluster.v1.HostInfo;
37553
-
37554
- /**
37555
- * Creates a plain object from a HostInfo message. Also converts values to other types if specified.
37556
- * @param message HostInfo
37557
- * @param [options] Conversion options
37558
- * @returns Plain object
37559
- */
37560
- public static toObject(message: temporal.api.cluster.v1.HostInfo, options?: $protobuf.IConversionOptions): { [k: string]: any };
37561
-
37562
- /**
37563
- * Converts this HostInfo to JSON.
37564
- * @returns JSON object
37565
- */
37566
- public toJSON(): { [k: string]: any };
37567
-
37568
- /**
37569
- * Gets the default type url for HostInfo
37570
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37571
- * @returns The default type url
37572
- */
37573
- public static getTypeUrl(typeUrlPrefix?: string): string;
37574
- }
37575
-
37576
- /** Properties of a RingInfo. */
37577
- interface IRingInfo {
37578
-
37579
- /** RingInfo role */
37580
- role?: (string|null);
37581
-
37582
- /** RingInfo memberCount */
37583
- memberCount?: (number|null);
37584
-
37585
- /** RingInfo members */
37586
- members?: (temporal.api.cluster.v1.IHostInfo[]|null);
37587
- }
37588
-
37589
- /** Represents a RingInfo. */
37590
- class RingInfo implements IRingInfo {
37591
-
37592
- /**
37593
- * Constructs a new RingInfo.
37594
- * @param [properties] Properties to set
37595
- */
37596
- constructor(properties?: temporal.api.cluster.v1.IRingInfo);
37597
-
37598
- /** RingInfo role. */
37599
- public role: string;
37600
-
37601
- /** RingInfo memberCount. */
37602
- public memberCount: number;
37603
-
37604
- /** RingInfo members. */
37605
- public members: temporal.api.cluster.v1.IHostInfo[];
37606
-
37607
- /**
37608
- * Creates a new RingInfo instance using the specified properties.
37609
- * @param [properties] Properties to set
37610
- * @returns RingInfo instance
37611
- */
37612
- public static create(properties?: temporal.api.cluster.v1.IRingInfo): temporal.api.cluster.v1.RingInfo;
37613
-
37614
- /**
37615
- * Encodes the specified RingInfo message. Does not implicitly {@link temporal.api.cluster.v1.RingInfo.verify|verify} messages.
37616
- * @param message RingInfo message or plain object to encode
37617
- * @param [writer] Writer to encode to
37618
- * @returns Writer
37619
- */
37620
- public static encode(message: temporal.api.cluster.v1.IRingInfo, writer?: $protobuf.Writer): $protobuf.Writer;
37621
-
37622
- /**
37623
- * Encodes the specified RingInfo message, length delimited. Does not implicitly {@link temporal.api.cluster.v1.RingInfo.verify|verify} messages.
37624
- * @param message RingInfo message or plain object to encode
37625
- * @param [writer] Writer to encode to
37626
- * @returns Writer
37627
- */
37628
- public static encodeDelimited(message: temporal.api.cluster.v1.IRingInfo, writer?: $protobuf.Writer): $protobuf.Writer;
37629
-
37630
- /**
37631
- * Decodes a RingInfo message from the specified reader or buffer.
37632
- * @param reader Reader or buffer to decode from
37633
- * @param [length] Message length if known beforehand
37634
- * @returns RingInfo
37635
- * @throws {Error} If the payload is not a reader or valid buffer
37636
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37637
- */
37638
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cluster.v1.RingInfo;
37639
-
37640
- /**
37641
- * Decodes a RingInfo message from the specified reader or buffer, length delimited.
37642
- * @param reader Reader or buffer to decode from
37643
- * @returns RingInfo
37644
- * @throws {Error} If the payload is not a reader or valid buffer
37645
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37646
- */
37647
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cluster.v1.RingInfo;
37648
-
37649
- /**
37650
- * Creates a RingInfo message from a plain object. Also converts values to their respective internal types.
37651
- * @param object Plain object
37652
- * @returns RingInfo
37653
- */
37654
- public static fromObject(object: { [k: string]: any }): temporal.api.cluster.v1.RingInfo;
37655
-
37656
- /**
37657
- * Creates a plain object from a RingInfo message. Also converts values to other types if specified.
37658
- * @param message RingInfo
37659
- * @param [options] Conversion options
37660
- * @returns Plain object
37661
- */
37662
- public static toObject(message: temporal.api.cluster.v1.RingInfo, options?: $protobuf.IConversionOptions): { [k: string]: any };
37663
-
37664
- /**
37665
- * Converts this RingInfo to JSON.
37666
- * @returns JSON object
37667
- */
37668
- public toJSON(): { [k: string]: any };
37669
-
37670
- /**
37671
- * Gets the default type url for RingInfo
37672
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37673
- * @returns The default type url
37674
- */
37675
- public static getTypeUrl(typeUrlPrefix?: string): string;
37676
- }
37677
-
37678
- /** Properties of a MembershipInfo. */
37679
- interface IMembershipInfo {
37680
-
37681
- /** MembershipInfo currentHost */
37682
- currentHost?: (temporal.api.cluster.v1.IHostInfo|null);
37683
-
37684
- /** MembershipInfo reachableMembers */
37685
- reachableMembers?: (string[]|null);
37686
-
37687
- /** MembershipInfo rings */
37688
- rings?: (temporal.api.cluster.v1.IRingInfo[]|null);
37689
- }
37690
-
37691
- /** Represents a MembershipInfo. */
37692
- class MembershipInfo implements IMembershipInfo {
37693
-
37694
- /**
37695
- * Constructs a new MembershipInfo.
37696
- * @param [properties] Properties to set
37697
- */
37698
- constructor(properties?: temporal.api.cluster.v1.IMembershipInfo);
37699
-
37700
- /** MembershipInfo currentHost. */
37701
- public currentHost?: (temporal.api.cluster.v1.IHostInfo|null);
37702
-
37703
- /** MembershipInfo reachableMembers. */
37704
- public reachableMembers: string[];
37705
-
37706
- /** MembershipInfo rings. */
37707
- public rings: temporal.api.cluster.v1.IRingInfo[];
37708
-
37709
- /**
37710
- * Creates a new MembershipInfo instance using the specified properties.
37711
- * @param [properties] Properties to set
37712
- * @returns MembershipInfo instance
37713
- */
37714
- public static create(properties?: temporal.api.cluster.v1.IMembershipInfo): temporal.api.cluster.v1.MembershipInfo;
37715
-
37716
- /**
37717
- * Encodes the specified MembershipInfo message. Does not implicitly {@link temporal.api.cluster.v1.MembershipInfo.verify|verify} messages.
37718
- * @param message MembershipInfo message or plain object to encode
37719
- * @param [writer] Writer to encode to
37720
- * @returns Writer
37721
- */
37722
- public static encode(message: temporal.api.cluster.v1.IMembershipInfo, writer?: $protobuf.Writer): $protobuf.Writer;
37723
-
37724
- /**
37725
- * Encodes the specified MembershipInfo message, length delimited. Does not implicitly {@link temporal.api.cluster.v1.MembershipInfo.verify|verify} messages.
37726
- * @param message MembershipInfo message or plain object to encode
37727
- * @param [writer] Writer to encode to
37728
- * @returns Writer
37729
- */
37730
- public static encodeDelimited(message: temporal.api.cluster.v1.IMembershipInfo, writer?: $protobuf.Writer): $protobuf.Writer;
37731
-
37732
- /**
37733
- * Decodes a MembershipInfo message from the specified reader or buffer.
37734
- * @param reader Reader or buffer to decode from
37735
- * @param [length] Message length if known beforehand
37736
- * @returns MembershipInfo
37737
- * @throws {Error} If the payload is not a reader or valid buffer
37738
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37739
- */
37740
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cluster.v1.MembershipInfo;
37741
-
37742
- /**
37743
- * Decodes a MembershipInfo message from the specified reader or buffer, length delimited.
37744
- * @param reader Reader or buffer to decode from
37745
- * @returns MembershipInfo
37746
- * @throws {Error} If the payload is not a reader or valid buffer
37747
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37748
- */
37749
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cluster.v1.MembershipInfo;
37750
-
37751
- /**
37752
- * Creates a MembershipInfo message from a plain object. Also converts values to their respective internal types.
37753
- * @param object Plain object
37754
- * @returns MembershipInfo
37755
- */
37756
- public static fromObject(object: { [k: string]: any }): temporal.api.cluster.v1.MembershipInfo;
37757
-
37758
- /**
37759
- * Creates a plain object from a MembershipInfo message. Also converts values to other types if specified.
37760
- * @param message MembershipInfo
37761
- * @param [options] Conversion options
37762
- * @returns Plain object
37763
- */
37764
- public static toObject(message: temporal.api.cluster.v1.MembershipInfo, options?: $protobuf.IConversionOptions): { [k: string]: any };
37765
-
37766
- /**
37767
- * Converts this MembershipInfo to JSON.
37768
- * @returns JSON object
37769
- */
37770
- public toJSON(): { [k: string]: any };
37771
-
37772
- /**
37773
- * Gets the default type url for MembershipInfo
37774
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37775
- * @returns The default type url
37776
- */
37777
- public static getTypeUrl(typeUrlPrefix?: string): string;
37778
- }
37779
-
37780
- /** Properties of a ClusterMember. */
37781
- interface IClusterMember {
37782
-
37783
- /** ClusterMember role */
37784
- role?: (temporal.api.enums.v1.ClusterMemberRole|null);
37785
-
37786
- /** ClusterMember hostId */
37787
- hostId?: (string|null);
37788
-
37789
- /** ClusterMember rpcAddress */
37790
- rpcAddress?: (string|null);
37791
-
37792
- /** ClusterMember rpcPort */
37793
- rpcPort?: (number|null);
37794
-
37795
- /** ClusterMember sessionStartTime */
37796
- sessionStartTime?: (google.protobuf.ITimestamp|null);
37797
-
37798
- /** ClusterMember lastHeartbitTime */
37799
- lastHeartbitTime?: (google.protobuf.ITimestamp|null);
37800
-
37801
- /** ClusterMember recordExpiryTime */
37802
- recordExpiryTime?: (google.protobuf.ITimestamp|null);
37803
- }
37804
-
37805
- /** Represents a ClusterMember. */
37806
- class ClusterMember implements IClusterMember {
37807
-
37808
- /**
37809
- * Constructs a new ClusterMember.
37810
- * @param [properties] Properties to set
37811
- */
37812
- constructor(properties?: temporal.api.cluster.v1.IClusterMember);
37813
-
37814
- /** ClusterMember role. */
37815
- public role: temporal.api.enums.v1.ClusterMemberRole;
37816
-
37817
- /** ClusterMember hostId. */
37818
- public hostId: string;
37819
-
37820
- /** ClusterMember rpcAddress. */
37821
- public rpcAddress: string;
37822
-
37823
- /** ClusterMember rpcPort. */
37824
- public rpcPort: number;
37825
-
37826
- /** ClusterMember sessionStartTime. */
37827
- public sessionStartTime?: (google.protobuf.ITimestamp|null);
37828
-
37829
- /** ClusterMember lastHeartbitTime. */
37830
- public lastHeartbitTime?: (google.protobuf.ITimestamp|null);
37831
-
37832
- /** ClusterMember recordExpiryTime. */
37833
- public recordExpiryTime?: (google.protobuf.ITimestamp|null);
37834
-
37835
- /**
37836
- * Creates a new ClusterMember instance using the specified properties.
37837
- * @param [properties] Properties to set
37838
- * @returns ClusterMember instance
37839
- */
37840
- public static create(properties?: temporal.api.cluster.v1.IClusterMember): temporal.api.cluster.v1.ClusterMember;
37841
-
37842
- /**
37843
- * Encodes the specified ClusterMember message. Does not implicitly {@link temporal.api.cluster.v1.ClusterMember.verify|verify} messages.
37844
- * @param message ClusterMember message or plain object to encode
37845
- * @param [writer] Writer to encode to
37846
- * @returns Writer
37847
- */
37848
- public static encode(message: temporal.api.cluster.v1.IClusterMember, writer?: $protobuf.Writer): $protobuf.Writer;
37849
-
37850
- /**
37851
- * Encodes the specified ClusterMember message, length delimited. Does not implicitly {@link temporal.api.cluster.v1.ClusterMember.verify|verify} messages.
37852
- * @param message ClusterMember message or plain object to encode
37853
- * @param [writer] Writer to encode to
37854
- * @returns Writer
37855
- */
37856
- public static encodeDelimited(message: temporal.api.cluster.v1.IClusterMember, writer?: $protobuf.Writer): $protobuf.Writer;
37857
-
37858
- /**
37859
- * Decodes a ClusterMember message from the specified reader or buffer.
37860
- * @param reader Reader or buffer to decode from
37861
- * @param [length] Message length if known beforehand
37862
- * @returns ClusterMember
37863
- * @throws {Error} If the payload is not a reader or valid buffer
37864
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37865
- */
37866
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cluster.v1.ClusterMember;
37867
-
37868
- /**
37869
- * Decodes a ClusterMember message from the specified reader or buffer, length delimited.
37870
- * @param reader Reader or buffer to decode from
37871
- * @returns ClusterMember
37872
- * @throws {Error} If the payload is not a reader or valid buffer
37873
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
37874
- */
37875
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cluster.v1.ClusterMember;
37876
-
37877
- /**
37878
- * Creates a ClusterMember message from a plain object. Also converts values to their respective internal types.
37879
- * @param object Plain object
37880
- * @returns ClusterMember
37881
- */
37882
- public static fromObject(object: { [k: string]: any }): temporal.api.cluster.v1.ClusterMember;
37883
-
37884
- /**
37885
- * Creates a plain object from a ClusterMember message. Also converts values to other types if specified.
37886
- * @param message ClusterMember
37887
- * @param [options] Conversion options
37888
- * @returns Plain object
37889
- */
37890
- public static toObject(message: temporal.api.cluster.v1.ClusterMember, options?: $protobuf.IConversionOptions): { [k: string]: any };
37891
-
37892
- /**
37893
- * Converts this ClusterMember to JSON.
37894
- * @returns JSON object
37895
- */
37896
- public toJSON(): { [k: string]: any };
37897
-
37898
- /**
37899
- * Gets the default type url for ClusterMember
37900
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37901
- * @returns The default type url
37902
- */
37903
- public static getTypeUrl(typeUrlPrefix?: string): string;
37904
- }
37905
37448
  }
37906
37449
  }
37907
37450