@temporalio/proto 1.12.1 → 1.12.3

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.
Files changed (3) hide show
  1. package/package.json +2 -2
  2. package/protos/json-module.js +1450 -121
  3. package/protos/root.d.ts +27445 -21902
@@ -910,7 +910,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
910
910
  oneof: [
911
911
  "operationToken",
912
912
  "startedSync",
913
- "cancelledBeforeStart"
913
+ "failed"
914
914
  ]
915
915
  }
916
916
  },
@@ -927,7 +927,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
927
927
  type: "bool",
928
928
  id: 3
929
929
  },
930
- cancelledBeforeStart: {
930
+ failed: {
931
931
  type: "temporal.api.failure.v1.Failure",
932
932
  id: 4
933
933
  }
@@ -2083,7 +2083,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2083
2083
  },
2084
2084
  resetReapplyType: {
2085
2085
  type: "temporal.api.enums.v1.ResetReapplyType",
2086
- id: 10
2086
+ id: 10,
2087
+ options: {
2088
+ deprecated: true
2089
+ }
2087
2090
  },
2088
2091
  currentRunOnly: {
2089
2092
  type: "bool",
@@ -2243,6 +2246,29 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2243
2246
  priorityKey: {
2244
2247
  type: "int32",
2245
2248
  id: 1
2249
+ },
2250
+ fairnessKey: {
2251
+ type: "string",
2252
+ id: 2
2253
+ },
2254
+ fairnessWeight: {
2255
+ type: "float",
2256
+ id: 3
2257
+ }
2258
+ }
2259
+ },
2260
+ WorkerSelector: {
2261
+ oneofs: {
2262
+ selector: {
2263
+ oneof: [
2264
+ "workerInstanceKey"
2265
+ ]
2266
+ }
2267
+ },
2268
+ fields: {
2269
+ workerInstanceKey: {
2270
+ type: "string",
2271
+ id: 1
2246
2272
  }
2247
2273
  }
2248
2274
  }
@@ -2333,6 +2359,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2333
2359
  APPLICATION_ERROR_CATEGORY_BENIGN: 1
2334
2360
  }
2335
2361
  },
2362
+ WorkerStatus: {
2363
+ values: {
2364
+ WORKER_STATUS_UNSPECIFIED: 0,
2365
+ WORKER_STATUS_RUNNING: 1,
2366
+ WORKER_STATUS_SHUTTING_DOWN: 2,
2367
+ WORKER_STATUS_SHUTDOWN: 3
2368
+ }
2369
+ },
2336
2370
  EventType: {
2337
2371
  values: {
2338
2372
  EVENT_TYPE_UNSPECIFIED: 0,
@@ -2550,7 +2584,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2550
2584
  BATCH_OPERATION_TYPE_SIGNAL: 3,
2551
2585
  BATCH_OPERATION_TYPE_DELETE: 4,
2552
2586
  BATCH_OPERATION_TYPE_RESET: 5,
2553
- BATCH_OPERATION_TYPE_UPDATE_EXECUTION_OPTIONS: 6
2587
+ BATCH_OPERATION_TYPE_UPDATE_EXECUTION_OPTIONS: 6,
2588
+ BATCH_OPERATION_TYPE_UNPAUSE_ACTIVITY: 7,
2589
+ BATCH_OPERATION_TYPE_UPDATE_ACTIVITY_OPTIONS: 8,
2590
+ BATCH_OPERATION_TYPE_RESET_ACTIVITY: 9
2554
2591
  }
2555
2592
  },
2556
2593
  BatchOperationState: {
@@ -2620,7 +2657,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2620
2657
  WORKFLOW_TASK_FAILED_CAUSE_BAD_SCHEDULE_NEXUS_OPERATION_ATTRIBUTES: 32,
2621
2658
  WORKFLOW_TASK_FAILED_CAUSE_PENDING_NEXUS_OPERATIONS_LIMIT_EXCEEDED: 33,
2622
2659
  WORKFLOW_TASK_FAILED_CAUSE_BAD_REQUEST_CANCEL_NEXUS_OPERATION_ATTRIBUTES: 34,
2623
- WORKFLOW_TASK_FAILED_CAUSE_FEATURE_DISABLED: 35
2660
+ WORKFLOW_TASK_FAILED_CAUSE_FEATURE_DISABLED: 35,
2661
+ WORKFLOW_TASK_FAILED_CAUSE_GRPC_MESSAGE_TOO_LARGE: 36
2624
2662
  }
2625
2663
  },
2626
2664
  StartChildWorkflowExecutionFailedCause: {
@@ -2719,6 +2757,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2719
2757
  DESCRIBE_TASK_QUEUE_MODE_ENHANCED: 1
2720
2758
  }
2721
2759
  },
2760
+ RateLimitSource: {
2761
+ values: {
2762
+ RATE_LIMIT_SOURCE_UNSPECIFIED: 0,
2763
+ RATE_LIMIT_SOURCE_API: 1,
2764
+ RATE_LIMIT_SOURCE_WORKER: 2,
2765
+ RATE_LIMIT_SOURCE_SYSTEM: 3
2766
+ }
2767
+ },
2722
2768
  DeploymentReachability: {
2723
2769
  values: {
2724
2770
  DEPLOYMENT_REACHABILITY_UNSPECIFIED: 0,
@@ -2741,6 +2787,16 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2741
2787
  WORKER_VERSIONING_MODE_VERSIONED: 2
2742
2788
  }
2743
2789
  },
2790
+ WorkerDeploymentVersionStatus: {
2791
+ values: {
2792
+ WORKER_DEPLOYMENT_VERSION_STATUS_UNSPECIFIED: 0,
2793
+ WORKER_DEPLOYMENT_VERSION_STATUS_INACTIVE: 1,
2794
+ WORKER_DEPLOYMENT_VERSION_STATUS_CURRENT: 2,
2795
+ WORKER_DEPLOYMENT_VERSION_STATUS_RAMPING: 3,
2796
+ WORKER_DEPLOYMENT_VERSION_STATUS_DRAINING: 4,
2797
+ WORKER_DEPLOYMENT_VERSION_STATUS_DRAINED: 5
2798
+ }
2799
+ },
2744
2800
  CommandType: {
2745
2801
  values: {
2746
2802
  COMMAND_TYPE_UNSPECIFIED: 0,
@@ -2929,7 +2985,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2929
2985
  },
2930
2986
  operationId: {
2931
2987
  type: "string",
2932
- id: 5
2988
+ id: 5,
2989
+ options: {
2990
+ deprecated: true
2991
+ }
2933
2992
  },
2934
2993
  operationToken: {
2935
2994
  type: "string",
@@ -3295,7 +3354,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3295
3354
  },
3296
3355
  operationId: {
3297
3356
  type: "string",
3298
- id: 3
3357
+ id: 3,
3358
+ options: {
3359
+ deprecated: true
3360
+ }
3299
3361
  },
3300
3362
  operationToken: {
3301
3363
  type: "string",
@@ -3374,7 +3436,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3374
3436
  fields: {
3375
3437
  operationId: {
3376
3438
  type: "string",
3377
- id: 1
3439
+ id: 1,
3440
+ options: {
3441
+ deprecated: true
3442
+ }
3378
3443
  },
3379
3444
  links: {
3380
3445
  rule: "repeated",
@@ -3970,6 +4035,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3970
4035
  deploymentOptions: {
3971
4036
  type: "temporal.api.deployment.v1.WorkerDeploymentOptions",
3972
4037
  id: 6
4038
+ },
4039
+ workerHeartbeat: {
4040
+ type: "temporal.api.worker.v1.WorkerHeartbeat",
4041
+ id: 7
3973
4042
  }
3974
4043
  }
3975
4044
  },
@@ -4239,6 +4308,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4239
4308
  deploymentOptions: {
4240
4309
  type: "temporal.api.deployment.v1.WorkerDeploymentOptions",
4241
4310
  id: 6
4311
+ },
4312
+ workerHeartbeat: {
4313
+ type: "temporal.api.worker.v1.WorkerHeartbeat",
4314
+ id: 7
4242
4315
  }
4243
4316
  }
4244
4317
  },
@@ -4706,7 +4779,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4706
4779
  },
4707
4780
  control: {
4708
4781
  type: "string",
4709
- id: 7
4782
+ id: 7,
4783
+ options: {
4784
+ deprecated: true
4785
+ }
4710
4786
  },
4711
4787
  header: {
4712
4788
  type: "temporal.api.common.v1.Header",
@@ -4788,7 +4864,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4788
4864
  },
4789
4865
  control: {
4790
4866
  type: "string",
4791
- id: 14
4867
+ id: 14,
4868
+ options: {
4869
+ deprecated: true
4870
+ }
4792
4871
  },
