Skip to content

Commit

Permalink
chore(updater): bump pkg/dist/*.yml (2024-08-29) (#181)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Aug 29, 2024
1 parent c0c9545 commit 6638fb8
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 0 deletions.
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

0 comments on commit 6638fb8

Please sign in to comment.