You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The architecture of the worker process."
10940
+
},
10941
+
"crt": {
10942
+
"$ref": "#/definitions/WindowsPlatformCrt",
10943
+
"description": "The C runtime used by the worker process, if obtainable."
10944
+
}
10945
+
}
10946
+
},
10851
10947
"EventGroupMarkerInboundEvent": {
10852
10948
"type": "object",
10853
10949
"properties": {
@@ -10867,6 +10963,23 @@
10867
10963
},
10868
10964
"description": "The identifier of an inbound Update (request.meta.update_id)\nwhose handler triggered implicit creation of this group Marker.\n\nUsed in place of `inbound_event_id` for Updates because the event ID of the\nUpdateAccepted history event is not known until the Workflow Task is\ncompleted and recorded by the server, which may be too late."
"description": "What kind of hosting environment we're running in. This list is about what can actually be\ndetected reliably and is unrelated to what SDKs can actually run in.\n\n - HOSTING_ENVIRONMENT_TYPE_UNSPECIFIED: Should never actually be set, exists to follow convention of having a default.\nSDKs should just leave `hosting_environments` empty if none can be determined.\n - HOSTING_ENVIRONMENT_TYPE_DOCKER: Should always be in the list if we're running inside a docker container\n - HOSTING_ENVIRONMENT_TYPE_K8S: Should always be in the list if we're running inside any k8s environment\n - HOSTING_ENVIRONMENT_TYPE_AWS_LAMBDA: Detect via `AWS_LAMBDA_FUNCTION_NAME`\n - HOSTING_ENVIRONMENT_TYPE_AWS_ECS: Detect via `ECS_CONTAINER_METADATA_URI_V4` or `ECS_CONTAINER_METADATA_URI`\n - HOSTING_ENVIRONMENT_TYPE_GOOGLE_CLOUD_RUN: Detect via `K_SERVICE`\n - HOSTING_ENVIRONMENT_TYPE_GOOGLE_APP_ENGINE: Detect via `GAE_SERVICE`\n - HOSTING_ENVIRONMENT_TYPE_AZURE_APP_SERVICE: Detect via `WEBSITE_SITE_NAME`\n - HOSTING_ENVIRONMENT_TYPE_AZURE_FUNCTIONS: Detect via `FUNCTIONS_EXTENSION_VERSION`\n - HOSTING_ENVIRONMENT_TYPE_AZURE_CONTAINER_APPS: Detect via `CONTAINER_APP_NAME`"
"description": "UpdateWorkflowOptions represents updating workflow execution options after a workflow reset.\nKeep the parameters in sync with temporal.api.workflowservice.v1.UpdateWorkflowExecutionOptionsRequest."
11101
11223
},
11224
+
"RuntimeRuntimeType": {
11225
+
"type": "string",
11226
+
"enum": [
11227
+
"RUNTIME_TYPE_UNSPECIFIED",
11228
+
"RUNTIME_TYPE_JVM",
11229
+
"RUNTIME_TYPE_CPYTHON",
11230
+
"RUNTIME_TYPE_NODE",
11231
+
"RUNTIME_TYPE_BUN",
11232
+
"RUNTIME_TYPE_CRUBY",
11233
+
"RUNTIME_TYPE_GO",
11234
+
"RUNTIME_TYPE_DOTNET_FRAMEWORK",
11235
+
"RUNTIME_TYPE_DOTNET_CORE",
11236
+
"RUNTIME_TYPE_NATIVE",
11237
+
"RUNTIME_TYPE_ROADRUNNER"
11238
+
],
11239
+
"default": "RUNTIME_TYPE_UNSPECIFIED",
11240
+
"description": " - RUNTIME_TYPE_UNSPECIFIED: Should never actually be set, exists to follow convention of having a default.\nSDKs should just leave `runtimes` empty if none can be determined."
0 commit comments