4793
4872
  retryPolicy: {
4794
4873
  type: "temporal.api.common.v1.RetryPolicy",
@@ -4875,7 +4954,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4875
4954
  },
4876
4955
  resetReapplyType: {
4877
4956
  type: "temporal.api.enums.v1.ResetReapplyType",
4878
- id: 6
4957
+ id: 6,
4958
+ options: {
4959
+ deprecated: true
4960
+ }
4879
4961
  },
4880
4962
  resetReapplyExcludeTypes: {
4881
4963
  rule: "repeated",
@@ -4886,6 +4968,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4886
4968
  rule: "repeated",
4887
4969
  type: "temporal.api.workflow.v1.PostResetOperation",
4888
4970
  id: 8
4971
+ },
4972
+ identity: {
4973
+ type: "string",
4974
+ id: 9
4889
4975
  }
4890
4976
  }
4891
4977
  },
@@ -5227,6 +5313,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5227
5313
  failure: {
5228
5314
  type: "temporal.api.failure.v1.Failure",
5229
5315
  id: 7
5316
+ },
5317
+ cause: {
5318
+ type: "temporal.api.enums.v1.WorkflowTaskFailedCause",
5319
+ id: 8
5230
5320
  }
5231
5321
  },
5232
5322
  reserved: [
@@ -5271,6 +5361,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5271
5361
  reason: {
5272
5362
  type: "string",
5273
5363
  id: 4
5364
+ },
5365
+ workerHeartbeat: {
5366
+ type: "temporal.api.worker.v1.WorkerHeartbeat",
5367
+ id: 5
5274
5368
  }
5275
5369
  }
5276
5370
  },
@@ -5375,34 +5469,56 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5375
5469
  type: "temporal.api.enums.v1.TaskQueueType",
5376
5470
  id: 3
5377
5471
  },
5472
+ reportStats: {
5473
+ type: "bool",
5474
+ id: 8
5475
+ },
5476
+ reportConfig: {
5477
+ type: "bool",
5478
+ id: 11
5479
+ },
5378
5480
  includeTaskQueueStatus: {
5379
5481
  type: "bool",
5380
- id: 4
5482
+ id: 4,
5483
+ options: {
5484
+ deprecated: true
5485
+ }
5381
5486
  },
5382
5487
  apiMode: {
5383
5488
  type: "temporal.api.enums.v1.DescribeTaskQueueMode",
5384
- id: 5
5489
+ id: 5,
5490
+ options: {
5491
+ deprecated: true
5492
+ }
5385
5493
  },
5386
5494
  versions: {
5387
5495
  type: "temporal.api.taskqueue.v1.TaskQueueVersionSelection",
5388
- id: 6
5496
+ id: 6,
5497
+ options: {
5498
+ deprecated: true
5499
+ }
5389
5500
  },
5390
5501
  taskQueueTypes: {
5391
5502
  rule: "repeated",
5392
5503
  type: "temporal.api.enums.v1.TaskQueueType",
5393
- id: 7
5394
- },
5395
- reportStats: {
5396
- type: "bool",
5397
- id: 8
5504
+ id: 7,
5505
+ options: {
5506
+ deprecated: true
5507
+ }
5398
5508
  },
5399
5509
  reportPollers: {
5400
5510
  type: "bool",
5401
- id: 9
5511
+ id: 9,
5512
+ options: {
5513
+ deprecated: true
5514
+ }
5402
5515
  },
5403
5516
  reportTaskReachability: {
5404
5517
  type: "bool",
5405
- id: 10
5518
+ id: 10,
5519
+ options: {
5520
+ deprecated: true
5521
+ }
5406
5522
  }
5407
5523
  }
5408
5524
  },
@@ -5413,18 +5529,55 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5413
5529
  type: "temporal.api.taskqueue.v1.PollerInfo",
5414
5530
  id: 1
5415
5531
  },
5532
+ stats: {
5533
+ type: "temporal.api.taskqueue.v1.TaskQueueStats",
5534
+ id: 5
5535
+ },
5536
+ statsByPriorityKey: {
5537
+ keyType: "int32",
5538
+ type: "temporal.api.taskqueue.v1.TaskQueueStats",
5539
+ id: 8
5540
+ },
5541
+ versioningInfo: {
5542
+ type: "temporal.api.taskqueue.v1.TaskQueueVersioningInfo",
5543
+ id: 4
5544
+ },
5545
+ config: {
5546
+ type: "temporal.api.taskqueue.v1.TaskQueueConfig",
5547
+ id: 6
5548
+ },
5549
+ effectiveRateLimit: {
5550
+ type: "EffectiveRateLimit",
5551
+ id: 7
5552
+ },
5416
5553
  taskQueueStatus: {
5417
5554
  type: "temporal.api.taskqueue.v1.TaskQueueStatus",
5418
- id: 2
5555
+ id: 2,
5556
+ options: {
5557
+ deprecated: true
5558
+ }
5419
5559
  },
5420
5560
  versionsInfo: {
5421
5561
  keyType: "string",
5422
5562
  type: "temporal.api.taskqueue.v1.TaskQueueVersionInfo",
5423
- id: 3
5424
- },
5425
- versioningInfo: {
5426
- type: "temporal.api.taskqueue.v1.TaskQueueVersioningInfo",
5427
- id: 4
5563
+ id: 3,
5564
+ options: {
5565
+ deprecated: true
5566
+ }
5567
+ }
5568
+ },
5569
+ nested: {
5570
+ EffectiveRateLimit: {
5571
+ fields: {
5572
+ requestsPerSecond: {
5573
+ type: "float",
5574
+ id: 1
5575
+ },
5576
+ rateLimitSource: {
5577
+ type: "temporal.api.enums.v1.RateLimitSource",
5578
+ id: 2
5579
+ }
5580
+ }
5428
5581
  }
5429
5582
  }
5430
5583
  },
@@ -6154,7 +6307,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6154
6307
  "deletionOperation",
6155
6308
  "resetOperation",
6156
6309
  "updateWorkflowOptionsOperation",
6157
- "unpauseActivitiesOperation"
6310
+ "unpauseActivitiesOperation",
6311
+ "resetActivitiesOperation",
6312
+ "updateActivityOptionsOperation"
6158
6313
  ]
6159
6314
  }
6160
6315
  },
@@ -6211,6 +6366,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6211
6366
  unpauseActivitiesOperation: {
6212
6367
  type: "temporal.api.batch.v1.BatchOperationUnpauseActivities",
6213
6368
  id: 16
6369
+ },
6370
+ resetActivitiesOperation: {
6371
+ type: "temporal.api.batch.v1.BatchOperationResetActivities",
6372
+ id: 17
6373
+ },
6374
+ updateActivityOptionsOperation: {
6375
+ type: "temporal.api.batch.v1.BatchOperationUpdateActivityOptions",
6376
+ id: 18
6214
6377
  }
6215
6378
  }
6216
6379
  },
@@ -6385,6 +6548,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6385
6548
  deploymentOptions: {
6386
6549
  type: "temporal.api.deployment.v1.WorkerDeploymentOptions",
6387
6550
  id: 6
6551
+ },
6552
+ workerHeartbeat: {
6553
+ rule: "repeated",
6554
+ type: "temporal.api.worker.v1.WorkerHeartbeat",
6555
+ id: 7
6388
6556
  }
6389
6557
  }
6390
6558
  },
@@ -6521,7 +6689,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6521
6689
  activity: {
6522
6690
  oneof: [
6523
6691
  "id",
6524
- "type"
6692
+ "type",
6693
+ "matchAll"
6525
6694
  ]
6526
6695
  }
6527
6696
  },
@@ -6553,6 +6722,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6553
6722
  type: {
6554
6723
  type: "string",
6555
6724
  id: 7
6725
+ },
6726
+ matchAll: {
6727
+ type: "bool",
6728
+ id: 9
6729
+ },
6730
+ restoreOriginal: {
6731
+ type: "bool",
6732
+ id: 8
6556
6733
  }
6557
6734
  }
6558
6735
  },
@@ -6660,7 +6837,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6660
6837
  activity: {
6661
6838
  oneof: [
6662
6839
  "id",
6663
- "type"
6840
+ "type",
6841
+ "matchAll"
6664
6842
  ]
6665
6843
  }
6666
6844
  },
@@ -6685,6 +6863,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6685
6863
  type: "string",
6686
6864
  id: 5
6687
6865
  },
6866
+ matchAll: {
6867
+ type: "bool",
6868
+ id: 10
6869
+ },
6688
6870
  resetHeartbeat: {
6689
6871
  type: "bool",
6690
6872
  id: 6
@@ -6696,6 +6878,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6696
6878
  jitter: {
6697
6879
  type: "google.protobuf.Duration",
6698
6880
  id: 8
6881
+ },
6882
+ restoreOriginalOptions: {
6883
+ type: "bool",
6884
+ id: 9
6699
6885
  }
6700
6886
  }
