1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//!
//! # Create Topics
//!
//! Public API to request the SC to create one or more topics.
//!
//!

use kf_protocol::api::Request;
use kf_protocol::derive::{Decode, Encode};

use flv_metadata::topic::TopicSpec as TopicConfigMetadata;

use crate::FlvResponseMessage;
use crate::ScApiKey;

// -----------------------------------
// FlvCreateTopicsRequest
// -----------------------------------

#[derive(Encode, Decode, Default, Debug)]
pub struct FlvCreateTopicsRequest {
    /// A list of one or more topics to be created.
    pub topics: Vec<FlvCreateTopicRequest>,

    /// Validate-only flag to prevent topic generation. Method is particularly useful
    /// to validate custom replicas.
    pub validate_only: bool,
}

#[derive(Encode, Decode, Default, Debug)]
pub struct FlvCreateTopicRequest {
    /// The name of the topic.
    pub name: String,

    /// The Topic Metadata
    pub topic: TopicConfigMetadata,
}

// -----------------------------------
// FlvCreateTopicsResponse
// -----------------------------------

#[derive(Encode, Decode, Default, Debug)]
pub struct FlvCreateTopicsResponse {
    /// The topic creation result messages.
    pub results: Vec<FlvResponseMessage>,
}

// -----------------------------------
// Implementation - FlvCreateTopicsRequest
// -----------------------------------

impl Request for FlvCreateTopicsRequest {
    const API_KEY: u16 = ScApiKey::FlvCreateTopics as u16;
    const DEFAULT_API_VERSION: i16 = 1;
    type Response = FlvCreateTopicsResponse;
}