Skip to content
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

chore(updater): bump pkg/dist/*.yml (2024-08-29) #181

Merged
merged 1 commit into from
Aug 29, 2024
Merged
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
98 changes: 98 additions & 0 deletions pkg/dist/integration_endpoint_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,59 @@ external_aws_cloudwatch_metrics:
type: string
max_length: 4096
example: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
external_aws_s3:
type: object
required:
- url
- access_key_id
- secret_access_key
properties:
access_key_id:
title: Access Key Id
type: string
max_length: 128
pattern: ^[A-Z0-9]+$
example: AAAAAAAAAAAAAAAAAAA
secret_access_key:
title: Secret Access Key
type: string
max_length: 128
pattern: ^[A-Za-z0-9/+=]+$
example: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
url:
title: S3-compatible bucket URL
type: string
max_length: 2048
example: https://mybucket.s3-myregion.amazonaws.com/mydataset/
external_clickhouse:
type: object
required:
- host
- port
- username
- password
properties:
host:
title: Hostname or IP address of the server
type: string
max_length: 255
example: my.server.com
password:
title: Password
type: string
max_length: 256
example: jjKk45Nnd
port:
title: Secure TCP server port
type: integer
minimum: 1
maximum: 65535
example: "9440"
username:
title: User name
type: string
max_length: 64
example: default
external_elasticsearch_logs:
type: object
required:
Expand Down Expand Up @@ -335,6 +388,51 @@ external_kafka:
enum:
- value: https
example: https
external_mysql:
type: object
required:
- host
- port
- username
- password
properties:
host:
title: Hostname or IP address of the server
type: string
max_length: 255
example: my.server.com
password:
title: Password
type: string
max_length: 256
example: jjKk45Nnd
port:
title: Port number of the server
type: integer
minimum: 1
maximum: 65535
example: "5432"
ssl_mode:
title: SSL Mode
type: string
default: verify-full
enum:
- value: verify-full
example: verify-full
ssl_root_cert:
title: SSL Root Cert
type: string
default: ""
max_length: 16384
example: |
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
username:
title: User name
type: string
max_length: 256
example: myname
external_opensearch_logs:
type: object
required:
Expand Down
3 changes: 3 additions & 0 deletions pkg/dist/integration_types.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
autoscaler:
title: Integration user config
type: object
clickhouse_credentials:
title: Integration user config
type: object
clickhouse_kafka:
title: Integration user config
type: object
Expand Down
Loading