diff --git a/pkg/dist/integration_endpoint_types.yml b/pkg/dist/integration_endpoint_types.yml index 9b233d8..be54950 100644 --- a/pkg/dist/integration_endpoint_types.yml +++ b/pkg/dist/integration_endpoint_types.yml @@ -1,3 +1,29 @@ +autoscaler: + type: object + required: + - autoscaling + properties: + autoscaling: + title: List of autoscaling configurations + description: Configure autoscaling thresholds for a service + type: array + items: + title: AutoscalingProperties + description: Generic model + type: object + required: + - type + - cap_gb + properties: + cap_gb: + title: The maximum total disk size (in gb) to allow autoscaler to scale up to + type: integer + minimum: 50 + maximum: 10000 + example: "300" + type: + title: Type of autoscale event + max_items: 64 datadog: type: object required: diff --git a/pkg/dist/integration_types.yml b/pkg/dist/integration_types.yml index cd4ad81..939ee63 100644 --- a/pkg/dist/integration_types.yml +++ b/pkg/dist/integration_types.yml @@ -1,3 +1,6 @@ +autoscaler: + title: Integration user config + type: object clickhouse_kafka: title: Integration user config type: object diff --git a/pkg/dist/service_types.yml b/pkg/dist/service_types.yml index 90adce5..8214e2b 100644 --- a/pkg/dist/service_types.yml +++ b/pkg/dist/service_types.yml @@ -1068,6 +1068,7 @@ flink: enum: - value: "1.16" - value: "1.19" + create_only: true ip_filter: title: IP filter description: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16' @@ -2521,6 +2522,13 @@ kafka: - value: "3.5" - value: "3.6" - value: "3.7" + letsencrypt_sasl_privatelink: + title: Use Letsencrypt CA for Kafka SASL via Privatelink + description: Use Letsencrypt CA for Kafka SASL via Privatelink + type: + - boolean + - "null" + example: true private_access: title: Allow access to selected service ports from private networks type: object