aiven.getKafkaSchemaConfiguration
Explore with Pulumi AI
The Kafka Schema Configuration data source provides information about the existing Aiven Kafka Schema Configuration.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var config = new Aiven.KafkaSchemaConfiguration("config", new()
{
Project = aiven_project.Kafka_schemas_project1.Project,
ServiceName = aiven_kafka.Kafka_service1.Service_name,
CompatibilityLevel = "BACKWARD",
});
});
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.NewKafkaSchemaConfiguration(ctx, "config", &aiven.KafkaSchemaConfigurationArgs{
Project: pulumi.Any(aiven_project.KafkaSchemasProject1.Project),
ServiceName: pulumi.Any(aiven_kafka.KafkaService1.Service_name),
CompatibilityLevel: pulumi.String("BACKWARD"),
})
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.KafkaSchemaConfiguration;
import com.pulumi.aiven.KafkaSchemaConfigurationArgs;
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) {
var config = new KafkaSchemaConfiguration("config", KafkaSchemaConfigurationArgs.builder()
.project(aiven_project.kafka-schemas-project1().project())
.serviceName(aiven_kafka.kafka-service1().service_name())
.compatibilityLevel("BACKWARD")
.build());
}
}
import pulumi
import pulumi_aiven as aiven
config = aiven.KafkaSchemaConfiguration("config",
project=aiven_project["kafka-schemas-project1"]["project"],
service_name=aiven_kafka["kafka-service1"]["service_name"],
compatibility_level="BACKWARD")
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const config = new aiven.KafkaSchemaConfiguration("config", {
project: aiven_project["kafka-schemas-project1"].project,
serviceName: aiven_kafka["kafka-service1"].service_name,
compatibilityLevel: "BACKWARD",
});
resources:
config:
type: aiven:KafkaSchemaConfiguration
properties:
project: ${aiven_project"kafka-schemas-project1"[%!s(MISSING)].project}
serviceName: ${aiven_kafka"kafka-service1"[%!s(MISSING)].service_name}
compatibilityLevel: BACKWARD
Using getKafkaSchemaConfiguration
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 getKafkaSchemaConfiguration(args: GetKafkaSchemaConfigurationArgs, opts?: InvokeOptions): Promise<GetKafkaSchemaConfigurationResult>
function getKafkaSchemaConfigurationOutput(args: GetKafkaSchemaConfigurationOutputArgs, opts?: InvokeOptions): Output<GetKafkaSchemaConfigurationResult>
def get_kafka_schema_configuration(project: Optional[str] = None,
service_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetKafkaSchemaConfigurationResult
def get_kafka_schema_configuration_output(project: Optional[pulumi.Input[str]] = None,
service_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetKafkaSchemaConfigurationResult]
func LookupKafkaSchemaConfiguration(ctx *Context, args *LookupKafkaSchemaConfigurationArgs, opts ...InvokeOption) (*LookupKafkaSchemaConfigurationResult, error)
func LookupKafkaSchemaConfigurationOutput(ctx *Context, args *LookupKafkaSchemaConfigurationOutputArgs, opts ...InvokeOption) LookupKafkaSchemaConfigurationResultOutput
> Note: This function is named LookupKafkaSchemaConfiguration
in the Go SDK.
public static class GetKafkaSchemaConfiguration
{
public static Task<GetKafkaSchemaConfigurationResult> InvokeAsync(GetKafkaSchemaConfigurationArgs args, InvokeOptions? opts = null)
public static Output<GetKafkaSchemaConfigurationResult> Invoke(GetKafkaSchemaConfigurationInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetKafkaSchemaConfigurationResult> getKafkaSchemaConfiguration(GetKafkaSchemaConfigurationArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aiven:index/getKafkaSchemaConfiguration:getKafkaSchemaConfiguration
arguments:
# arguments dictionary
The following arguments are supported:
- Project string
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Project string
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project String
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project string
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name string Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project str
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service_
name str Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project String
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
getKafkaSchemaConfiguration Result
The following output properties are available:
- Compatibility
Level string Kafka Schemas compatibility level. The possible values are
BACKWARD
,BACKWARD_TRANSITIVE
,FORWARD
,FORWARD_TRANSITIVE
,FULL
,FULL_TRANSITIVE
andNONE
.- Id string
The provider-assigned unique ID for this managed resource.
- Project string
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Schema string
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
- Schema
Type string Kafka Schema configuration type. Defaults to AVRO. Possible values are AVRO, JSON, and PROTOBUF.
- Service
Name string Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Subject
Name string The Kafka Schema Subject name. This property cannot be changed, doing so forces recreation of the resource.
- Version int
Kafka Schema configuration version.
- Compatibility
Level string Kafka Schemas compatibility level. The possible values are
BACKWARD
,BACKWARD_TRANSITIVE
,FORWARD
,FORWARD_TRANSITIVE
,FULL
,FULL_TRANSITIVE
andNONE
.- Id string
The provider-assigned unique ID for this managed resource.
- Project string
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Schema string
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
- Schema
Type string Kafka Schema configuration type. Defaults to AVRO. Possible values are AVRO, JSON, and PROTOBUF.
- Service
Name string Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Subject
Name string The Kafka Schema Subject name. This property cannot be changed, doing so forces recreation of the resource.
- Version int
Kafka Schema configuration version.
- compatibility
Level String Kafka Schemas compatibility level. The possible values are
BACKWARD
,BACKWARD_TRANSITIVE
,FORWARD
,FORWARD_TRANSITIVE
,FULL
,FULL_TRANSITIVE
andNONE
.- id String
The provider-assigned unique ID for this managed resource.
- project String
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema String
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
- schema
Type String Kafka Schema configuration type. Defaults to AVRO. Possible values are AVRO, JSON, and PROTOBUF.
- service
Name String Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- subject
Name String The Kafka Schema Subject name. This property cannot be changed, doing so forces recreation of the resource.
- version Integer
Kafka Schema configuration version.
- compatibility
Level string Kafka Schemas compatibility level. The possible values are
BACKWARD
,BACKWARD_TRANSITIVE
,FORWARD
,FORWARD_TRANSITIVE
,FULL
,FULL_TRANSITIVE
andNONE
.- id string
The provider-assigned unique ID for this managed resource.
- project string
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema string
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
- schema
Type string Kafka Schema configuration type. Defaults to AVRO. Possible values are AVRO, JSON, and PROTOBUF.
- service
Name string Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- subject
Name string The Kafka Schema Subject name. This property cannot be changed, doing so forces recreation of the resource.
- version number
Kafka Schema configuration version.
- compatibility_
level str Kafka Schemas compatibility level. The possible values are
BACKWARD
,BACKWARD_TRANSITIVE
,FORWARD
,FORWARD_TRANSITIVE
,FULL
,FULL_TRANSITIVE
andNONE
.- id str
The provider-assigned unique ID for this managed resource.
- project str
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema str
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
- schema_
type str Kafka Schema configuration type. Defaults to AVRO. Possible values are AVRO, JSON, and PROTOBUF.
- service_
name str Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- subject_
name str The Kafka Schema Subject name. This property cannot be changed, doing so forces recreation of the resource.
- version int
Kafka Schema configuration version.
- compatibility
Level String Kafka Schemas compatibility level. The possible values are
BACKWARD
,BACKWARD_TRANSITIVE
,FORWARD
,FORWARD_TRANSITIVE
,FULL
,FULL_TRANSITIVE
andNONE
.- id String
The provider-assigned unique ID for this managed resource.
- project String
Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema String
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
- schema
Type String Kafka Schema configuration type. Defaults to AVRO. Possible values are AVRO, JSON, and PROTOBUF.
- service
Name String Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- subject
Name String The Kafka Schema Subject name. This property cannot be changed, doing so forces recreation of the resource.
- version Number
Kafka Schema configuration version.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aiven
Terraform Provider.