6701
6887
  },
@@ -6766,6 +6952,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6766
6952
  deploymentVersion: {
6767
6953
  type: "temporal.api.deployment.v1.WorkerDeploymentVersion",
6768
6954
  id: 3
6955
+ },
6956
+ reportTaskQueueStats: {
6957
+ type: "bool",
6958
+ id: 4
6769
6959
  }
6770
6960
  }
6771
6961
  },
@@ -6774,6 +6964,34 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6774
6964
  workerDeploymentVersionInfo: {
6775
6965
  type: "temporal.api.deployment.v1.WorkerDeploymentVersionInfo",
6776
6966
  id: 1
6967
+ },
6968
+ versionTaskQueues: {
6969
+ rule: "repeated",
6970
+ type: "VersionTaskQueue",
6971
+ id: 2
6972
+ }
6973
+ },
6974
+ nested: {
6975
+ VersionTaskQueue: {
6976
+ fields: {
6977
+ name: {
6978
+ type: "string",
6979
+ id: 1
6980
+ },
6981
+ type: {
6982
+ type: "temporal.api.enums.v1.TaskQueueType",
6983
+ id: 2
6984
+ },
6985
+ stats: {
6986
+ type: "temporal.api.taskqueue.v1.TaskQueueStats",
6987
+ id: 3
6988
+ },
6989
+ statsByPriorityKey: {
6990
+ keyType: "int32",
6991
+ type: "temporal.api.taskqueue.v1.TaskQueueStats",
6992
+ id: 4
6993
+ }
6994
+ }
6777
6995
  }
6778
6996
  }
6779
6997
  },
@@ -7024,6 +7242,18 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7024
7242
  routingConfig: {
7025
7243
  type: "temporal.api.deployment.v1.RoutingConfig",
7026
7244
  id: 3
7245
+ },
7246
+ latestVersionSummary: {
7247
+ type: "temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary",
7248
+ id: 4
7249
+ },
7250
+ currentVersionSummary: {
7251
+ type: "temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary",
7252
+ id: 5
7253
+ },
7254
+ rampingVersionSummary: {
7255
+ type: "temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary",
7256
+ id: 6
7027
7257
  }
7028
7258
  }
7029
7259
  }
@@ -7104,6 +7334,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7104
7334
  rule: "repeated",
7105
7335
  type: "string",
7106
7336
  id: 4
7337
+ },
7338
+ identity: {
7339
+ type: "string",
7340
+ id: 6
7107
7341
  }
7108
7342
  }
7109
7343
  },
@@ -7303,43 +7537,217 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7303
7537
  }
7304
7538
  }
7305
7539
  },
