@@ -65,12 +65,14 @@ components:
6565 - ACL_PATTERN_ANY: Wildcard to match any pattern
6666 - ACL_PATTERN_LITERAL: Match a literal string
6767 - ACL_PATTERN_PREFIXED: Match a prefix
68+ - ACL_PATTERN_PREFIX: Match a prefix
6869 - ACL_PATTERN_MATCH: Match serves as a catch-all for all the names of a topic
6970 the principal is authorized to access
7071 enum :
7172 - ACL_PATTERN_ANY
7273 - ACL_PATTERN_LITERAL
7374 - ACL_PATTERN_PREFIXED
75+ - ACL_PATTERN_PREFIX
7476 - ACL_PATTERN_MATCH
7577 title : The ACL pattern type
7678 type : string
@@ -1153,17 +1155,17 @@ components:
11531155 In this example, in proto `field` could take one of the following values:
11541156
11551157 * `full_name` for a violation in the `full_name` value
1156- * `email_addresses[1 ].email` for a violation in the `email` field of the
1158+ * `email_addresses[0 ].email` for a violation in the `email` field of the
11571159 first `email_addresses` message
1158- * `email_addresses[3 ].type[2 ]` for a violation in the second `type`
1160+ * `email_addresses[2 ].type[1 ]` for a violation in the second `type`
11591161 value in the third `email_addresses` message.
11601162
11611163 In JSON, the same values are represented as:
11621164
11631165 * `fullName` for a violation in the `fullName` value
1164- * `emailAddresses[1 ].email` for a violation in the `email` field of the
1166+ * `emailAddresses[0 ].email` for a violation in the `email` field of the
11651167 first `emailAddresses` message
1166- * `emailAddresses[3 ].type[2 ]` for a violation in the second `type`
1168+ * `emailAddresses[2 ].type[1 ]` for a violation in the second `type`
11671169 value in the third `emailAddresses` message.
11681170 type : string
11691171 localized_message :
@@ -2224,9 +2226,11 @@ components:
22242226 description : |-
22252227 - PATTERN_TYPE_LITERAL: Must match the filter exactly
22262228 - PATTERN_TYPE_PREFIX: Will match anything that starts with filter
2229+ - PATTERN_TYPE_PREFIXED: Will match anything that starts with filter
22272230 enum :
22282231 - PATTERN_TYPE_LITERAL
22292232 - PATTERN_TYPE_PREFIX
2233+ - PATTERN_TYPE_PREFIXED
22302234 title : The matching pattern type
22312235 type : string
22322236 PermissionType :
@@ -3254,7 +3258,7 @@ components:
32543258 - `redpanda.remote.allowgaps`
32553259 - `redpanda.virtual.cluster.id`
32563260 - `redpanda.leaders.preference`
3257- - `redpanda.cloud_topic.enabled `
3261+ - `redpanda.storage.mode `
32583262
32593263 This list is a list of properties in addition to the default properties
32603264 that will be synced. See `exclude_default`.
@@ -7834,7 +7838,7 @@ paths:
78347838 content :
78357839 multipart/form-data :
78367840 schema :
7837- example : ' {"name":"redact-orders","input_topic_name":"orders","output_topic_names":["orders-redacted"],"environment_variables":[{"key":"LOGGER_LEVEL","value":"DEBUG"}]}'
7841+ example : ' {"name":"redact-orders", "input_topic_name":"orders", "output_topic_names":["orders-redacted"], "environment_variables":[{"key":"LOGGER_LEVEL", "value":"DEBUG"}]}'
78387842 properties :
78397843 metadata :
78407844 $ref : ' #/components/schemas/DeployTransformRequest'
@@ -7852,7 +7856,7 @@ paths:
78527856 schema :
78537857 $ref : ' #/components/schemas/TransformMetadata'
78547858 description : Created
7855- summary : Deploy transform
7859+ summary : Deploy Transform
78567860 tags :
78577861 - Wasm Transforms
78587862 /v1/transforms/{name} :
0 commit comments