aiven.getServiceIntegration
Explore with Pulumi AI
The Service Integration data source provides information about the existing Aiven Service Integration.
Service Integration defines an integration between two Aiven services or between Aiven service and an external integration endpoint. Integration could be for example sending metrics from Kafka service to an InfluxDB service, getting metrics from an InfluxDB service to a Grafana service to show dashboards, sending logs from any service to Elasticsearch, etc.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var myintegration = Aiven.GetServiceIntegration.Invoke(new()
{
Project = aiven_project.Myproject.Project,
DestinationServiceName = "<DESTINATION_SERVICE_NAME>",
IntegrationType = "datadog",
SourceServiceName = "<SOURCE_SERVICE_NAME>",
});
});
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.LookupServiceIntegration(ctx, &aiven.LookupServiceIntegrationArgs{
Project: aiven_project.Myproject.Project,
DestinationServiceName: "<DESTINATION_SERVICE_NAME>",
IntegrationType: "datadog",
SourceServiceName: "<SOURCE_SERVICE_NAME>",
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.AivenFunctions;
import com.pulumi.aiven.inputs.GetServiceIntegrationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var myintegration = AivenFunctions.getServiceIntegration(GetServiceIntegrationArgs.builder()
.project(aiven_project.myproject().project())
.destinationServiceName("<DESTINATION_SERVICE_NAME>")
.integrationType("datadog")
.sourceServiceName("<SOURCE_SERVICE_NAME>")
.build());
}
}
import pulumi
import pulumi_aiven as aiven
myintegration = aiven.get_service_integration(project=aiven_project["myproject"]["project"],
destination_service_name="<DESTINATION_SERVICE_NAME>",
integration_type="datadog",
source_service_name="<SOURCE_SERVICE_NAME>")
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const myintegration = aiven.getServiceIntegration({
project: aiven_project.myproject.project,
destinationServiceName: "<DESTINATION_SERVICE_NAME>",
integrationType: "datadog",
sourceServiceName: "<SOURCE_SERVICE_NAME>",
});
variables:
myintegration:
fn::invoke:
Function: aiven:getServiceIntegration
Arguments:
project: ${aiven_project.myproject.project}
destinationServiceName: <DESTINATION_SERVICE_NAME>
integrationType: datadog
sourceServiceName: <SOURCE_SERVICE_NAME>
Using getServiceIntegration
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getServiceIntegration(args: GetServiceIntegrationArgs, opts?: InvokeOptions): Promise<GetServiceIntegrationResult>
function getServiceIntegrationOutput(args: GetServiceIntegrationOutputArgs, opts?: InvokeOptions): Output<GetServiceIntegrationResult>
def get_service_integration(destination_service_name: Optional[str] = None,
integration_type: Optional[str] = None,
project: Optional[str] = None,
source_service_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceIntegrationResult
def get_service_integration_output(destination_service_name: Optional[pulumi.Input[str]] = None,
integration_type: Optional[pulumi.Input[str]] = None,
project: Optional[pulumi.Input[str]] = None,
source_service_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceIntegrationResult]
func LookupServiceIntegration(ctx *Context, args *LookupServiceIntegrationArgs, opts ...InvokeOption) (*LookupServiceIntegrationResult, error)
func LookupServiceIntegrationOutput(ctx *Context, args *LookupServiceIntegrationOutputArgs, opts ...InvokeOption) LookupServiceIntegrationResultOutput
> Note: This function is named LookupServiceIntegration
in the Go SDK.
public static class GetServiceIntegration
{
public static Task<GetServiceIntegrationResult> InvokeAsync(GetServiceIntegrationArgs args, InvokeOptions? opts = null)
public static Output<GetServiceIntegrationResult> Invoke(GetServiceIntegrationInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceIntegrationResult> getServiceIntegration(GetServiceIntegrationArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aiven:index/getServiceIntegration:getServiceIntegration
arguments:
# arguments dictionary
The following arguments are supported:
- Destination
Service stringName Destination service for the integration (if any)
- Integration
Type string Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- Project string
Project the integration belongs to
- Source
Service stringName Source service for the integration (if any)
- Destination
Service stringName Destination service for the integration (if any)
- Integration
Type string Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- Project string
Project the integration belongs to
- Source
Service stringName Source service for the integration (if any)
- destination
Service StringName Destination service for the integration (if any)
- integration
Type String Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- project String
Project the integration belongs to
- source
Service StringName Source service for the integration (if any)
- destination
Service stringName Destination service for the integration (if any)
- integration
Type string Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- project string
Project the integration belongs to
- source
Service stringName Source service for the integration (if any)
- destination_
service_ strname Destination service for the integration (if any)
- integration_
type str Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- project str
Project the integration belongs to
- source_
service_ strname Source service for the integration (if any)
- destination
Service StringName Destination service for the integration (if any)
- integration
Type String Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- project String
Project the integration belongs to
- source
Service StringName Source service for the integration (if any)
getServiceIntegration Result
The following output properties are available:
- Clickhouse
Kafka List<GetUser Configs Service Integration Clickhouse Kafka User Config> ClickhouseKafka user configurable settings
- Clickhouse
Postgresql List<GetUser Configs Service Integration Clickhouse Postgresql User Config> ClickhousePostgresql user configurable settings
- Datadog
User List<GetConfigs Service Integration Datadog User Config> Datadog user configurable settings
- Destination
Endpoint stringId Destination endpoint for the integration (if any)
- Destination
Service stringName Destination service for the integration (if any)
- External
Aws List<GetCloudwatch Metrics User Configs Service Integration External Aws Cloudwatch Metrics User Config> ExternalAwsCloudwatchMetrics user configurable settings
- Id string
The provider-assigned unique ID for this managed resource.
- Integration
Id string Service Integration Id at aiven
- Integration
Type string Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- Kafka
Connect List<GetUser Configs Service Integration Kafka Connect User Config> KafkaConnect user configurable settings
- Kafka
Logs List<GetUser Configs Service Integration Kafka Logs User Config> KafkaLogs user configurable settings
- Kafka
Mirrormaker List<GetUser Configs Service Integration Kafka Mirrormaker User Config> KafkaMirrormaker user configurable settings
- Logs
User List<GetConfigs Service Integration Logs User Config> Logs user configurable settings
- Metrics
User List<GetConfigs Service Integration Metrics User Config> Metrics user configurable settings
- Project string
Project the integration belongs to
- Source
Endpoint stringId Source endpoint for the integration (if any)
- Source
Service stringName Source service for the integration (if any)
- Clickhouse
Kafka []GetUser Configs Service Integration Clickhouse Kafka User Config ClickhouseKafka user configurable settings
- Clickhouse
Postgresql []GetUser Configs Service Integration Clickhouse Postgresql User Config ClickhousePostgresql user configurable settings
- Datadog
User []GetConfigs Service Integration Datadog User Config Datadog user configurable settings
- Destination
Endpoint stringId Destination endpoint for the integration (if any)
- Destination
Service stringName Destination service for the integration (if any)
- External
Aws []GetCloudwatch Metrics User Configs Service Integration External Aws Cloudwatch Metrics User Config ExternalAwsCloudwatchMetrics user configurable settings
- Id string
The provider-assigned unique ID for this managed resource.
- Integration
Id string Service Integration Id at aiven
- Integration
Type string Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- Kafka
Connect []GetUser Configs Service Integration Kafka Connect User Config KafkaConnect user configurable settings
- Kafka
Logs []GetUser Configs Service Integration Kafka Logs User Config KafkaLogs user configurable settings
- Kafka
Mirrormaker []GetUser Configs Service Integration Kafka Mirrormaker User Config KafkaMirrormaker user configurable settings
- Logs
User []GetConfigs Service Integration Logs User Config Logs user configurable settings
- Metrics
User []GetConfigs Service Integration Metrics User Config Metrics user configurable settings
- Project string
Project the integration belongs to
- Source
Endpoint stringId Source endpoint for the integration (if any)
- Source
Service stringName Source service for the integration (if any)
- clickhouse
Kafka List<GetUser Configs Service Integration Clickhouse Kafka User Config> ClickhouseKafka user configurable settings
- clickhouse
Postgresql List<GetUser Configs Service Integration Clickhouse Postgresql User Config> ClickhousePostgresql user configurable settings
- datadog
User List<GetConfigs Service Integration Datadog User Config> Datadog user configurable settings
- destination
Endpoint StringId Destination endpoint for the integration (if any)
- destination
Service StringName Destination service for the integration (if any)
- external
Aws List<GetCloudwatch Metrics User Configs Service Integration External Aws Cloudwatch Metrics User Config> ExternalAwsCloudwatchMetrics user configurable settings
- id String
The provider-assigned unique ID for this managed resource.
- integration
Id String Service Integration Id at aiven
- integration
Type String Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- kafka
Connect List<GetUser Configs Service Integration Kafka Connect User Config> KafkaConnect user configurable settings
- kafka
Logs List<GetUser Configs Service Integration Kafka Logs User Config> KafkaLogs user configurable settings
- kafka
Mirrormaker List<GetUser Configs Service Integration Kafka Mirrormaker User Config> KafkaMirrormaker user configurable settings
- logs
User List<GetConfigs Service Integration Logs User Config> Logs user configurable settings
- metrics
User List<GetConfigs Service Integration Metrics User Config> Metrics user configurable settings
- project String
Project the integration belongs to
- source
Endpoint StringId Source endpoint for the integration (if any)
- source
Service StringName Source service for the integration (if any)
- clickhouse
Kafka GetUser Configs Service Integration Clickhouse Kafka User Config[] ClickhouseKafka user configurable settings
- clickhouse
Postgresql GetUser Configs Service Integration Clickhouse Postgresql User Config[] ClickhousePostgresql user configurable settings
- datadog
User GetConfigs Service Integration Datadog User Config[] Datadog user configurable settings
- destination
Endpoint stringId Destination endpoint for the integration (if any)
- destination
Service stringName Destination service for the integration (if any)
- external
Aws GetCloudwatch Metrics User Configs Service Integration External Aws Cloudwatch Metrics User Config[] ExternalAwsCloudwatchMetrics user configurable settings
- id string
The provider-assigned unique ID for this managed resource.
- integration
Id string Service Integration Id at aiven
- integration
Type string Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- kafka
Connect GetUser Configs Service Integration Kafka Connect User Config[] KafkaConnect user configurable settings
- kafka
Logs GetUser Configs Service Integration Kafka Logs User Config[] KafkaLogs user configurable settings
- kafka
Mirrormaker GetUser Configs Service Integration Kafka Mirrormaker User Config[] KafkaMirrormaker user configurable settings
- logs
User GetConfigs Service Integration Logs User Config[] Logs user configurable settings
- metrics
User GetConfigs Service Integration Metrics User Config[] Metrics user configurable settings
- project string
Project the integration belongs to
- source
Endpoint stringId Source endpoint for the integration (if any)
- source
Service stringName Source service for the integration (if any)
- clickhouse_
kafka_ Sequence[Getuser_ configs Service Integration Clickhouse Kafka User Config] ClickhouseKafka user configurable settings
- clickhouse_
postgresql_ Sequence[Getuser_ configs Service Integration Clickhouse Postgresql User Config] ClickhousePostgresql user configurable settings
- datadog_
user_ Sequence[Getconfigs Service Integration Datadog User Config] Datadog user configurable settings
- destination_
endpoint_ strid Destination endpoint for the integration (if any)
- destination_
service_ strname Destination service for the integration (if any)
- external_
aws_ Sequence[Getcloudwatch_ metrics_ user_ configs Service Integration External Aws Cloudwatch Metrics User Config] ExternalAwsCloudwatchMetrics user configurable settings
- id str
The provider-assigned unique ID for this managed resource.
- integration_
id str Service Integration Id at aiven
- integration_
type str Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- kafka_
connect_ Sequence[Getuser_ configs Service Integration Kafka Connect User Config] KafkaConnect user configurable settings
- kafka_
logs_ Sequence[Getuser_ configs Service Integration Kafka Logs User Config] KafkaLogs user configurable settings
- kafka_
mirrormaker_ Sequence[Getuser_ configs Service Integration Kafka Mirrormaker User Config] KafkaMirrormaker user configurable settings
- logs_
user_ Sequence[Getconfigs Service Integration Logs User Config] Logs user configurable settings
- metrics_
user_ Sequence[Getconfigs Service Integration Metrics User Config] Metrics user configurable settings
- project str
Project the integration belongs to
- source_
endpoint_ strid Source endpoint for the integration (if any)
- source_
service_ strname Source service for the integration (if any)
- clickhouse
Kafka List<Property Map>User Configs ClickhouseKafka user configurable settings
- clickhouse
Postgresql List<Property Map>User Configs ClickhousePostgresql user configurable settings
- datadog
User List<Property Map>Configs Datadog user configurable settings
- destination
Endpoint StringId Destination endpoint for the integration (if any)
- destination
Service StringName Destination service for the integration (if any)
- external
Aws List<Property Map>Cloudwatch Metrics User Configs ExternalAwsCloudwatchMetrics user configurable settings
- id String
The provider-assigned unique ID for this managed resource.
- integration
Id String Service Integration Id at aiven
- integration
Type String Type of the service integration. Possible values:
alertmanager
,cassandra_cross_service_cluster
,clickhouse_kafka
,clickhouse_postgresql
,dashboard
,datadog
,datasource
,external_aws_cloudwatch_logs
,external_aws_cloudwatch_metrics
,external_elasticsearch_logs
,external_google_cloud_logging
,external_opensearch_logs
,flink
,internal_connectivity
,jolokia
,kafka_connect
,kafka_logs
,kafka_mirrormaker
,logs
,m3aggregator
,m3coordinator
,metrics
,opensearch_cross_cluster_replication
,opensearch_cross_cluster_search
,prometheus
,read_replica
,rsyslog
,schema_registry_proxy
- kafka
Connect List<Property Map>User Configs KafkaConnect user configurable settings
- kafka
Logs List<Property Map>User Configs KafkaLogs user configurable settings
- kafka
Mirrormaker List<Property Map>User Configs KafkaMirrormaker user configurable settings
- logs
User List<Property Map>Configs Logs user configurable settings
- metrics
User List<Property Map>Configs Metrics user configurable settings
- project String
Project the integration belongs to
- source
Endpoint StringId Source endpoint for the integration (if any)
- source
Service StringName Source service for the integration (if any)
Supporting Types
GetServiceIntegrationClickhouseKafkaUserConfig
GetServiceIntegrationClickhouseKafkaUserConfigTable
- Data
Format string - Group
Name string - Name string
- Auto
Offset stringReset - Columns
List<Get
Service Integration Clickhouse Kafka User Config Table Column> - Date
Time stringInput Format - Handle
Error stringMode - Max
Block intSize - Max
Rows intPer Message - Num
Consumers int - Poll
Max intBatch Size - Skip
Broken intMessages - Topics
List<Get
Service Integration Clickhouse Kafka User Config Table Topic>
- Data
Format string - Group
Name string - Name string
- Auto
Offset stringReset - Columns
[]Get
Service Integration Clickhouse Kafka User Config Table Column - Date
Time stringInput Format - Handle
Error stringMode - Max
Block intSize - Max
Rows intPer Message - Num
Consumers int - Poll
Max intBatch Size - Skip
Broken intMessages - Topics
[]Get
Service Integration Clickhouse Kafka User Config Table Topic
- data
Format String - group
Name String - name String
- auto
Offset StringReset - columns
List<Get
Service Integration Clickhouse Kafka User Config Table Column> - date
Time StringInput Format - handle
Error StringMode - max
Block IntegerSize - max
Rows IntegerPer Message - num
Consumers Integer - poll
Max IntegerBatch Size - skip
Broken IntegerMessages - topics
List<Get
Service Integration Clickhouse Kafka User Config Table Topic>
- data
Format string - group
Name string - name string
- auto
Offset stringReset - columns
Get
Service Integration Clickhouse Kafka User Config Table Column[] - date
Time stringInput Format - handle
Error stringMode - max
Block numberSize - max
Rows numberPer Message - num
Consumers number - poll
Max numberBatch Size - skip
Broken numberMessages - topics
Get
Service Integration Clickhouse Kafka User Config Table Topic[]
- data_
format str - group_
name str - name str
- auto_
offset_ strreset - columns
Sequence[Get
Service Integration Clickhouse Kafka User Config Table Column] - date_
time_ strinput_ format - handle_
error_ strmode - max_
block_ intsize - max_
rows_ intper_ message - num_
consumers int - poll_
max_ intbatch_ size - skip_
broken_ intmessages - topics
Sequence[Get
Service Integration Clickhouse Kafka User Config Table Topic]
- data
Format String - group
Name String - name String
- auto
Offset StringReset - columns List<Property Map>
- date
Time StringInput Format - handle
Error StringMode - max
Block NumberSize - max
Rows NumberPer Message - num
Consumers Number - poll
Max NumberBatch Size - skip
Broken NumberMessages - topics List<Property Map>
GetServiceIntegrationClickhouseKafkaUserConfigTableColumn
GetServiceIntegrationClickhouseKafkaUserConfigTableTopic
- Name string
- Name string
- name String
- name string
- name str
- name String
GetServiceIntegrationClickhousePostgresqlUserConfig
GetServiceIntegrationClickhousePostgresqlUserConfigDatabase
GetServiceIntegrationDatadogUserConfig
- Datadog
Dbm boolEnabled - List<Get
Service Integration Datadog User Config Datadog Tag> - Exclude
Consumer List<string>Groups - Exclude
Topics List<string> - Include
Consumer List<string>Groups - Include
Topics List<string> - Kafka
Custom List<string>Metrics - Max
Jmx intMetrics - Opensearch
Get
Service Integration Datadog User Config Opensearch - Redis
Get
Service Integration Datadog User Config Redis
- Datadog
Dbm boolEnabled - []Get
Service Integration Datadog User Config Datadog Tag - Exclude
Consumer []stringGroups - Exclude
Topics []string - Include
Consumer []stringGroups - Include
Topics []string - Kafka
Custom []stringMetrics - Max
Jmx intMetrics - Opensearch
Get
Service Integration Datadog User Config Opensearch - Redis
Get
Service Integration Datadog User Config Redis
- datadog
Dbm BooleanEnabled - List<Get
Service Integration Datadog User Config Datadog Tag> - exclude
Consumer List<String>Groups - exclude
Topics List<String> - include
Consumer List<String>Groups - include
Topics List<String> - kafka
Custom List<String>Metrics - max
Jmx IntegerMetrics - opensearch
Get
Service Integration Datadog User Config Opensearch - redis
Get
Service Integration Datadog User Config Redis
- datadog
Dbm booleanEnabled - Get
Service Integration Datadog User Config Datadog Tag[] - exclude
Consumer string[]Groups - exclude
Topics string[] - include
Consumer string[]Groups - include
Topics string[] - kafka
Custom string[]Metrics - max
Jmx numberMetrics - opensearch
Get
Service Integration Datadog User Config Opensearch - redis
Get
Service Integration Datadog User Config Redis
- datadog_
dbm_ boolenabled - Sequence[Get
Service Integration Datadog User Config Datadog Tag] - exclude_
consumer_ Sequence[str]groups - exclude_
topics Sequence[str] - include_
consumer_ Sequence[str]groups - include_
topics Sequence[str] - kafka_
custom_ Sequence[str]metrics - max_
jmx_ intmetrics - opensearch
Get
Service Integration Datadog User Config Opensearch - redis
Get
Service Integration Datadog User Config Redis
- datadog
Dbm BooleanEnabled - List<Property Map>
- exclude
Consumer List<String>Groups - exclude
Topics List<String> - include
Consumer List<String>Groups - include
Topics List<String> - kafka
Custom List<String>Metrics - max
Jmx NumberMetrics - opensearch Property Map
- redis Property Map
GetServiceIntegrationDatadogUserConfigDatadogTag
GetServiceIntegrationDatadogUserConfigOpensearch
- Index
Stats boolEnabled - Pending
Task boolStats Enabled - Pshard
Stats boolEnabled
- Index
Stats boolEnabled - Pending
Task boolStats Enabled - Pshard
Stats boolEnabled
- index
Stats BooleanEnabled - pending
Task BooleanStats Enabled - pshard
Stats BooleanEnabled
- index
Stats booleanEnabled - pending
Task booleanStats Enabled - pshard
Stats booleanEnabled
- index
Stats BooleanEnabled - pending
Task BooleanStats Enabled - pshard
Stats BooleanEnabled
GetServiceIntegrationDatadogUserConfigRedis
- Command
Stats boolEnabled
- Command
Stats boolEnabled
- command
Stats BooleanEnabled
- command
Stats booleanEnabled
- command
Stats BooleanEnabled
GetServiceIntegrationExternalAwsCloudwatchMetricsUserConfig
GetServiceIntegrationExternalAwsCloudwatchMetricsUserConfigDroppedMetric
GetServiceIntegrationExternalAwsCloudwatchMetricsUserConfigExtraMetric
GetServiceIntegrationKafkaConnectUserConfig
GetServiceIntegrationKafkaConnectUserConfigKafkaConnect
- Config
Storage stringTopic - Group
Id string - Offset
Storage stringTopic - Status
Storage stringTopic
- Config
Storage stringTopic - Group
Id string - Offset
Storage stringTopic - Status
Storage stringTopic
- config
Storage StringTopic - group
Id String - offset
Storage StringTopic - status
Storage StringTopic
- config
Storage stringTopic - group
Id string - offset
Storage stringTopic - status
Storage stringTopic
- config
Storage StringTopic - group
Id String - offset
Storage StringTopic - status
Storage StringTopic
GetServiceIntegrationKafkaLogsUserConfig
- Kafka
Topic string - Selected
Log List<string>Fields
- Kafka
Topic string - Selected
Log []stringFields
- kafka
Topic String - selected
Log List<String>Fields
- kafka
Topic string - selected
Log string[]Fields
- kafka_
topic str - selected_
log_ Sequence[str]fields
- kafka
Topic String - selected
Log List<String>Fields
GetServiceIntegrationKafkaMirrormakerUserConfig
GetServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormaker
- consumer
Fetch IntegerMin Bytes - producer
Batch IntegerSize - producer
Buffer IntegerMemory - producer
Compression StringType - producer
Linger IntegerMs - producer
Max IntegerRequest Size
- consumer
Fetch numberMin Bytes - producer
Batch numberSize - producer
Buffer numberMemory - producer
Compression stringType - producer
Linger numberMs - producer
Max numberRequest Size
- consumer
Fetch NumberMin Bytes - producer
Batch NumberSize - producer
Buffer NumberMemory - producer
Compression StringType - producer
Linger NumberMs - producer
Max NumberRequest Size
GetServiceIntegrationLogsUserConfig
- Elasticsearch
Index intDays Max - Elasticsearch
Index stringPrefix - Selected
Log List<string>Fields
- Elasticsearch
Index intDays Max - Elasticsearch
Index stringPrefix - Selected
Log []stringFields
- elasticsearch
Index IntegerDays Max - elasticsearch
Index StringPrefix - selected
Log List<String>Fields
- elasticsearch
Index numberDays Max - elasticsearch
Index stringPrefix - selected
Log string[]Fields
- elasticsearch_
index_ intdays_ max - elasticsearch_
index_ strprefix - selected_
log_ Sequence[str]fields
- elasticsearch
Index NumberDays Max - elasticsearch
Index StringPrefix - selected
Log List<String>Fields
GetServiceIntegrationMetricsUserConfig
- Database string
- Retention
Days int - Ro
Username string - Source
Mysql GetService Integration Metrics User Config Source Mysql - Username string
- Database string
- Retention
Days int - Ro
Username string - Source
Mysql GetService Integration Metrics User Config Source Mysql - Username string
- database String
- retention
Days Integer - ro
Username String - source
Mysql GetService Integration Metrics User Config Source Mysql - username String
- database string
- retention
Days number - ro
Username string - source
Mysql GetService Integration Metrics User Config Source Mysql - username string
- database String
- retention
Days Number - ro
Username String - source
Mysql Property Map - username String
GetServiceIntegrationMetricsUserConfigSourceMysql
GetServiceIntegrationMetricsUserConfigSourceMysqlTelegraf
- Gather
Event boolWaits - Gather
File boolEvents Stats - Gather
Index boolIo Waits - Gather
Info boolSchema Auto Inc - Gather
Innodb boolMetrics - Gather
Perf boolEvents Statements - Gather
Process boolList - Gather
Slave boolStatus - Gather
Table boolIo Waits - Gather
Table boolLock Waits - Gather
Table boolSchema - Perf
Events intStatements Digest Text Limit - Perf
Events intStatements Limit - Perf
Events intStatements Time Limit
- Gather
Event boolWaits - Gather
File boolEvents Stats - Gather
Index boolIo Waits - Gather
Info boolSchema Auto Inc - Gather
Innodb boolMetrics - Gather
Perf boolEvents Statements - Gather
Process boolList - Gather
Slave boolStatus - Gather
Table boolIo Waits - Gather
Table boolLock Waits - Gather
Table boolSchema - Perf
Events intStatements Digest Text Limit - Perf
Events intStatements Limit - Perf
Events intStatements Time Limit
- gather
Event BooleanWaits - gather
File BooleanEvents Stats - gather
Index BooleanIo Waits - gather
Info BooleanSchema Auto Inc - gather
Innodb BooleanMetrics - gather
Perf BooleanEvents Statements - gather
Process BooleanList - gather
Slave BooleanStatus - gather
Table BooleanIo Waits - gather
Table BooleanLock Waits - gather
Table BooleanSchema - perf
Events IntegerStatements Digest Text Limit - perf
Events IntegerStatements Limit - perf
Events IntegerStatements Time Limit
- gather
Event booleanWaits - gather
File booleanEvents Stats - gather
Index booleanIo Waits - gather
Info booleanSchema Auto Inc - gather
Innodb booleanMetrics - gather
Perf booleanEvents Statements - gather
Process booleanList - gather
Slave booleanStatus - gather
Table booleanIo Waits - gather
Table booleanLock Waits - gather
Table booleanSchema - perf
Events numberStatements Digest Text Limit - perf
Events numberStatements Limit - perf
Events numberStatements Time Limit
- gather_
event_ boolwaits - gather_
file_ boolevents_ stats - gather_
index_ boolio_ waits - gather_
info_ boolschema_ auto_ inc - gather_
innodb_ boolmetrics - gather_
perf_ boolevents_ statements - gather_
process_ boollist - gather_
slave_ boolstatus - gather_
table_ boolio_ waits - gather_
table_ boollock_ waits - gather_
table_ boolschema - perf_
events_ intstatements_ digest_ text_ limit - perf_
events_ intstatements_ limit - perf_
events_ intstatements_ time_ limit
- gather
Event BooleanWaits - gather
File BooleanEvents Stats - gather
Index BooleanIo Waits - gather
Info BooleanSchema Auto Inc - gather
Innodb BooleanMetrics - gather
Perf BooleanEvents Statements - gather
Process BooleanList - gather
Slave BooleanStatus - gather
Table BooleanIo Waits - gather
Table BooleanLock Waits - gather
Table BooleanSchema - perf
Events NumberStatements Digest Text Limit - perf
Events NumberStatements Limit - perf
Events NumberStatements Time Limit
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aiven
Terraform Provider.