7306
- WorkflowService: {
7307
- methods: {
7308
- RegisterNamespace: {
7309
- requestType: "RegisterNamespaceRequest",
7310
- responseType: "RegisterNamespaceResponse",
7311
- options: {
7312
- "(google.api.http).post": "/cluster/namespaces",
7313
- "(google.api.http).body": "*",
7314
- "(google.api.http).additional_bindings.post": "/api/v1/namespaces",
7315
- "(google.api.http).additional_bindings.body": "*"
7316
- },
7317
- parsedOptions: [
7318
- {
7319
- "(google.api.http)": {
7320
- post: "/cluster/namespaces",
7321
- body: "*",
7322
- additional_bindings: {
7323
- post: "/api/v1/namespaces",
7324
- body: "*"
7325
- }
7326
- }
7327
- }
7328
- ]
7540
+ RecordWorkerHeartbeatRequest: {
7541
+ fields: {
7542
+ namespace: {
7543
+ type: "string",
7544
+ id: 1
7329
7545
  },
7330
- DescribeNamespace: {
7331
- requestType: "DescribeNamespaceRequest",
7332
- responseType: "DescribeNamespaceResponse",
7333
- options: {
7334
- "(google.api.http).get": "/cluster/namespaces/{namespace}",
7335
- "(google.api.http).additional_bindings.get": "/api/v1/namespaces/{namespace}"
7336
- },
7337
- parsedOptions: [
7338
- {
7339
- "(google.api.http)": {
7340
- get: "/cluster/namespaces/{namespace}",
7341
- additional_bindings: {
7342
- get: "/api/v1/namespaces/{namespace}"
7546
+ identity: {
7547
+ type: "string",
7548
+ id: 2
7549
+ },
7550
+ workerHeartbeat: {
7551
+ rule: "repeated",
7552
+ type: "temporal.api.worker.v1.WorkerHeartbeat",
7553
+ id: 3
7554
+ }
7555
+ }
7556
+ },
7557
+ RecordWorkerHeartbeatResponse: {
7558
+ fields: {}
7559
+ },
7560
+ ListWorkersRequest: {
7561
+ fields: {
7562
+ namespace: {
7563
+ type: "string",
7564
+ id: 1
7565
+ },
7566
+ pageSize: {
7567
+ type: "int32",
7568
+ id: 2
7569
+ },
7570
+ nextPageToken: {
7571
+ type: "bytes",
7572
+ id: 3
7573
+ },
7574
+ query: {
7575
+ type: "string",
7576
+ id: 4
7577
+ }
7578
+ }
7579
+ },
7580
+ ListWorkersResponse: {
7581
+ fields: {
7582
+ workersInfo: {
7583
+ rule: "repeated",
7584
+ type: "temporal.api.worker.v1.WorkerInfo",
7585
+ id: 1
7586
+ },
7587
+ nextPageToken: {
7588
+ type: "bytes",
7589
+ id: 2
7590
+ }
7591
+ }
7592
+ },
7593
+ UpdateTaskQueueConfigRequest: {
7594
+ fields: {
7595
+ namespace: {
7596
+ type: "string",
7597
+ id: 1
7598
+ },
7599
+ identity: {
7600
+ type: "string",
7601
+ id: 2
7602
+ },
7603
+ taskQueue: {
7604
+ type: "string",
7605
+ id: 3
7606
+ },
7607
+ taskQueueType: {
7608
+ type: "temporal.api.enums.v1.TaskQueueType",
7609
+ id: 4
7610
+ },
7611
+ updateQueueRateLimit: {
7612
+ type: "RateLimitUpdate",
7613
+ id: 5
7614
+ },
7615
+ updateFairnessKeyRateLimitDefault: {
7616
+ type: "RateLimitUpdate",
7617
+ id: 6
7618
+ }
7619
+ },
7620
+ nested: {
7621
+ RateLimitUpdate: {
7622
+ fields: {
7623
+ rateLimit: {
7624
+ type: "temporal.api.taskqueue.v1.RateLimit",
7625
+ id: 1
7626
+ },
7627
+ reason: {
7628
+ type: "string",
7629
+ id: 2
7630
+ }
7631
+ }
7632
+ }
7633
+ }
7634
+ },
7635
+ UpdateTaskQueueConfigResponse: {
7636
+ fields: {
7637
+ config: {
7638
+ type: "temporal.api.taskqueue.v1.TaskQueueConfig",
7639
+ id: 1
7640
+ }
7641
+ }
7642
+ },
7643
+ FetchWorkerConfigRequest: {
7644
+ fields: {
7645
+ namespace: {
7646
+ type: "string",
7647
+ id: 1
7648
+ },
7649
+ identity: {
7650
+ type: "string",
7651
+ id: 2
7652
+ },
7653
+ reason: {
7654
+ type: "string",
7655
+ id: 3
7656
+ },
7657
+ selector: {
7658
+ type: "temporal.api.common.v1.WorkerSelector",
7659
+ id: 6
7660
+ }
7661
+ }
7662
+ },
7663
+ FetchWorkerConfigResponse: {
7664
+ fields: {
7665
+ workerConfig: {
7666
+ type: "temporal.api.sdk.v1.WorkerConfig",
7667
+ id: 1
7668
+ }
7669
+ }
7670
+ },
7671
+ UpdateWorkerConfigRequest: {
7672
+ fields: {
7673
+ namespace: {
7674
+ type: "string",
7675
+ id: 1
7676
+ },
7677
+ identity: {
7678
+ type: "string",
7679
+ id: 2
7680
+ },
7681
+ reason: {
7682
+ type: "string",
7683
+ id: 3
7684
+ },
7685
+ workerConfig: {
7686
+ type: "temporal.api.sdk.v1.WorkerConfig",
7687
+ id: 4
7688
+ },
7689
+ updateMask: {
7690
+ type: "google.protobuf.FieldMask",
7691
+ id: 5
7692
+ },
7693
+ selector: {
7694
+ type: "temporal.api.common.v1.WorkerSelector",
7695
+ id: 6
7696
+ }
7697
+ }
7698
+ },
7699
+ UpdateWorkerConfigResponse: {
7700
+ oneofs: {
7701
+ response: {
7702
+ oneof: [
7703
+ "workerConfig"
7704
+ ]
7705
+ }
7706
+ },
7707
+ fields: {
7708
+ workerConfig: {
7709
+ type: "temporal.api.sdk.v1.WorkerConfig",
7710
+ id: 1
7711
+ }
7712
+ }
7713
+ },
7714
+ WorkflowService: {
7715
+ methods: {
7716
+ RegisterNamespace: {
7717
+ requestType: "RegisterNamespaceRequest",
7718
+ responseType: "RegisterNamespaceResponse",
7719
+ options: {
7720
+ "(google.api.http).post": "/cluster/namespaces",
7721
+ "(google.api.http).body": "*",
7722
+ "(google.api.http).additional_bindings.post": "/api/v1/namespaces",
7723
+ "(google.api.http).additional_bindings.body": "*"
7724
+ },
7725
+ parsedOptions: [
7726
+ {
7727
+ "(google.api.http)": {
7728
+ post: "/cluster/namespaces",
7729
+ body: "*",
7730
+ additional_bindings: {
7731
+ post: "/api/v1/namespaces",
7732
+ body: "*"
7733
+ }
7734
+ }
7735
+ }
7736
+ ]
7737
+ },
7738
+ DescribeNamespace: {
7739
+ requestType: "DescribeNamespaceRequest",
7740
+ responseType: "DescribeNamespaceResponse",
7741
+ options: {
7742
+ "(google.api.http).get": "/cluster/namespaces/{namespace}",
7743
+ "(google.api.http).additional_bindings.get": "/api/v1/namespaces/{namespace}"
7744
+ },
7745
+ parsedOptions: [
7746
+ {
7747
+ "(google.api.http)": {
7748
+ get: "/cluster/namespaces/{namespace}",
7749
+ additional_bindings: {
7750
+ get: "/api/v1/namespaces/{namespace}"
7343
7751
  }
7344
7752
  }
7345
7753
  }
@@ -8730,6 +9138,112 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8730
9138
  }
8731
9139
  }
8732
9140
  ]
9141
+ },
9142
+ RecordWorkerHeartbeat: {
9143
+ requestType: "RecordWorkerHeartbeatRequest",
9144
+ responseType: "RecordWorkerHeartbeatResponse",
9145
+ options: {
9146
+ "(google.api.http).post": "/namespaces/{namespace}/workers/heartbeat",
9147
+ "(google.api.http).body": "*",
9148
+ "(google.api.http).additional_bindings.post": "/api/v1/namespaces/{namespace}/workers/heartbeat",
9149
+ "(google.api.http).additional_bindings.body": "*"
9150
+ },
9151
+ parsedOptions: [
9152
+ {
9153
+ "(google.api.http)": {
9154
+ post: "/namespaces/{namespace}/workers/heartbeat",
9155
+ body: "*",
9156
+ additional_bindings: {
9157
+ post: "/api/v1/namespaces/{namespace}/workers/heartbeat",
9158
+ body: "*"
9159
+ }
9160
+ }
9161
+ }
9162
+ ]
9163
+ },
9164
+ ListWorkers: {
9165
+ requestType: "ListWorkersRequest",
9166
+ responseType: "ListWorkersResponse",
9167
+ options: {
9168
+ "(google.api.http).get": "/namespaces/{namespace}/workers",
9169
+ "(google.api.http).additional_bindings.get": "/api/v1/namespaces/{namespace}/workers"
9170
+ },
9171
+ parsedOptions: [
9172
+ {
9173
+ "(google.api.http)": {
9174
+ get: "/namespaces/{namespace}/workers",
9175
+ additional_bindings: {
9176
+ get: "/api/v1/namespaces/{namespace}/workers"
9177
+ }
9178
+ }
9179
+ }
9180
+ ]
9181
+ },
9182
+ UpdateTaskQueueConfig: {
9183
+ requestType: "UpdateTaskQueueConfigRequest",
9184
+ responseType: "UpdateTaskQueueConfigResponse",
9185
+ options: {
9186
+ "(google.api.http).post": "/namespaces/{namespace}/task-queues/{task_queue}/update-config",
9187
+ "(google.api.http).body": "*",
9188
+ "(google.api.http).additional_bindings.post": "/api/v1/namespaces/{namespace}/task-queues/{task_queue}/update-config",
9189
+ "(google.api.http).additional_bindings.body": "*"
9190
+ },
9191
+ parsedOptions: [
9192
+ {
9193
+ "(google.api.http)": {
9194
+ post: "/namespaces/{namespace}/task-queues/{task_queue}/update-config",
9195
+ body: "*",
9196
+ additional_bindings: {
9197
+ post: "/api/v1/namespaces/{namespace}/task-queues/{task_queue}/update-config",
9198
+ body: "*"
9199
+ }
9200
+ }
9201
+ }
9202
+ ]
9203
+ },
9204
+ FetchWorkerConfig: {
9205
+ requestType: "FetchWorkerConfigRequest",
9206
+ responseType: "FetchWorkerConfigResponse",
9207
+ options: {
9208
+ "(google.api.http).post": "/namespaces/{namespace}/workers/fetch-config",
9209
+ "(google.api.http).body": "*",
9210
+ "(google.api.http).additional_bindings.post": "/api/v1/namespaces/{namespace}/workers/fetch-config",
9211
+ "(google.api.http).additional_bindings.body": "*"
9212
+ },
9213
+ parsedOptions: [
9214
+ {
9215
+ "(google.api.http)": {
9216
+ post: "/namespaces/{namespace}/workers/fetch-config",
9217
+ body: "*",
9218
+ additional_bindings: {
9219
+ post: "/api/v1/namespaces/{namespace}/workers/fetch-config",
9220
+ body: "*"
9221
+ }
9222
+ }
9223
+ }
9224
+ ]
9225
+ },
9226
+ UpdateWorkerConfig: {
9227
+ requestType: "UpdateWorkerConfigRequest",
9228
+ responseType: "UpdateWorkerConfigResponse",
9229
+ options: {
9230
+ "(google.api.http).post": "/namespaces/{namespace}/workers/update-config",
9231
+ "(google.api.http).body": "*",
9232
+ "(google.api.http).additional_bindings.post": "/api/v1/namespaces/{namespace}/workers/update-config",
9233
+ "(google.api.http).additional_bindings.body": "*"
9234
+ },
9235
+ parsedOptions: [
9236
+ {
9237
+ "(google.api.http)": {
9238
+ post: "/namespaces/{namespace}/workers/update-config",
9239
+ body: "*",
9240
+ additional_bindings: {
9241
+ post: "/api/v1/namespaces/{namespace}/workers/update-config",
9242
+ body: "*"
9243
+ }
9244
+ }
9245
+ }
9246
+ ]
8733
9247
  }
8734
9248
  }
8735
9249
  }
@@ -9106,19 +9620,67 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9106
9620
  id: 1
9107
9621
  }
9108
9622
  }
9109
- }
9110
- }
9111
- }
9112
- }
9113
- },
9114
- deployment: {
9115
- nested: {
9116
- v1: {
9117
- options: {
9118
- go_package: "go.temporal.io/api/deployment/v1;deployment",
9119
- java_package: "io.temporal.api.deployment.v1",
9120
- java_multiple_files: true,
9121
- java_outer_classname: "MessageProto",
9623
+ },
9624
+ RateLimit: {
9625
+ fields: {
9626
+ requestsPerSecond: {
9627
+ type: "float",
9628
+ id: 1
9629
+ }
9630
+ }
9631
+ },
9632
+ ConfigMetadata: {
9633
+ fields: {
9634
+ reason: {
9635
+ type: "string",
9636
+ id: 1
9637
+ },
9638
+ updateIdentity: {
9639
+ type: "string",
9640
+ id: 2
9641
+ },
9642
+ updateTime: {
9643
+ type: "google.protobuf.Timestamp",
9644
+ id: 3
9645
+ }
9646
+ }
9647
+ },
9648
+ RateLimitConfig: {
9649
+ fields: {
9650
+ rateLimit: {
9651
+ type: "RateLimit",
9652
+ id: 1
9653
+ },
9654
+ metadata: {
9655
+ type: "ConfigMetadata",
9656
+ id: 2
9657
+ }
9658
+ }
9659
+ },
9660
+ TaskQueueConfig: {
9661
+ fields: {
9662
+ queueRateLimit: {
9663
+ type: "RateLimitConfig",
9664
+ id: 1
9665
+ },
9666
+ fairnessKeysRateLimitDefault: {
9667
+ type: "RateLimitConfig",
9668
+ id: 2
9669
+ }
9670
+ }
9671
+ }
9672
+ }
9673
+ }
9674
+ }
9675
+ },
9676
+ deployment: {
9677
+ nested: {
9678
+ v1: {
9679
+ options: {
9680
+ go_package: "go.temporal.io/api/deployment/v1;deployment",
9681
+ java_package: "io.temporal.api.deployment.v1",
9682
+ java_multiple_files: true,
9683
+ java_outer_classname: "MessageProto",
9122
9684
  ruby_package: "Temporalio::Api::Deployment::V1",
9123
9685
  csharp_namespace: "Temporalio.Api.Deployment.V1"
9124
9686
  },
@@ -9234,6 +9796,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9234
9796
  deprecated: true
9235
9797
  }
9236
9798
  },
9799
+ status: {
9800
+ type: "temporal.api.enums.v1.WorkerDeploymentVersionStatus",
9801
+ id: 14
9802
+ },
9237
9803
  deploymentVersion: {
9238
9804
  type: "WorkerDeploymentVersion",
9239
9805
  id: 11
@@ -9258,6 +9824,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9258
9824
  type: "google.protobuf.Timestamp",
9259
9825
  id: 6
9260
9826
  },
9827
+ firstActivationTime: {
9828
+ type: "google.protobuf.Timestamp",
9829
+ id: 12
9830
+ },
9831
+ lastDeactivationTime: {
9832
+ type: "google.protobuf.Timestamp",
9833
+ id: 13
9834
+ },
9261
9835
  rampPercentage: {
9262
9836
  type: "float",
9263
9837
  id: 7
@@ -9341,6 +9915,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9341
9915
  deprecated: true
9342
9916
  }
9343
9917
  },
9918
+ status: {
9919
+ type: "temporal.api.enums.v1.WorkerDeploymentVersionStatus",
9920
+ id: 11
9921
+ },
9344
9922
  deploymentVersion: {
9345
9923
  type: "WorkerDeploymentVersion",
9346
9924
  id: 4
@@ -9352,6 +9930,30 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9352
9930
  drainageStatus: {
9353
9931
  type: "enums.v1.VersionDrainageStatus",
9354
9932
  id: 3
9933
+ },
9934
+ drainageInfo: {
9935
+ type: "VersionDrainageInfo",
9936
+ id: 5
9937
+ },
9938
+ currentSinceTime: {
9939
+ type: "google.protobuf.Timestamp",
9940
+ id: 6
9941
+ },
9942
+ rampingSinceTime: {
9943
+ type: "google.protobuf.Timestamp",
9944
+ id: 7
9945
+ },
9946
+ routingUpdateTime: {
9947
+ type: "google.protobuf.Timestamp",
9948
+ id: 8
9949
+ },
9950
+ firstActivationTime: {
9951
+ type: "google.protobuf.Timestamp",
9952
+ id: 9
9953
+ },
9954
+ lastDeactivationTime: {
9955
+ type: "google.protobuf.Timestamp",
9956
+ id: 10
9355
9957
  }
9356
9958
  }
9357
9959
  }
@@ -9552,7 +10154,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9552
10154
  },
9553
10155
  sourceVersionStamp: {
9554
10156
  type: "temporal.api.common.v1.WorkerVersionStamp",
9555
- id: 29
10157
+ id: 29,
10158
+ options: {
10159
+ deprecated: true
10160
+ }
9556
10161
  },
9557
10162
  completionCallbacks: {
9558
10163
  rule: "repeated",
@@ -9565,7 +10170,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9565
10170
  },
9566
10171
  inheritedBuildId: {
9567
10172
  type: "string",
9568
- id: 32
10173
+ id: 32,
10174
+ options: {
10175
+ deprecated: true
10176
+ }
9569
10177
  },
9570
10178
  versioningOverride: {
9571
10179
  type: "temporal.api.workflow.v1.VersioningOverride",
@@ -9578,15 +10186,26 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9578
10186
  deprecated: true
9579
10187
  }
9580
10188
  },
9581
- parentPinnedDeploymentVersion: {
9582
- type: "temporal.api.deployment.v1.WorkerDeploymentVersion",
9583
- id: 36
9584
- },
9585
10189
  priority: {
9586
10190
  type: "temporal.api.common.v1.Priority",
9587
10191
  id: 35
10192
+ },
10193
+ inheritedPinnedVersion: {
10194
+ type: "temporal.api.deployment.v1.WorkerDeploymentVersion",
10195
+ id: 37
10196
+ },
10197
+ eagerExecutionAccepted: {
10198
+ type: "bool",
10199
+ id: 38
9588
10200
  }
9589
- }
10201
+ },
10202
+ reserved: [
10203
+ [
10204
+ 36,
10205
+ 36
10206
+ ],
10207
+ "parent_pinned_deployment_version"
10208
+ ]
9590
10209
  },
9591
10210
  WorkflowExecutionCompletedEventAttributes: {
9592
10211
  fields: {
@@ -9676,7 +10295,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9676
10295
  },
9677
10296
  failure: {
9678
10297
  type: "temporal.api.failure.v1.Failure",
9679
- id: 10
10298
+ id: 10,
10299
+ options: {
10300
+ deprecated: true
10301
+ }
9680
10302
  },
9681
10303
  lastCompletionResult: {
9682
10304
  type: "temporal.api.common.v1.Payloads",
@@ -9696,7 +10318,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9696
10318
  },
9697
10319
  inheritBuildId: {
9698
10320
  type: "bool",
9699
- id: 15
10321
+ id: 15,
10322
+ options: {
10323
+ deprecated: true
10324
+ }
9700
10325
  }
9701
10326
  }
9702
10327
  },
@@ -10280,7 +10905,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10280
10905
  },
10281
10906
  control: {
10282
10907
  type: "string",
10283
- id: 4
10908
+ id: 4,
10909
+ options: {
10910
+ deprecated: true
10911
+ }
10284
10912
  },
10285
10913
  childWorkflowOnly: {
10286
10914
  type: "bool",
@@ -10320,7 +10948,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10320
10948
  },
10321
10949
  control: {
10322
10950
  type: "string",
10323
- id: 6
10951
+ id: 6,
10952
+ options: {
10953
+ deprecated: true
10954
+ }
10324
10955
  }
10325
10956
  }
10326
10957
  },
@@ -10372,7 +11003,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10372
11003
  },
10373
11004
  control: {
10374
11005
  type: "string",
10375
- id: 6
11006
+ id: 6,
11007
+ options: {
11008
+ deprecated: true
11009
+ }
10376
11010
  },
10377
11011
  childWorkflowOnly: {
10378
11012
  type: "bool",
@@ -10412,7 +11046,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10412
11046
  },
10413
11047
  control: {
10414
11048
  type: "string",
10415
- id: 6
11049
+ id: 6,
11050
+ options: {
11051
+ deprecated: true
11052
+ }
10416
11053
  }
10417
11054
  }
10418
11055
  },
@@ -10436,7 +11073,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10436
11073
  },
10437
11074
  control: {
10438
11075
  type: "string",
10439
- id: 4
11076
+ id: 4,
11077
+ options: {
11078
+ deprecated: true
11079
+ }
10440
11080
  }
10441
11081
  }
10442
11082
  },
@@ -10508,7 +11148,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10508
11148
  },
10509
11149
  control: {
10510
11150
  type: "string",
10511
- id: 10
11151
+ id: 10,
11152
+ options: {
11153
+ deprecated: true
11154
+ }
10512
11155
  },
10513
11156
  workflowTaskCompletedEventId: {
10514
11157
  type: "int64",
@@ -10540,7 +11183,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10540
11183
  },
10541
11184
  inheritBuildId: {
10542
11185
  type: "bool",
10543
- id: 19
11186
+ id: 19,
11187
+ options: {
11188
+ deprecated: true
11189
+ }
10544
11190
  },
10545
11191
  priority: {
10546
11192
  type: "temporal.api.common.v1.Priority",
@@ -10572,7 +11218,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10572
11218
  },
10573
11219
  control: {
10574
11220
  type: "string",
10575
- id: 5
11221
+ id: 5,
11222
+ options: {
11223
+ deprecated: true
11224
+ }
10576
11225
  },
10577
11226
  initiatedEventId: {
10578
11227
  type: "int64",
@@ -10950,7 +11599,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10950
11599
  },
10951
11600
  operationId: {
10952
11601
  type: "string",
10953
- id: 3
11602
+ id: 3,
11603
+ options: {
11604
+ deprecated: true
11605
+ }
10954
11606
  },
10955
11607
  requestId: {
10956
11608
  type: "string",
@@ -11491,7 +12143,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
11491
12143
  },
11492
12144
  mostRecentWorkerVersionStamp: {
11493
12145
  type: "temporal.api.common.v1.WorkerVersionStamp",
11494
- id: 16
12146
+ id: 16,
12147
+ options: {
12148
+ deprecated: true
12149
+ }
11495
12150
  },
11496
12151
  executionDuration: {
11497
12152
  type: "google.protobuf.Duration",
@@ -12073,7 +12728,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
12073
12728
  },
12074
12729
  operationId: {
12075
12730
  type: "string",
12076
- id: 4
12731
+ id: 4,
12732
+ options: {
12733
+ deprecated: true
12734
+ }
12077
12735
  },
12078
12736
  scheduleToCloseTimeout: {
12079
12737
  type: "google.protobuf.Duration",
@@ -12359,6 +13017,56 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
12359
13017
  }
12360
13018
  }
12361
13019
  },
13020
+ WorkerConfig: {
13021
+ oneofs: {
13022
+ pollerBehavior: {
13023
+ oneof: [
13024
+ "simplePollerBehavior",
13025
+ "autoscalingPollerBehavior"
13026
+ ]
13027
+ }
13028
+ },
13029
+ fields: {
13030
+ workflowCacheSize: {
13031
+ type: "int32",
13032
+ id: 1
13033
+ },
13034
+ simplePollerBehavior: {
13035
+ type: "SimplePollerBehavior",
13036
+ id: 2
13037
+ },
13038
+ autoscalingPollerBehavior: {
13039
+ type: "AutoscalingPollerBehavior",
13040
+ id: 3
13041
+ }
13042
+ },
13043
+ nested: {
13044
+ SimplePollerBehavior: {
13045
+ fields: {
13046
+ maxPollers: {
13047
+ type: "int32",
13048
+ id: 1
13049
+ }
13050
+ }
13051
+ },
13052
+ AutoscalingPollerBehavior: {
13053
+ fields: {
13054
+ minPollers: {
13055
+ type: "int32",
13056
+ id: 1
13057
+ },
13058
+ maxPollers: {
13059
+ type: "int32",
13060
+ id: 2
13061
+ },
13062
+ initialPollers: {
13063
+ type: "int32",
13064
+ id: 3
13065
+ }
13066
+ }
13067
+ }
13068
+ }
13069
+ },
12362
13070
  WorkflowMetadata: {
12363
13071
  fields: {
12364
13072
  definition: {
@@ -12552,7 +13260,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
12552
13260
  },
12553
13261
  control: {
12554
13262
  type: "string",
12555
- id: 4
13263
+ id: 4,
13264
+ options: {
13265
+ deprecated: true
13266
+ }
12556
13267
  },
12557
13268
  childWorkflowOnly: {
12558
13269
  type: "bool",
@@ -12584,7 +13295,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
12584
13295
  },
12585
13296
  control: {
12586
13297
  type: "string",
12587
- id: 5
13298
+ id: 5,
13299
+ options: {
13300
+ deprecated: true
13301
+ }
12588
13302
  },
12589
13303
  childWorkflowOnly: {
12590
13304
  type: "bool",
@@ -12693,7 +13407,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
12693
13407
  },
12694
13408
  inheritBuildId: {
12695
13409
  type: "bool",
12696
- id: 15
13410
+ id: 15,
13411
+ options: {
13412
+ deprecated: true
13413
+ }
12697
13414
  }
12698
13415
  }
12699
13416
  },
@@ -12765,7 +13482,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
12765
13482
  },
12766
13483
  inheritBuildId: {
12767
13484
  type: "bool",
12768
- id: 17
13485
+ id: 17,
13486
+ options: {
13487
+ deprecated: true
13488
+ }
12769
13489
  },
12770
13490
  priority: {
12771
13491
  type: "temporal.api.common.v1.Priority",
@@ -13654,6 +14374,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
13654
14374
  overlapPolicy: {
13655
14375
  type: "temporal.api.enums.v1.ScheduleOverlapPolicy",
13656
14376
  id: 1
14377
+ },
14378
+ scheduledTime: {
14379
+ type: "google.protobuf.Timestamp",
14380
+ id: 2
13657
14381
  }
13658
14382
  }
13659
14383
  },
@@ -13983,11 +14707,17 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
13983
14707
  },
13984
14708
  resetType: {
13985
14709
  type: "temporal.api.enums.v1.ResetType",
13986
- id: 1
14710
+ id: 1,
14711
+ options: {
14712
+ deprecated: true
14713
+ }
13987
14714
  },
13988
14715
  resetReapplyType: {
13989
14716
  type: "temporal.api.enums.v1.ResetReapplyType",
13990
- id: 2
14717
+ id: 2,
14718
+ options: {
14719
+ deprecated: true
14720
+ }
13991
14721
  },
13992
14722
  postResetOperations: {
13993
14723
  rule: "repeated",
@@ -14048,27 +14778,312 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
14048
14778
  }
14049
14779
  }
14050
14780
  },
