1. Packages
  2. Confluent Cloud
  3. API Docs
  4. SchemaExporter
Confluent v1.46.0 published on Friday, May 10, 2024 by Pulumi

confluentcloud.SchemaExporter

Explore with Pulumi AI

confluentcloud logo
Confluent v1.46.0 published on Friday, May 10, 2024 by Pulumi

    Import

    You can import a Schema Exporter by using the Schema Registry cluster ID, Schema Exporter name in the format <Schema Registry cluster ID>/<Schema Exporter name>, for example:

    $ export IMPORT_SCHEMA_REGISTRY_API_KEY="<schema_registry_api_key>"

    $ export IMPORT_SCHEMA_REGISTRY_API_SECRET="<schema_registry_api_secret>"

    $ export IMPORT_SCHEMA_REGISTRY_REST_ENDPOINT="<schema_registry_rest_endpoint>"

    $ pulumi import confluentcloud:index/schemaExporter:SchemaExporter main lsrc-8wrx70/test-exporter
    

    !> Warning: Do not forget to delete terminal command history afterwards for security purposes.

    Create SchemaExporter Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SchemaExporter(name: string, args: SchemaExporterArgs, opts?: CustomResourceOptions);
    @overload
    def SchemaExporter(resource_name: str,
                       args: SchemaExporterArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SchemaExporter(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       destination_schema_registry_cluster: Optional[SchemaExporterDestinationSchemaRegistryClusterArgs] = None,
                       config: Optional[Mapping[str, str]] = None,
                       context: Optional[str] = None,
                       context_type: Optional[str] = None,
                       credentials: Optional[SchemaExporterCredentialsArgs] = None,
                       name: Optional[str] = None,
                       reset_on_update: Optional[bool] = None,
                       rest_endpoint: Optional[str] = None,
                       schema_registry_cluster: Optional[SchemaExporterSchemaRegistryClusterArgs] = None,
                       status: Optional[str] = None,
                       subject_rename_format: Optional[str] = None,
                       subjects: Optional[Sequence[str]] = None)
    func NewSchemaExporter(ctx *Context, name string, args SchemaExporterArgs, opts ...ResourceOption) (*SchemaExporter, error)
    public SchemaExporter(string name, SchemaExporterArgs args, CustomResourceOptions? opts = null)
    public SchemaExporter(String name, SchemaExporterArgs args)
    public SchemaExporter(String name, SchemaExporterArgs args, CustomResourceOptions options)
    
    type: confluentcloud:SchemaExporter
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SchemaExporterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SchemaExporterArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SchemaExporterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SchemaExporterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SchemaExporterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var schemaExporterResource = new ConfluentCloud.SchemaExporter("schemaExporterResource", new()
    {
        DestinationSchemaRegistryCluster = new ConfluentCloud.Inputs.SchemaExporterDestinationSchemaRegistryClusterArgs
        {
            Credentials = new ConfluentCloud.Inputs.SchemaExporterDestinationSchemaRegistryClusterCredentialsArgs
            {
                Key = "string",
                Secret = "string",
            },
            RestEndpoint = "string",
        },
        Config = 
        {
            { "string", "string" },
        },
        Context = "string",
        ContextType = "string",
        Credentials = new ConfluentCloud.Inputs.SchemaExporterCredentialsArgs
        {
            Key = "string",
            Secret = "string",
        },
        Name = "string",
        ResetOnUpdate = false,
        RestEndpoint = "string",
        SchemaRegistryCluster = new ConfluentCloud.Inputs.SchemaExporterSchemaRegistryClusterArgs
        {
            Id = "string",
        },
        Status = "string",
        SubjectRenameFormat = "string",
        Subjects = new[]
        {
            "string",
        },
    });
    
    example, err := confluentcloud.NewSchemaExporter(ctx, "schemaExporterResource", &confluentcloud.SchemaExporterArgs{
    	DestinationSchemaRegistryCluster: &confluentcloud.SchemaExporterDestinationSchemaRegistryClusterArgs{
    		Credentials: &confluentcloud.SchemaExporterDestinationSchemaRegistryClusterCredentialsArgs{
    			Key:    pulumi.String("string"),
    			Secret: pulumi.String("string"),
    		},
    		RestEndpoint: pulumi.String("string"),
    	},
    	Config: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Context:     pulumi.String("string"),
    	ContextType: pulumi.String("string"),
    	Credentials: &confluentcloud.SchemaExporterCredentialsArgs{
    		Key:    pulumi.String("string"),
    		Secret: pulumi.String("string"),
    	},
    	Name:          pulumi.String("string"),
    	ResetOnUpdate: pulumi.Bool(false),
    	RestEndpoint:  pulumi.String("string"),
    	SchemaRegistryCluster: &confluentcloud.SchemaExporterSchemaRegistryClusterArgs{
    		Id: pulumi.String("string"),
    	},
    	Status:              pulumi.String("string"),
    	SubjectRenameFormat: pulumi.String("string"),
    	Subjects: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var schemaExporterResource = new SchemaExporter("schemaExporterResource", SchemaExporterArgs.builder()
        .destinationSchemaRegistryCluster(SchemaExporterDestinationSchemaRegistryClusterArgs.builder()
            .credentials(SchemaExporterDestinationSchemaRegistryClusterCredentialsArgs.builder()
                .key("string")
                .secret("string")
                .build())
            .restEndpoint("string")
            .build())
        .config(Map.of("string", "string"))
        .context("string")
        .contextType("string")
        .credentials(SchemaExporterCredentialsArgs.builder()
            .key("string")
            .secret("string")
            .build())
        .name("string")
        .resetOnUpdate(false)
        .restEndpoint("string")
        .schemaRegistryCluster(SchemaExporterSchemaRegistryClusterArgs.builder()
            .id("string")
            .build())
        .status("string")
        .subjectRenameFormat("string")
        .subjects("string")
        .build());
    
    schema_exporter_resource = confluentcloud.SchemaExporter("schemaExporterResource",
        destination_schema_registry_cluster=confluentcloud.SchemaExporterDestinationSchemaRegistryClusterArgs(
            credentials=confluentcloud.SchemaExporterDestinationSchemaRegistryClusterCredentialsArgs(
                key="string",
                secret="string",
            ),
            rest_endpoint="string",
        ),
        config={
            "string": "string",
        },
        context="string",
        context_type="string",
        credentials=confluentcloud.SchemaExporterCredentialsArgs(
            key="string",
            secret="string",
        ),
        name="string",
        reset_on_update=False,
        rest_endpoint="string",
        schema_registry_cluster=confluentcloud.SchemaExporterSchemaRegistryClusterArgs(
            id="string",
        ),
        status="string",
        subject_rename_format="string",
        subjects=["string"])
    
    const schemaExporterResource = new confluentcloud.SchemaExporter("schemaExporterResource", {
        destinationSchemaRegistryCluster: {
            credentials: {
                key: "string",
                secret: "string",
            },
            restEndpoint: "string",
        },
        config: {
            string: "string",
        },
        context: "string",
        contextType: "string",
        credentials: {
            key: "string",
            secret: "string",
        },
        name: "string",
        resetOnUpdate: false,
        restEndpoint: "string",
        schemaRegistryCluster: {
            id: "string",
        },
        status: "string",
        subjectRenameFormat: "string",
        subjects: ["string"],
    });
    
    type: confluentcloud:SchemaExporter
    properties:
        config:
            string: string
        context: string
        contextType: string
        credentials:
            key: string
            secret: string
        destinationSchemaRegistryCluster:
            credentials:
                key: string
                secret: string
            restEndpoint: string
        name: string
        resetOnUpdate: false
        restEndpoint: string
        schemaRegistryCluster:
            id: string
        status: string
        subjectRenameFormat: string
        subjects:
            - string
    

    SchemaExporter Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The SchemaExporter resource accepts the following input properties:

    DestinationSchemaRegistryCluster Pulumi.ConfluentCloud.Inputs.SchemaExporterDestinationSchemaRegistryCluster
    Config Dictionary<string, string>
    Block for custom nonsensitive configuration properties:
    Context string
    Customized context of the exporter if context_type is set to CUSTOM.
    ContextType string
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    Credentials Pulumi.ConfluentCloud.Inputs.SchemaExporterCredentials
    The Cluster API Credentials.
    Name string
    Name of the Schema Exporter.
    ResetOnUpdate bool
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    RestEndpoint string
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    SchemaRegistryCluster Pulumi.ConfluentCloud.Inputs.SchemaExporterSchemaRegistryCluster
    Status string
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    SubjectRenameFormat string
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    Subjects List<string>
    Name of each exporter subject.
    DestinationSchemaRegistryCluster SchemaExporterDestinationSchemaRegistryClusterArgs
    Config map[string]string
    Block for custom nonsensitive configuration properties:
    Context string
    Customized context of the exporter if context_type is set to CUSTOM.
    ContextType string
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    Credentials SchemaExporterCredentialsArgs
    The Cluster API Credentials.
    Name string
    Name of the Schema Exporter.
    ResetOnUpdate bool
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    RestEndpoint string
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    SchemaRegistryCluster SchemaExporterSchemaRegistryClusterArgs
    Status string
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    SubjectRenameFormat string
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    Subjects []string
    Name of each exporter subject.
    destinationSchemaRegistryCluster SchemaExporterDestinationSchemaRegistryCluster
    config Map<String,String>
    Block for custom nonsensitive configuration properties:
    context String
    Customized context of the exporter if context_type is set to CUSTOM.
    contextType String
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials SchemaExporterCredentials
    The Cluster API Credentials.
    name String
    Name of the Schema Exporter.
    resetOnUpdate Boolean
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    restEndpoint String
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schemaRegistryCluster SchemaExporterSchemaRegistryCluster
    status String
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subjectRenameFormat String
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects List<String>
    Name of each exporter subject.
    destinationSchemaRegistryCluster SchemaExporterDestinationSchemaRegistryCluster
    config {[key: string]: string}
    Block for custom nonsensitive configuration properties:
    context string
    Customized context of the exporter if context_type is set to CUSTOM.
    contextType string
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials SchemaExporterCredentials
    The Cluster API Credentials.
    name string
    Name of the Schema Exporter.
    resetOnUpdate boolean
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    restEndpoint string
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schemaRegistryCluster SchemaExporterSchemaRegistryCluster
    status string
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subjectRenameFormat string
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects string[]
    Name of each exporter subject.
    destination_schema_registry_cluster SchemaExporterDestinationSchemaRegistryClusterArgs
    config Mapping[str, str]
    Block for custom nonsensitive configuration properties:
    context str
    Customized context of the exporter if context_type is set to CUSTOM.
    context_type str
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials SchemaExporterCredentialsArgs
    The Cluster API Credentials.
    name str
    Name of the Schema Exporter.
    reset_on_update bool
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    rest_endpoint str
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schema_registry_cluster SchemaExporterSchemaRegistryClusterArgs
    status str
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subject_rename_format str
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects Sequence[str]
    Name of each exporter subject.
    destinationSchemaRegistryCluster Property Map
    config Map<String>
    Block for custom nonsensitive configuration properties:
    context String
    Customized context of the exporter if context_type is set to CUSTOM.
    contextType String
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials Property Map
    The Cluster API Credentials.
    name String
    Name of the Schema Exporter.
    resetOnUpdate Boolean
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    restEndpoint String
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schemaRegistryCluster Property Map
    status String
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subjectRenameFormat String
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects List<String>
    Name of each exporter subject.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SchemaExporter resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SchemaExporter Resource

    Get an existing SchemaExporter resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SchemaExporterState, opts?: CustomResourceOptions): SchemaExporter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[Mapping[str, str]] = None,
            context: Optional[str] = None,
            context_type: Optional[str] = None,
            credentials: Optional[SchemaExporterCredentialsArgs] = None,
            destination_schema_registry_cluster: Optional[SchemaExporterDestinationSchemaRegistryClusterArgs] = None,
            name: Optional[str] = None,
            reset_on_update: Optional[bool] = None,
            rest_endpoint: Optional[str] = None,
            schema_registry_cluster: Optional[SchemaExporterSchemaRegistryClusterArgs] = None,
            status: Optional[str] = None,
            subject_rename_format: Optional[str] = None,
            subjects: Optional[Sequence[str]] = None) -> SchemaExporter
    func GetSchemaExporter(ctx *Context, name string, id IDInput, state *SchemaExporterState, opts ...ResourceOption) (*SchemaExporter, error)
    public static SchemaExporter Get(string name, Input<string> id, SchemaExporterState? state, CustomResourceOptions? opts = null)
    public static SchemaExporter get(String name, Output<String> id, SchemaExporterState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Config Dictionary<string, string>
    Block for custom nonsensitive configuration properties:
    Context string
    Customized context of the exporter if context_type is set to CUSTOM.
    ContextType string
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    Credentials Pulumi.ConfluentCloud.Inputs.SchemaExporterCredentials
    The Cluster API Credentials.
    DestinationSchemaRegistryCluster Pulumi.ConfluentCloud.Inputs.SchemaExporterDestinationSchemaRegistryCluster
    Name string
    Name of the Schema Exporter.
    ResetOnUpdate bool
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    RestEndpoint string
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    SchemaRegistryCluster Pulumi.ConfluentCloud.Inputs.SchemaExporterSchemaRegistryCluster
    Status string
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    SubjectRenameFormat string
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    Subjects List<string>
    Name of each exporter subject.
    Config map[string]string
    Block for custom nonsensitive configuration properties:
    Context string
    Customized context of the exporter if context_type is set to CUSTOM.
    ContextType string
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    Credentials SchemaExporterCredentialsArgs
    The Cluster API Credentials.
    DestinationSchemaRegistryCluster SchemaExporterDestinationSchemaRegistryClusterArgs
    Name string
    Name of the Schema Exporter.
    ResetOnUpdate bool
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    RestEndpoint string
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    SchemaRegistryCluster SchemaExporterSchemaRegistryClusterArgs
    Status string
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    SubjectRenameFormat string
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    Subjects []string
    Name of each exporter subject.
    config Map<String,String>
    Block for custom nonsensitive configuration properties:
    context String
    Customized context of the exporter if context_type is set to CUSTOM.
    contextType String
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials SchemaExporterCredentials
    The Cluster API Credentials.
    destinationSchemaRegistryCluster SchemaExporterDestinationSchemaRegistryCluster
    name String
    Name of the Schema Exporter.
    resetOnUpdate Boolean
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    restEndpoint String
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schemaRegistryCluster SchemaExporterSchemaRegistryCluster
    status String
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subjectRenameFormat String
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects List<String>
    Name of each exporter subject.
    config {[key: string]: string}
    Block for custom nonsensitive configuration properties:
    context string
    Customized context of the exporter if context_type is set to CUSTOM.
    contextType string
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials SchemaExporterCredentials
    The Cluster API Credentials.
    destinationSchemaRegistryCluster SchemaExporterDestinationSchemaRegistryCluster
    name string
    Name of the Schema Exporter.
    resetOnUpdate boolean
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    restEndpoint string
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schemaRegistryCluster SchemaExporterSchemaRegistryCluster
    status string
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subjectRenameFormat string
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects string[]
    Name of each exporter subject.
    config Mapping[str, str]
    Block for custom nonsensitive configuration properties:
    context str
    Customized context of the exporter if context_type is set to CUSTOM.
    context_type str
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials SchemaExporterCredentialsArgs
    The Cluster API Credentials.
    destination_schema_registry_cluster SchemaExporterDestinationSchemaRegistryClusterArgs
    name str
    Name of the Schema Exporter.
    reset_on_update bool
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    rest_endpoint str
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schema_registry_cluster SchemaExporterSchemaRegistryClusterArgs
    status str
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subject_rename_format str
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects Sequence[str]
    Name of each exporter subject.
    config Map<String>
    Block for custom nonsensitive configuration properties:
    context String
    Customized context of the exporter if context_type is set to CUSTOM.
    contextType String
    Context type of the exporter. Accepted values are: CUSTOM, NONE or AUTO. Defaults to AUTO.
    credentials Property Map
    The Cluster API Credentials.
    destinationSchemaRegistryCluster Property Map
    name String
    Name of the Schema Exporter.
    resetOnUpdate Boolean
    The flag to control whether to reset the exporter when updating configs. Defaults to false.
    restEndpoint String
    The REST endpoint of the Schema Registry cluster, for example, https://psrc-00000.us-central1.gcp.confluent.cloud:443).
    schemaRegistryCluster Property Map
    status String
    The status of the schema exporter. Accepted values are: RUNNING and PAUSED.
    subjectRenameFormat String
    Format string for the subject name in the destination cluster, which may contain ${subject} as a placeholder for the originating subject name. For example, dc_${subject} for the subject orders will map to the destination subject name dc_orders.
    subjects List<String>
    Name of each exporter subject.

    Supporting Types

    SchemaExporterCredentials, SchemaExporterCredentialsArgs

    Key string
    The Schema Registry API Key.
    Secret string
    The Schema Registry API Secret.
    Key string
    The Schema Registry API Key.
    Secret string
    The Schema Registry API Secret.
    key String
    The Schema Registry API Key.
    secret String
    The Schema Registry API Secret.
    key string
    The Schema Registry API Key.
    secret string
    The Schema Registry API Secret.
    key str
    The Schema Registry API Key.
    secret str
    The Schema Registry API Secret.
    key String
    The Schema Registry API Key.
    secret String
    The Schema Registry API Secret.

    SchemaExporterDestinationSchemaRegistryCluster, SchemaExporterDestinationSchemaRegistryClusterArgs

    Credentials Pulumi.ConfluentCloud.Inputs.SchemaExporterDestinationSchemaRegistryClusterCredentials
    RestEndpoint string
    The REST endpoint of the destination Schema Registry cluster, for example, https://pkc-00000.us-central1.gcp.confluent.cloud:443).
    Credentials SchemaExporterDestinationSchemaRegistryClusterCredentials
    RestEndpoint string
    The REST endpoint of the destination Schema Registry cluster, for example, https://pkc-00000.us-central1.gcp.confluent.cloud:443).
    credentials SchemaExporterDestinationSchemaRegistryClusterCredentials
    restEndpoint String
    The REST endpoint of the destination Schema Registry cluster, for example, https://pkc-00000.us-central1.gcp.confluent.cloud:443).
    credentials SchemaExporterDestinationSchemaRegistryClusterCredentials
    restEndpoint string
    The REST endpoint of the destination Schema Registry cluster, for example, https://pkc-00000.us-central1.gcp.confluent.cloud:443).
    credentials SchemaExporterDestinationSchemaRegistryClusterCredentials
    rest_endpoint str
    The REST endpoint of the destination Schema Registry cluster, for example, https://pkc-00000.us-central1.gcp.confluent.cloud:443).
    credentials Property Map
    restEndpoint String
    The REST endpoint of the destination Schema Registry cluster, for example, https://pkc-00000.us-central1.gcp.confluent.cloud:443).

    SchemaExporterDestinationSchemaRegistryClusterCredentials, SchemaExporterDestinationSchemaRegistryClusterCredentialsArgs

    Key string
    The Schema Registry API Key.
    Secret string
    The Schema Registry API Secret.
    Key string
    The Schema Registry API Key.
    Secret string
    The Schema Registry API Secret.
    key String
    The Schema Registry API Key.
    secret String
    The Schema Registry API Secret.
    key string
    The Schema Registry API Key.
    secret string
    The Schema Registry API Secret.
    key str
    The Schema Registry API Key.
    secret str
    The Schema Registry API Secret.
    key String
    The Schema Registry API Key.
    secret String
    The Schema Registry API Secret.

    SchemaExporterSchemaRegistryCluster, SchemaExporterSchemaRegistryClusterArgs

    Id string
    The ID of the Schema Registry cluster, for example, lsrc-abc123.
    Id string
    The ID of the Schema Registry cluster, for example, lsrc-abc123.
    id String
    The ID of the Schema Registry cluster, for example, lsrc-abc123.
    id string
    The ID of the Schema Registry cluster, for example, lsrc-abc123.
    id str
    The ID of the Schema Registry cluster, for example, lsrc-abc123.
    id String
    The ID of the Schema Registry cluster, for example, lsrc-abc123.

    Package Details

    Repository
    Confluent Cloud pulumi/pulumi-confluentcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the confluent Terraform Provider.
    confluentcloud logo
    Confluent v1.46.0 published on Friday, May 10, 2024 by Pulumi