Skip to content

chore(updater): bump pkg/dist/*.yml (2025-01-15) #251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions pkg/dist/integration_endpoint_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,30 @@ external_aws_s3:
type: string
max_length: 2048
example: https://mybucket.s3-myregion.amazonaws.com/mydataset/
external_azure_blob_storage:
type: object
required:
- connection_string
- container
properties:
blob_path:
title: Blob path
type: string
max_length: 1024
pattern: ^(?!.{1025})/?[^/\n]*[^/.\n](?:/[^\n/]*[^/.\n]){0,253}$
example: path/to/blob/file.csv
connection_string:
title: Azure Blob Storage connection string
type: string
max_length: 4096
pattern: ^([a-zA-Z0-9]+)=([^;]+)(?:;([a-zA-Z0-9]+)=([^;]+))*(;)?$
example: AccountName=IDENT;AccountKey=SECRET
_secure: true
container:
title: Container
type: string
max_length: 256
example: container-dev
external_clickhouse:
type: object
required:
Expand Down
66 changes: 66 additions & 0 deletions pkg/dist/service_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,7 @@ flink:
title: Custom code enabled
description: Enable to upload Custom JARs for Flink applications
type: boolean
create_only: true
example: false
flink_version:
title: Flink major version
Expand Down Expand Up @@ -1584,6 +1585,11 @@ grafana:
description: Enable browsing of dashboards in grid (pictures) mode. This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
type: boolean
example: false
dashboard_scenes_enabled:
title: Enable scenes renderer for dashboards
description: Enable use of the Grafana Scenes Library as the dashboard engine. i.e. the `dashboardScene` feature flag. Upstream blog post at https://grafana.com/blog/2024/10/31/grafana-dashboards-are-now-powered-by-scenes-big-changes-same-ui/
type: boolean
example: false
dashboards_min_refresh_interval:
title: Minimum refresh interval
description: Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h
Expand Down Expand Up @@ -3082,6 +3088,31 @@ kafka_connect:
minimum: 1
maximum: 2.147483647e+09
example: "10000"
plugin_versions:
title: Kafka Connect plugins
description: The plugin selected by the user
type: array
items:
title: A Kafka Connect plugin
type: object
required:
- plugin_name
- version
properties:
plugin_name:
title: Plugin name
description: The name of the plugin
type: string
max_length: 128
pattern: ^[^\r\n]*$
example: debezium-connector
version:
title: Plugin version
description: The version of the plugin
type: string
max_length: 128
pattern: ^[^\r\n]*$
example: 2.5.0
private_access:
title: Allow access to selected service ports from private networks
type: object
Expand Down Expand Up @@ -4688,6 +4719,37 @@ opensearch:
type: boolean
default: false
example: false
cluster.search.request.slowlog:
type: object
properties:
level:
title: Log level
type: string
default: trace
enum:
- value: debug
- value: info
- value: trace
- value: warn
threshold:
type: object
properties:
debug:
title: Debug threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1
type: string
pattern: ^[^\r\n]*$
info:
title: Info threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1
type: string
pattern: ^[^\r\n]*$
trace:
title: Trace threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1
type: string
pattern: ^[^\r\n]*$
warn:
title: Warning threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1
type: string
pattern: ^[^\r\n]*$
cluster_max_shards_per_node:
title: cluster.max_shards_per_node
description: Controls the number of shards allowed in the cluster per data node
Expand Down Expand Up @@ -4723,6 +4785,10 @@ opensearch:
max_length: 320
pattern: ^[^\x00-\x1F]+$
example: jane@example.com
enable_remote_backed_storage:
title: Enable remote-backed storage
type: boolean
example: true
enable_security_audit:
title: Enable/Disable security audit
type: boolean
Expand Down