Skip to content

Commit 7cb4bb3

Browse files
committed
Regen files
1 parent 85117d5 commit 7cb4bb3

2 files changed

Lines changed: 313 additions & 0 deletions

File tree

openapi/openapiv2.json

Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10848,6 +10848,102 @@
1084810848
},
1084910849
"description": "Target a worker polling on a Nexus task queue in a specific namespace."
1085010850
},
10851+
"EnvironmentInfoArchitecture": {
10852+
"type": "string",
10853+
"enum": [
10854+
"ARCHITECTURE_UNSPECIFIED",
10855+
"ARCHITECTURE_AMD64",
10856+
"ARCHITECTURE_ARM64"
10857+
],
10858+
"default": "ARCHITECTURE_UNSPECIFIED"
10859+
},
10860+
"EnvironmentInfoHostingEnvironment": {
10861+
"type": "object",
10862+
"properties": {
10863+
"type": {
10864+
"$ref": "#/definitions/HostingEnvironmentHostingEnvironmentType",
10865+
"description": "The type of hosting environment."
10866+
},
10867+
"version": {
10868+
"type": "string",
10869+
"description": "The version of the hosting environment, if obtainable."
10870+
}
10871+
}
10872+
},
10873+
"EnvironmentInfoLinuxPlatform": {
10874+
"type": "object",
10875+
"properties": {
10876+
"version": {
10877+
"type": "string",
10878+
"description": "The Linux kernel or distribution version, if obtainable."
10879+
},
10880+
"architecture": {
10881+
"$ref": "#/definitions/EnvironmentInfoArchitecture",
10882+
"description": "The architecture of the worker process."
10883+
},
10884+
"libc": {
10885+
"$ref": "#/definitions/LinuxPlatformLibc",
10886+
"description": "The libc used by the worker process."
10887+
}
10888+
}
10889+
},
10890+
"EnvironmentInfoMacOSPlatform": {
10891+
"type": "object",
10892+
"properties": {
10893+
"version": {
10894+
"type": "string",
10895+
"description": "The macOS version, if obtainable."
10896+
},
10897+
"architecture": {
10898+
"$ref": "#/definitions/EnvironmentInfoArchitecture",
10899+
"description": "The architecture of the worker process."
10900+
}
10901+
}
10902+
},
10903+
"EnvironmentInfoPlatform": {
10904+
"type": "object",
10905+
"properties": {
10906+
"linux": {
10907+
"$ref": "#/definitions/EnvironmentInfoLinuxPlatform"
10908+
},
10909+
"macos": {
10910+
"$ref": "#/definitions/EnvironmentInfoMacOSPlatform"
10911+
},
10912+
"windows": {
10913+
"$ref": "#/definitions/EnvironmentInfoWindowsPlatform"
10914+
}
10915+
}
10916+
},
10917+
"EnvironmentInfoRuntime": {
10918+
"type": "object",
10919+
"properties": {
10920+
"type": {
10921+
"$ref": "#/definitions/RuntimeRuntimeType",
10922+
"description": "The type of the runtime."
10923+
},
10924+
"version": {
10925+
"type": "string",
10926+
"description": "The version of the runtime, if obtainable."
10927+
}
10928+
}
10929+
},
10930+
"EnvironmentInfoWindowsPlatform": {
10931+
"type": "object",
10932+
"properties": {
10933+
"version": {
10934+
"type": "string",
10935+
"description": "The Windows version, if obtainable."
10936+
},
10937+
"architecture": {
10938+
"$ref": "#/definitions/EnvironmentInfoArchitecture",
10939+
"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+
},
1085110947
"EventGroupMarkerInboundEvent": {
1085210948
"type": "object",
1085310949
"properties": {
@@ -10867,6 +10963,23 @@
1086710963
},
1086810964
"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."
1086910965
},
10966+
"HostingEnvironmentHostingEnvironmentType": {
10967+
"type": "string",
10968+
"enum": [
10969+
"HOSTING_ENVIRONMENT_TYPE_UNSPECIFIED",
10970+
"HOSTING_ENVIRONMENT_TYPE_DOCKER",
10971+
"HOSTING_ENVIRONMENT_TYPE_K8S",
10972+
"HOSTING_ENVIRONMENT_TYPE_AWS_LAMBDA",
10973+
"HOSTING_ENVIRONMENT_TYPE_AWS_ECS",
10974+
"HOSTING_ENVIRONMENT_TYPE_GOOGLE_CLOUD_RUN",
10975+
"HOSTING_ENVIRONMENT_TYPE_GOOGLE_APP_ENGINE",
10976+
"HOSTING_ENVIRONMENT_TYPE_AZURE_APP_SERVICE",
10977+
"HOSTING_ENVIRONMENT_TYPE_AZURE_FUNCTIONS",
10978+
"HOSTING_ENVIRONMENT_TYPE_AZURE_CONTAINER_APPS"
10979+
],
10980+
"default": "HOSTING_ENVIRONMENT_TYPE_UNSPECIFIED",
10981+
"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`"
10982+
},
1087010983
"LinkActivity": {
1087110984
"type": "object",
1087210985
"properties": {
@@ -10944,6 +11057,15 @@
1094411057
}
1094511058
}
1094611059
},
11060+
"LinuxPlatformLibc": {
11061+
"type": "string",
11062+
"enum": [
11063+
"LIBC_UNSPECIFIED",
11064+
"LIBC_GLIBC",
11065+
"LIBC_MUSL"
11066+
],
11067+
"default": "LIBC_UNSPECIFIED"
11068+
},
1094711069
"ListWorkerDeploymentsResponseWorkerDeploymentSummary": {
1094811070
"type": "object",
1094911071
"properties": {
@@ -11099,6 +11221,24 @@
1109911221
},
1110011222
"description": "UpdateWorkflowOptions represents updating workflow execution options after a workflow reset.\nKeep the parameters in sync with temporal.api.workflowservice.v1.UpdateWorkflowExecutionOptionsRequest."
1110111223
},
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."
11241+
},
1110211242
"UpdateTaskQueueConfigRequestRateLimitUpdate": {
1110311243
"type": "object",
1110411244
"properties": {
@@ -11144,6 +11284,17 @@
1114411284
"default": "PINNED_OVERRIDE_BEHAVIOR_UNSPECIFIED",
1114511285
"description": " - PINNED_OVERRIDE_BEHAVIOR_UNSPECIFIED: Unspecified.\n - PINNED_OVERRIDE_BEHAVIOR_PINNED: Override workflow behavior to be Pinned."
1114611286
},
11287+
"WindowsPlatformCrt": {
11288+
"type": "string",
11289+
"enum": [
11290+
"CRT_UNSPECIFIED",
11291+
"CRT_UCRT",
11292+
"CRT_MSVCRT",
11293+
"CRT_MINGW",
11294+
"CRT_CYGWIN"
11295+
],
11296+
"default": "CRT_UNSPECIFIED"
11297+
},
1114711298
"WorkerConfigAutoscalingPollerBehavior": {
1114811299
"type": "object",
1114911300
"properties": {
@@ -15599,6 +15750,31 @@
1559915750
},
1560015751
"description": "Target to route requests to."
1560115752
},
15753+
"v1EnvironmentInfo": {
15754+
"type": "object",
15755+
"properties": {
15756+
"runtimes": {
15757+
"type": "array",
15758+
"items": {
15759+
"type": "object",
15760+
"$ref": "#/definitions/EnvironmentInfoRuntime"
15761+
},
15762+
"description": "The runtime(s) the SDK is operating in."
15763+
},
15764+
"hostingEnvironments": {
15765+
"type": "array",
15766+
"items": {
15767+
"type": "object",
15768+
"$ref": "#/definitions/EnvironmentInfoHostingEnvironment"
15769+
},
15770+
"description": "The hosting environment(s) the SDK is operating in. Repeated to allow for layering (ex: Docker inside k8s)."
15771+
},
15772+
"platform": {
15773+
"$ref": "#/definitions/EnvironmentInfoPlatform",
15774+
"description": "The platform the SDK is operating on."
15775+
}
15776+
}
15777+
},
1560215778
"v1EventGroupMarker": {
1560315779
"type": "object",
1560415780
"properties": {
@@ -20673,6 +20849,10 @@
2067320849
"$ref": "#/definitions/v1StorageDriverInfo"
2067420850
},
2067520851
"description": "Storage drivers in use by this SDK."
20852+
},
20853+
"environment": {
20854+
"$ref": "#/definitions/v1EnvironmentInfo",
20855+
"description": "Information about the environment this SDK is running in."
2067620856
}
2067720857
},
2067820858
"description": "Worker info message, contains information about the worker and its current state.\nAll information is provided by the worker itself."

openapi/openapiv3.yaml

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12084,6 +12084,135 @@ components:
1208412084
type: string
1208512085
description: Nexus task queue to route requests to.
1208612086
description: Target a worker polling on a Nexus task queue in a specific namespace.
12087+
EnvironmentInfo:
12088+
type: object
12089+
properties:
12090+
runtimes:
12091+
type: array
12092+
items:
12093+
$ref: '#/components/schemas/EnvironmentInfo_Runtime'
12094+
description: The runtime(s) the SDK is operating in.
12095+
hostingEnvironments:
12096+
type: array
12097+
items:
12098+
$ref: '#/components/schemas/EnvironmentInfo_HostingEnvironment'
12099+
description: 'The hosting environment(s) the SDK is operating in. Repeated to allow for layering (ex: Docker inside k8s).'
12100+
platform:
12101+
allOf:
12102+
- $ref: '#/components/schemas/EnvironmentInfo_Platform'
12103+
description: The platform the SDK is operating on.
12104+
EnvironmentInfo_HostingEnvironment:
12105+
type: object
12106+
properties:
12107+
type:
12108+
enum:
12109+
- HOSTING_ENVIRONMENT_TYPE_UNSPECIFIED
12110+
- HOSTING_ENVIRONMENT_TYPE_DOCKER
12111+
- HOSTING_ENVIRONMENT_TYPE_K8S
12112+
- HOSTING_ENVIRONMENT_TYPE_AWS_LAMBDA
12113+
- HOSTING_ENVIRONMENT_TYPE_AWS_ECS
12114+
- HOSTING_ENVIRONMENT_TYPE_GOOGLE_CLOUD_RUN
12115+
- HOSTING_ENVIRONMENT_TYPE_GOOGLE_APP_ENGINE
12116+
- HOSTING_ENVIRONMENT_TYPE_AZURE_APP_SERVICE
12117+
- HOSTING_ENVIRONMENT_TYPE_AZURE_FUNCTIONS
12118+
- HOSTING_ENVIRONMENT_TYPE_AZURE_CONTAINER_APPS
12119+
type: string
12120+
description: The type of hosting environment.
12121+
format: enum
12122+
version:
12123+
type: string
12124+
description: The version of the hosting environment, if obtainable.
12125+
EnvironmentInfo_LinuxPlatform:
12126+
type: object
12127+
properties:
12128+
version:
12129+
type: string
12130+
description: The Linux kernel or distribution version, if obtainable.
12131+
architecture:
12132+
enum:
12133+
- ARCHITECTURE_UNSPECIFIED
12134+
- ARCHITECTURE_AMD64
12135+
- ARCHITECTURE_ARM64
12136+
type: string
12137+
description: The architecture of the worker process.
12138+
format: enum
12139+
libc:
12140+
enum:
12141+
- LIBC_UNSPECIFIED
12142+
- LIBC_GLIBC
12143+
- LIBC_MUSL
12144+
type: string
12145+
description: The libc used by the worker process.
12146+
format: enum
12147+
EnvironmentInfo_MacOSPlatform:
12148+
type: object
12149+
properties:
12150+
version:
12151+
type: string
12152+
description: The macOS version, if obtainable.
12153+
architecture:
12154+
enum:
12155+
- ARCHITECTURE_UNSPECIFIED
12156+
- ARCHITECTURE_AMD64
12157+
- ARCHITECTURE_ARM64
12158+
type: string
12159+
description: The architecture of the worker process.
12160+
format: enum
12161+
EnvironmentInfo_Platform:
12162+
type: object
12163+
properties:
12164+
linux:
12165+
$ref: '#/components/schemas/EnvironmentInfo_LinuxPlatform'
12166+
macos:
12167+
$ref: '#/components/schemas/EnvironmentInfo_MacOSPlatform'
12168+
windows:
12169+
$ref: '#/components/schemas/EnvironmentInfo_WindowsPlatform'
12170+
EnvironmentInfo_Runtime:
12171+
type: object
12172+
properties:
12173+
type:
12174+
enum:
12175+
- RUNTIME_TYPE_UNSPECIFIED
12176+
- RUNTIME_TYPE_JVM
12177+
- RUNTIME_TYPE_CPYTHON
12178+
- RUNTIME_TYPE_NODE
12179+
- RUNTIME_TYPE_BUN
12180+
- RUNTIME_TYPE_CRUBY
12181+
- RUNTIME_TYPE_GO
12182+
- RUNTIME_TYPE_DOTNET_FRAMEWORK
12183+
- RUNTIME_TYPE_DOTNET_CORE
12184+
- RUNTIME_TYPE_NATIVE
12185+
- RUNTIME_TYPE_ROADRUNNER
12186+
type: string
12187+
description: The type of the runtime.
12188+
format: enum
12189+
version:
12190+
type: string
12191+
description: The version of the runtime, if obtainable.
12192+
EnvironmentInfo_WindowsPlatform:
12193+
type: object
12194+
properties:
12195+
version:
12196+
type: string
12197+
description: The Windows version, if obtainable.
12198+
architecture:
12199+
enum:
12200+
- ARCHITECTURE_UNSPECIFIED
12201+
- ARCHITECTURE_AMD64
12202+
- ARCHITECTURE_ARM64
12203+
type: string
12204+
description: The architecture of the worker process.
12205+
format: enum
12206+
crt:
12207+
enum:
12208+
- CRT_UNSPECIFIED
12209+
- CRT_UCRT
12210+
- CRT_MSVCRT
12211+
- CRT_MINGW
12212+
- CRT_CYGWIN
12213+
type: string
12214+
description: The C runtime used by the worker process, if obtainable.
12215+
format: enum
1208712216
EventGroupMarker:
1208812217
type: object
1208912218
properties:
@@ -19111,6 +19240,10 @@ components:
1911119240
items:
1911219241
$ref: '#/components/schemas/StorageDriverInfo'
1911319242
description: Storage drivers in use by this SDK.
19243+
environment:
19244+
allOf:
19245+
- $ref: '#/components/schemas/EnvironmentInfo'
19246+
description: Information about the environment this SDK is running in.
1911419247
description: |-
1911519248
Worker info message, contains information about the worker and its current state.
1911619249
All information is provided by the worker itself.

0 commit comments

Comments
 (0)