14051
- BatchOperationTriggerWorkflowRule: {
14052
- oneofs: {
14053
- rule: {
14054
- oneof: [
14055
- "id",
14056
- "spec"
14057
- ]
14781
+ BatchOperationTriggerWorkflowRule: {
14782
+ oneofs: {
14783
+ rule: {
14784
+ oneof: [
14785
+ "id",
14786
+ "spec"
14787
+ ]
14788
+ }
14789
+ },
14790
+ fields: {
14791
+ identity: {
14792
+ type: "string",
14793
+ id: 1
14794
+ },
14795
+ id: {
14796
+ type: "string",
14797
+ id: 2
14798
+ },
14799
+ spec: {
14800
+ type: "temporal.api.rules.v1.WorkflowRuleSpec",
14801
+ id: 3
14802
+ }
14803
+ }
14804
+ },
14805
+ BatchOperationResetActivities: {
14806
+ oneofs: {
14807
+ activity: {
14808
+ oneof: [
14809
+ "type",
14810
+ "matchAll"
14811
+ ]
14812
+ }
14813
+ },
14814
+ fields: {
14815
+ identity: {
14816
+ type: "string",
14817
+ id: 1
14818
+ },
14819
+ type: {
14820
+ type: "string",
14821
+ id: 2
14822
+ },
14823
+ matchAll: {
14824
+ type: "bool",
14825
+ id: 3
14826
+ },
14827
+ resetAttempts: {
14828
+ type: "bool",
14829
+ id: 4
14830
+ },
14831
+ resetHeartbeat: {
14832
+ type: "bool",
14833
+ id: 5
14834
+ },
14835
+ keepPaused: {
14836
+ type: "bool",
14837
+ id: 6
14838
+ },
14839
+ jitter: {
14840
+ type: "google.protobuf.Duration",
14841
+ id: 7
14842
+ },
14843
+ restoreOriginalOptions: {
14844
+ type: "bool",
14845
+ id: 8
14846
+ }
14847
+ }
14848
+ },
14849
+ BatchOperationUpdateActivityOptions: {
14850
+ oneofs: {
14851
+ activity: {
14852
+ oneof: [
14853
+ "type",
14854
+ "matchAll"
14855
+ ]
14856
+ }
14857
+ },
14858
+ fields: {
14859
+ identity: {
14860
+ type: "string",
14861
+ id: 1
14862
+ },
14863
+ type: {
14864
+ type: "string",
14865
+ id: 2
14866
+ },
14867
+ matchAll: {
14868
+ type: "bool",
14869
+ id: 3
14870
+ },
14871
+ activityOptions: {
14872
+ type: "temporal.api.activity.v1.ActivityOptions",
14873
+ id: 4
14874
+ },
14875
+ updateMask: {
14876
+ type: "google.protobuf.FieldMask",
14877
+ id: 5
14878
+ },
14879
+ restoreOriginal: {
14880
+ type: "bool",
14881
+ id: 6
14882
+ }
14883
+ }
14884
+ }
14885
+ }
14886
+ }
14887
+ }
14888
+ },
14889
+ worker: {
14890
+ nested: {
14891
+ v1: {
14892
+ options: {
14893
+ go_package: "go.temporal.io/api/worker/v1;worker",
14894
+ java_package: "io.temporal.api.worker.v1",
14895
+ java_multiple_files: true,
14896
+ java_outer_classname: "MessageProto",
14897
+ ruby_package: "Temporalio::Api::Worker::V1",
14898
+ csharp_namespace: "Temporalio.Api.Worker.V1"
14899
+ },
14900
+ nested: {
14901
+ WorkerPollerInfo: {
14902
+ fields: {
14903
+ currentPollers: {
14904
+ type: "int32",
14905
+ id: 1
14906
+ },
14907
+ lastSuccessfulPollTime: {
14908
+ type: "google.protobuf.Timestamp",
14909
+ id: 2
14910
+ },
14911
+ isAutoscaling: {
14912
+ type: "bool",
14913
+ id: 3
14914
+ }
14915
+ }
14916
+ },
14917
+ WorkerSlotsInfo: {
14918
+ fields: {
14919
+ currentAvailableSlots: {
14920
+ type: "int32",
14921
+ id: 1
14922
+ },
14923
+ currentUsedSlots: {
14924
+ type: "int32",
14925
+ id: 2
14926
+ },
14927
+ slotSupplierKind: {
14928
+ type: "string",
14929
+ id: 3
14930
+ },
14931
+ totalProcessedTasks: {
14932
+ type: "int32",
14933
+ id: 4
14934
+ },
14935
+ totalFailedTasks: {
14936
+ type: "int32",
14937
+ id: 5
14938
+ },
14939
+ lastIntervalProcessedTasks: {
14940
+ type: "int32",
14941
+ id: 6
14942
+ },
14943
+ lastIntervalFailureTasks: {
14944
+ type: "int32",
14945
+ id: 7
14946
+ }
14947
+ }
14948
+ },
14949
+ WorkerHostInfo: {
14950
+ fields: {
14951
+ hostName: {
14952
+ type: "string",
14953
+ id: 1
14954
+ },
14955
+ processKey: {
14956
+ type: "string",
14957
+ id: 5
14958
+ },
14959
+ processId: {
14960
+ type: "string",
14961
+ id: 2
14962
+ },
14963
+ currentHostCpuUsage: {
14964
+ type: "float",
14965
+ id: 3
14966
+ },
14967
+ currentHostMemUsage: {
14968
+ type: "float",
14969
+ id: 4
14970
+ }
14971
+ }
14972
+ },
14973
+ WorkerHeartbeat: {
14974
+ fields: {
14975
+ workerInstanceKey: {
14976
+ type: "string",
14977
+ id: 1
14978
+ },
14979
+ workerIdentity: {
14980
+ type: "string",
14981
+ id: 2
14982
+ },
14983
+ hostInfo: {
14984
+ type: "WorkerHostInfo",
14985
+ id: 3
14986
+ },
14987
+ taskQueue: {
14988
+ type: "string",
14989
+ id: 4
14990
+ },
14991
+ deploymentVersion: {
14992
+ type: "temporal.api.deployment.v1.WorkerDeploymentVersion",
14993
+ id: 5
14994
+ },
14995
+ sdkName: {
14996
+ type: "string",
14997
+ id: 6
14998
+ },
14999
+ sdkVersion: {
15000
+ type: "string",
15001
+ id: 7
15002
+ },
15003
+ status: {
15004
+ type: "temporal.api.enums.v1.WorkerStatus",
15005
+ id: 8
15006
+ },
15007
+ startTime: {
15008
+ type: "google.protobuf.Timestamp",
15009
+ id: 9
15010
+ },
15011
+ heartbeatTime: {
15012
+ type: "google.protobuf.Timestamp",
15013
+ id: 10
15014
+ },
15015
+ elapsedSinceLastHeartbeat: {
15016
+ type: "google.protobuf.Duration",
15017
+ id: 11
15018
+ },
15019
+ workflowTaskSlotsInfo: {
15020
+ type: "WorkerSlotsInfo",
15021
+ id: 12
15022
+ },
15023
+ activityTaskSlotsInfo: {
15024
+ type: "WorkerSlotsInfo",
15025
+ id: 13
15026
+ },
15027
+ nexusTaskSlotsInfo: {
15028
+ type: "WorkerSlotsInfo",
15029
+ id: 14
15030
+ },
15031
+ localActivitySlotsInfo: {
15032
+ type: "WorkerSlotsInfo",
15033
+ id: 15
15034
+ },
15035
+ workflowPollerInfo: {
15036
+ type: "WorkerPollerInfo",
15037
+ id: 16
15038
+ },
15039
+ workflowStickyPollerInfo: {
15040
+ type: "WorkerPollerInfo",
15041
+ id: 17
15042
+ },
15043
+ activityPollerInfo: {
15044
+ type: "WorkerPollerInfo",
15045
+ id: 18
15046
+ },
15047
+ nexusPollerInfo: {
15048
+ type: "WorkerPollerInfo",
15049
+ id: 19
15050
+ },
15051
+ totalStickyCacheHit: {
15052
+ type: "int32",
15053
+ id: 20
15054
+ },
15055
+ totalStickyCacheMiss: {
15056
+ type: "int32",
15057
+ id: 21
15058
+ },
15059
+ currentStickyCacheSize: {
15060
+ type: "int32",
15061
+ id: 22
15062
+ },
15063
+ plugins: {
15064
+ rule: "repeated",
15065
+ type: "PluginInfo",
15066
+ id: 23
15067
+ }
15068
+ }
15069
+ },
15070
+ WorkerInfo: {
15071
+ fields: {
15072
+ workerHeartbeat: {
15073
+ type: "WorkerHeartbeat",
15074
+ id: 1
14058
15075
  }
14059
- },
15076
+ }
15077
+ },
15078
+ PluginInfo: {
14060
15079
  fields: {
14061
- identity: {
15080
+ name: {
14062
15081
  type: "string",
14063
15082
  id: 1
14064
15083
  },
14065
- id: {
15084
+ version: {
14066
15085
  type: "string",
14067
15086
  id: 2
14068
- },
14069
- spec: {
14070
- type: "temporal.api.rules.v1.WorkflowRuleSpec",
14071
- id: 3
14072
15087
  }
14073
15088
  }
14074
15089
  }
@@ -15281,6 +16296,80 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
15281
16296
  }
15282
16297
  }
15283
16298
  ]
16299
+ },
16300
+ UpdateNamespaceTags: {
16301
+ requestType: "UpdateNamespaceTagsRequest",
16302
+ responseType: "UpdateNamespaceTagsResponse",
16303
+ options: {
16304
+ "(google.api.http).post": "/cloud/namespaces/{namespace}/update-tags",
16305
+ "(google.api.http).body": "*"
16306
+ },
16307
+ parsedOptions: [
16308
+ {
16309
+ "(google.api.http)": {
16310
+ post: "/cloud/namespaces/{namespace}/update-tags",
16311
+ body: "*"
16312
+ }
16313
+ }
16314
+ ]
16315
+ },
16316
+ CreateConnectivityRule: {
16317
+ requestType: "CreateConnectivityRuleRequest",
16318
+ responseType: "CreateConnectivityRuleResponse",
16319
+ options: {
16320
+ "(google.api.http).post": "/cloud/connectivity-rules",
16321
+ "(google.api.http).body": "*"
16322
+ },
16323
+ parsedOptions: [
16324
+ {
16325
+ "(google.api.http)": {
16326
+ post: "/cloud/connectivity-rules",
16327
+ body: "*"
16328
+ }
16329
+ }
16330
+ ]
16331
+ },
16332
+ GetConnectivityRule: {
16333
+ requestType: "GetConnectivityRuleRequest",
16334
+ responseType: "GetConnectivityRuleResponse",
16335
+ options: {
16336
+ "(google.api.http).get": "/cloud/connectivity-rules/{connectivity_rule_id}"
16337
+ },
16338
+ parsedOptions: [
16339
+ {
16340
+ "(google.api.http)": {
16341
+ get: "/cloud/connectivity-rules/{connectivity_rule_id}"
16342
+ }
16343
+ }
16344
+ ]
16345
+ },
16346
+ GetConnectivityRules: {
16347
+ requestType: "GetConnectivityRulesRequest",
16348
+ responseType: "GetConnectivityRulesResponse",
16349
+ options: {
16350
+ "(google.api.http).get": "/cloud/connectivity-rules"
16351
+ },
16352
+ parsedOptions: [
16353
+ {
16354
+ "(google.api.http)": {
16355
+ get: "/cloud/connectivity-rules"
16356
+ }
16357
+ }
16358
+ ]
16359
+ },
16360
+ DeleteConnectivityRule: {
16361
+ requestType: "DeleteConnectivityRuleRequest",
16362
+ responseType: "DeleteConnectivityRuleResponse",
16363
+ options: {
16364
+ "(google.api.http).delete": "/cloud/connectivity-rules/{connectivity_rule_id}"
16365
+ },
16366
+ parsedOptions: [
16367
+ {
16368
+ "(google.api.http)": {
16369
+ "delete": "/cloud/connectivity-rules/{connectivity_rule_id}"
16370
+ }
16371
+ }
16372
+ ]
15284
16373
  }
15285
16374
  }
15286
16375
  },
@@ -15466,6 +16555,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
15466
16555
  asyncOperationId: {
15467
16556
  type: "string",
15468
16557
  id: 3
16558
+ },
16559
+ tags: {
16560
+ keyType: "string",
16561
+ type: "string",
16562
+ id: 4
15469
16563
  }
15470
16564
  }
15471
16565
  },
@@ -16571,6 +17665,129 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
16571
17665
  },
16572
17666
  ValidateNamespaceExportSinkResponse: {
16573
17667
  fields: {}
17668
+ },
17669
+ UpdateNamespaceTagsRequest: {
17670
+ fields: {
17671
+ namespace: {
17672
+ type: "string",
17673
+ id: 1
17674
+ },
17675
+ tagsToUpsert: {
17676
+ keyType: "string",
17677
+ type: "string",
17678
+ id: 2
17679
+ },
17680
+ tagsToRemove: {
17681
+ rule: "repeated",
17682
+ type: "string",
17683
+ id: 3
17684
+ },
17685
+ asyncOperationId: {
17686
+ type: "string",
17687
+ id: 4
17688
+ }
17689
+ }
17690
+ },
17691
+ UpdateNamespaceTagsResponse: {
17692
+ fields: {
17693
+ asyncOperation: {
17694
+ type: "temporal.api.cloud.operation.v1.AsyncOperation",
17695
+ id: 1
17696
+ }
17697
+ }
17698
+ },
17699
+ CreateConnectivityRuleRequest: {
17700
+ fields: {
17701
+ spec: {
17702
+ type: "temporal.api.cloud.connectivityrule.v1.ConnectivityRuleSpec",
17703
+ id: 1
17704
+ },
17705
+ asyncOperationId: {
17706
+ type: "string",
17707
+ id: 2
17708
+ }
17709
+ }
17710
+ },
17711
+ CreateConnectivityRuleResponse: {
17712
+ fields: {
17713
+ connectivityRuleId: {
17714
+ type: "string",
17715
+ id: 1
17716
+ },
17717
+ asyncOperation: {
17718
+ type: "temporal.api.cloud.operation.v1.AsyncOperation",
17719
+ id: 2
17720
+ }
17721
+ }
17722
+ },
17723
+ GetConnectivityRuleRequest: {
17724
+ fields: {
17725
+ connectivityRuleId: {
17726
+ type: "string",
17727
+ id: 1
17728
+ }
17729
+ }
17730
+ },
17731
+ GetConnectivityRuleResponse: {
17732
+ fields: {
17733
+ connectivityRule: {
17734
+ type: "temporal.api.cloud.connectivityrule.v1.ConnectivityRule",
17735
+ id: 1
17736
+ }
17737
+ }
17738
+ },
17739
+ GetConnectivityRulesRequest: {
17740
+ fields: {
17741
+ pageSize: {
17742
+ type: "int32",
17743
+ id: 1
17744
+ },
17745
+ pageToken: {
17746
+ type: "string",
17747
+ id: 2
17748
+ },
17749
+ namespace: {
17750
+ type: "string",
17751
+ id: 3
17752
+ }
17753
+ }
17754
+ },
17755
+ GetConnectivityRulesResponse: {
17756
+ fields: {
17757
+ connectivityRules: {
17758
+ rule: "repeated",
17759
+ type: "temporal.api.cloud.connectivityrule.v1.ConnectivityRule",
17760
+ id: 1
17761
+ },
17762
+ nextPageToken: {
17763
+ type: "string",
17764
+ id: 2
17765
+ }
17766
+ }
17767
+ },
17768
+ DeleteConnectivityRuleRequest: {
17769
+ fields: {
17770
+ connectivityRuleId: {
17771
+ type: "string",
17772
+ id: 1
17773
+ },
17774
+ resourceVersion: {
17775
+ type: "string",
17776
+ id: 2
17777
+ },
17778
+ asyncOperationId: {
17779
+ type: "string",
17780
+ id: 3
17781
+ }
17782
+ }
17783
+ },
17784
+ DeleteConnectivityRuleResponse: {
17785
+ fields: {
17786
+ asyncOperation: {
17787
+ type: "temporal.api.cloud.operation.v1.AsyncOperation",
17788
+ id: 1
17789
+ }
17790
+ }
16574
17791
  }
16575
17792
  }
16576
17793
  }
@@ -16638,7 +17855,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
16638
17855
  STATE_IN_PROGRESS: 2,
16639
17856
  STATE_FAILED: 3,
16640
17857
  STATE_CANCELLED: 4,
16641
- STATE_FULFILLED: 5
17858
+ STATE_FULFILLED: 5,
17859
+ STATE_REJECTED: 6
16642
17860
  }
16643
17861
  }
16644
17862
  }
@@ -16681,7 +17899,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
16681
17899
  ROLE_ADMIN: 2,
16682
17900
  ROLE_DEVELOPER: 3,
16683
17901
  ROLE_FINANCE_ADMIN: 4,
16684
- ROLE_READ: 5
17902
+ ROLE_READ: 5,
17903
+ ROLE_METRICS_READ: 6
16685
17904
  }
16686
17905
  }
16687
17906
  }
@@ -17264,6 +18483,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
17264
18483
  highAvailability: {
17265
18484
  type: "HighAvailabilitySpec",
17266
18485
  id: 10
18486
+ },
18487
+ connectivityRuleIds: {
18488
+ rule: "repeated",
18489
+ type: "string",
18490
+ id: 11
17267
18491
  }
17268
18492
  },
17269
18493
  nested: {
@@ -17389,6 +18613,16 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
17389
18613
  keyType: "string",
17390
18614
  type: "NamespaceRegionStatus",
17391
18615
  id: 12
18616
+ },
18617
+ connectivityRules: {
18618
+ rule: "repeated",
18619
+ type: "temporal.api.cloud.connectivityrule.v1.ConnectivityRule",
18620
+ id: 14
18621
+ },
18622
+ tags: {
18623
+ keyType: "string",
18624
+ type: "string",
18625
+ id: 15
17392
18626
  }
17393
18627
  }
17394
18628
  },
@@ -17553,6 +18787,101 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
17553
18787
  }
17554
18788
  }
17555
18789
  },
18790
+ connectivityrule: {
18791
+ nested: {
18792
+ v1: {
18793
+ options: {
18794
+ go_package: "go.temporal.io/api/cloud/connectivityrule/v1;connectivityrule",
18795
+ java_package: "io.temporal.api.cloud.connectivityrule.v1",
18796
+ java_multiple_files: true,
18797
+ java_outer_classname: "MessageProto",
18798
+ ruby_package: "Temporalio::Api::Cloud::ConnectivityRule::V1",
18799
+ csharp_namespace: "Temporalio.Api.Cloud.ConnectivityRule.V1"
18800
+ },
18801
+ nested: {
18802
+ ConnectivityRule: {
18803
+ fields: {
18804
+ id: {
18805
+ type: "string",
18806
+ id: 1
18807
+ },
18808
+ spec: {
18809
+ type: "ConnectivityRuleSpec",
18810
+ id: 2
18811
+ },
18812
+ resourceVersion: {
18813
+ type: "string",
18814
+ id: 4
18815
+ },
18816
+ state: {
18817
+ type: "temporal.api.cloud.resource.v1.ResourceState",
18818
+ id: 5
18819
+ },
18820
+ asyncOperationId: {
18821
+ type: "string",
18822
+ id: 6
18823
+ },
18824
+ createdTime: {
18825
+ type: "google.protobuf.Timestamp",
18826
+ id: 7
18827
+ }
18828
+ },
18829
+ reserved: [
18830
+ [
18831
+ 3,
18832
+ 3
18833
+ ]
18834
+ ]
18835
+ },
18836
+ ConnectivityRuleSpec: {
18837
+ oneofs: {
18838
+ connectionType: {
18839
+ oneof: [
18840
+ "publicRule",
18841
+ "privateRule"
18842
+ ]
18843
+ }
18844
+ },
18845
+ fields: {
18846
+ publicRule: {
18847
+ type: "PublicConnectivityRule",
18848
+ id: 1
18849
+ },
18850
+ privateRule: {
18851
+ type: "PrivateConnectivityRule",
18852
+ id: 2
18853
+ }
18854
+ }
18855
+ },
18856
+ PublicConnectivityRule: {
18857
+ fields: {}
18858
+ },
18859
+ PrivateConnectivityRule: {
18860
+ fields: {
18861
+ connectionId: {
18862
+ type: "string",
18863
+ id: 1
18864
+ },
18865
+ gcpProjectId: {
18866
+ type: "string",
18867
+ id: 2
18868
+ },
18869
+ region: {
18870
+ type: "string",
18871
+ id: 3
18872
+ }
18873
+ },
18874
+ reserved: [
18875
+ [
18876
+ 4,
18877
+ 4
18878
+ ]
18879
+ ]
18880
+ }
18881
+ }
18882
+ }
18883
+ }
18884
+ },
17556
18885
  nexus: {
17557
18886
  nested: {
17558
18887
  v1: {