1. Packages
  2. Aiven Provider
  3. API Docs
  4. getKafkaSchema
Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi

aiven.getKafkaSchema

Explore with Pulumi AI

Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi

The Kafka Schema data source provides information about the existing Aiven Kafka Schema.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";

const config = aiven.getKafkaSchemaConfiguration({
    project: kafka_schemas_project1.project,
    serviceName: kafka_service1.serviceName,
});
Copy
import pulumi
import pulumi_aiven as aiven

config = aiven.get_kafka_schema_configuration(project=kafka_schemas_project1["project"],
    service_name=kafka_service1["serviceName"])
Copy
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.LookupKafkaSchemaConfiguration(ctx, &aiven.LookupKafkaSchemaConfigurationArgs{
			Project:     kafka_schemas_project1.Project,
			ServiceName: kafka_service1.ServiceName,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;

return await Deployment.RunAsync(() => 
{
    var config = Aiven.GetKafkaSchemaConfiguration.Invoke(new()
    {
        Project = kafka_schemas_project1.Project,
        ServiceName = kafka_service1.ServiceName,
    });

});
Copy
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.GetKafkaSchemaConfigurationArgs;
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 config = AivenFunctions.getKafkaSchemaConfiguration(GetKafkaSchemaConfigurationArgs.builder()
            .project(kafka_schemas_project1.project())
            .serviceName(kafka_service1.serviceName())
            .build());

    }
}
Copy
variables:
  config:
    fn::invoke:
      function: aiven:getKafkaSchemaConfiguration
      arguments:
        project: ${["kafka-schemas-project1"].project}
        serviceName: ${["kafka-service1"].serviceName}
Copy

Using getKafkaSchema

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 getKafkaSchema(args: GetKafkaSchemaArgs, opts?: InvokeOptions): Promise<GetKafkaSchemaResult>
function getKafkaSchemaOutput(args: GetKafkaSchemaOutputArgs, opts?: InvokeOptions): Output<GetKafkaSchemaResult>
Copy
def get_kafka_schema(project: Optional[str] = None,
                     service_name: Optional[str] = None,
                     subject_name: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetKafkaSchemaResult
def get_kafka_schema_output(project: Optional[pulumi.Input[str]] = None,
                     service_name: Optional[pulumi.Input[str]] = None,
                     subject_name: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetKafkaSchemaResult]
Copy
func LookupKafkaSchema(ctx *Context, args *LookupKafkaSchemaArgs, opts ...InvokeOption) (*LookupKafkaSchemaResult, error)
func LookupKafkaSchemaOutput(ctx *Context, args *LookupKafkaSchemaOutputArgs, opts ...InvokeOption) LookupKafkaSchemaResultOutput
Copy

> Note: This function is named LookupKafkaSchema in the Go SDK.

public static class GetKafkaSchema 
{
    public static Task<GetKafkaSchemaResult> InvokeAsync(GetKafkaSchemaArgs args, InvokeOptions? opts = null)
    public static Output<GetKafkaSchemaResult> Invoke(GetKafkaSchemaInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetKafkaSchemaResult> getKafkaSchema(GetKafkaSchemaArgs args, InvokeOptions options)
public static Output<GetKafkaSchemaResult> getKafkaSchema(GetKafkaSchemaArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: aiven:index/getKafkaSchema:getKafkaSchema
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Project This property is required. string
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
ServiceName This property is required. string
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
SubjectName This property is required. string
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
Project This property is required. string
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
ServiceName This property is required. string
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
SubjectName This property is required. string
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
project This property is required. String
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
serviceName This property is required. String
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subjectName This property is required. String
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
project This property is required. string
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
serviceName This property is required. string
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subjectName This property is required. string
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
project This property is required. str
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
service_name This property is required. str
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subject_name This property is required. str
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
project This property is required. String
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
serviceName This property is required. String
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subjectName This property is required. String
The Kafka Schema Subject name. Changing this property forces recreation of the resource.

getKafkaSchema Result

The following output properties are available:

CompatibilityLevel string
Kafka Schemas compatibility level. The possible values are BACKWARD, BACKWARD_TRANSITIVE, FORWARD, FORWARD_TRANSITIVE, FULL, FULL_TRANSITIVE and NONE.
Id string
The provider-assigned unique ID for this managed resource.
Project string
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
Schema string
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
SchemaType string
Kafka Schema configuration type. Defaults to AVRO. The possible values are AVRO, JSON and PROTOBUF.
ServiceName string
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
SubjectName string
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
Version int
Kafka Schema configuration version.
CompatibilityLevel string
Kafka Schemas compatibility level. The possible values are BACKWARD, BACKWARD_TRANSITIVE, FORWARD, FORWARD_TRANSITIVE, FULL, FULL_TRANSITIVE and NONE.
Id string
The provider-assigned unique ID for this managed resource.
Project string
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
Schema string
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
SchemaType string
Kafka Schema configuration type. Defaults to AVRO. The possible values are AVRO, JSON and PROTOBUF.
ServiceName string
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
SubjectName string
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
Version int
Kafka Schema configuration version.
compatibilityLevel String
Kafka Schemas compatibility level. The possible values are BACKWARD, BACKWARD_TRANSITIVE, FORWARD, FORWARD_TRANSITIVE, FULL, FULL_TRANSITIVE and NONE.
id String
The provider-assigned unique ID for this managed resource.
project String
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
schema String
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
schemaType String
Kafka Schema configuration type. Defaults to AVRO. The possible values are AVRO, JSON and PROTOBUF.
serviceName String
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subjectName String
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
version Integer
Kafka Schema configuration version.
compatibilityLevel string
Kafka Schemas compatibility level. The possible values are BACKWARD, BACKWARD_TRANSITIVE, FORWARD, FORWARD_TRANSITIVE, FULL, FULL_TRANSITIVE and NONE.
id string
The provider-assigned unique ID for this managed resource.
project string
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
schema string
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
schemaType string
Kafka Schema configuration type. Defaults to AVRO. The possible values are AVRO, JSON and PROTOBUF.
serviceName string
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subjectName string
The Kafka Schema Subject name. Changing this property 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 and NONE.
id str
The provider-assigned unique ID for this managed resource.
project str
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property 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. The possible values are AVRO, JSON and PROTOBUF.
service_name str
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subject_name str
The Kafka Schema Subject name. Changing this property forces recreation of the resource.
version int
Kafka Schema configuration version.
compatibilityLevel String
Kafka Schemas compatibility level. The possible values are BACKWARD, BACKWARD_TRANSITIVE, FORWARD, FORWARD_TRANSITIVE, FULL, FULL_TRANSITIVE and NONE.
id String
The provider-assigned unique ID for this managed resource.
project String
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
schema String
Kafka Schema configuration. Should be a valid Avro, JSON, or Protobuf schema, depending on the schema type.
schemaType String
Kafka Schema configuration type. Defaults to AVRO. The possible values are AVRO, JSON and PROTOBUF.
serviceName String
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
subjectName String
The Kafka Schema Subject name. Changing this property 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.
Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi