All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.streamthoughts.jikkou.extension.aiven.api.data.KafkaTopicInfoCreate Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright (c) The original authors
 *
 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package io.streamthoughts.jikkou.extension.aiven.api.data;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.streamthoughts.jikkou.core.annotation.Reflectable;
import java.util.List;
import java.util.Map;

/**
 *
 */
@Reflectable
public record KafkaTopicInfoCreate(
    @JsonProperty("topic_name") String topicName,
    @JsonProperty("partitions") Integer partitions,
    @JsonProperty("replication") Integer replication,
    @JsonProperty("config") Map config,
    @JsonProperty("tags") List tags
) {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy