Skip to content

Commit c49f9b0

Browse files
committed
Update openapi spec
1 parent 8bcbc3d commit c49f9b0

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

openapi/openapiv2.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7590,6 +7590,21 @@
75907590
},
75917591
"title": "A subset of WorkerDeploymentInfo"
75927592
},
7593+
"NamespaceInfoLimits": {
7594+
"type": "object",
7595+
"properties": {
7596+
"blobSizeLimitError": {
7597+
"type": "string",
7598+
"format": "int64",
7599+
"description": "Maximum size in bytes for payload fields in workflow history events\n(e.g., workflow/activity inputs and results, failure details, signal payloads).\nWhen exceeded, the server will reject the operation with an error."
7600+
},
7601+
"memoSizeLimitError": {
7602+
"type": "string",
7603+
"format": "int64",
7604+
"description": "Maximum total memo size in bytes per workflow execution."
7605+
}
7606+
}
7607+
},
75937608
"OperatorServiceUpdateNexusEndpointBody": {
75947609
"type": "object",
75957610
"properties": {
@@ -12549,6 +12564,10 @@
1254912564
"$ref": "#/definitions/v1NamespaceInfoCapabilities",
1255012565
"description": "All capabilities the namespace supports."
1255112566
},
12567+
"limits": {
12568+
"$ref": "#/definitions/NamespaceInfoLimits",
12569+
"title": "Namespace configured limits"
12570+
},
1255212571
"supportsSchedules": {
1255312572
"type": "boolean",
1255412573
"description": "Whether scheduled workflows are supported on this namespace. This is only needed\ntemporarily while the feature is experimental, so we can give it a high tag."

openapi/openapiv3.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9311,6 +9311,10 @@ components:
93119311
allOf:
93129312
- $ref: '#/components/schemas/NamespaceInfo_Capabilities'
93139313
description: All capabilities the namespace supports.
9314+
limits:
9315+
allOf:
9316+
- $ref: '#/components/schemas/NamespaceInfo_Limits'
9317+
description: Namespace configured limits
93149318
supportsSchedules:
93159319
type: boolean
93169320
description: |-
@@ -9335,6 +9339,18 @@ components:
93359339
type: boolean
93369340
description: True if the namespace supports reported problems search attribute
93379341
description: Namespace capability details. Should contain what features are enabled in a namespace.
9342+
NamespaceInfo_Limits:
9343+
type: object
9344+
properties:
9345+
blobSizeLimitError:
9346+
type: string
9347+
description: |-
9348+
Maximum size in bytes for payload fields in workflow history events
9349+
(e.g., workflow/activity inputs and results, failure details, signal payloads).
9350+
When exceeded, the server will reject the operation with an error.
9351+
memoSizeLimitError:
9352+
type: string
9353+
description: Maximum total memo size in bytes per workflow execution.
93389354
NamespaceReplicationConfig:
93399355
type: object
93409356
properties:

0 commit comments

Comments
 (0)