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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Pulsar Admin REST API
 *
 * This provides the REST API for admin operations
 *
 * The version of the OpenAPI document: v2
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PersistentTopicStats {
    #[serde(rename = "averageMsgSize", skip_serializing_if = "Option::is_none")]
    pub average_msg_size: Option<f64>,
    #[serde(rename = "backlogQuotaLimitSize", skip_serializing_if = "Option::is_none")]
    pub backlog_quota_limit_size: Option<i64>,
    #[serde(rename = "backlogQuotaLimitTime", skip_serializing_if = "Option::is_none")]
    pub backlog_quota_limit_time: Option<i64>,
    #[serde(rename = "backlogSize", skip_serializing_if = "Option::is_none")]
    pub backlog_size: Option<i64>,
    #[serde(rename = "bytesInCounter", skip_serializing_if = "Option::is_none")]
    pub bytes_in_counter: Option<i64>,
    #[serde(rename = "bytesOutCounter", skip_serializing_if = "Option::is_none")]
    pub bytes_out_counter: Option<i64>,
    #[serde(rename = "compaction", skip_serializing_if = "Option::is_none")]
    pub compaction: Option<Box<models::CompactionStats>>,
    #[serde(rename = "deduplicationStatus", skip_serializing_if = "Option::is_none")]
    pub deduplication_status: Option<String>,
    #[serde(rename = "delayedMessageIndexSizeInBytes", skip_serializing_if = "Option::is_none")]
    pub delayed_message_index_size_in_bytes: Option<i64>,
    #[serde(rename = "earliestMsgPublishTimeInBacklogs", skip_serializing_if = "Option::is_none")]
    pub earliest_msg_publish_time_in_backlogs: Option<i64>,
    #[serde(rename = "msgChunkPublished", skip_serializing_if = "Option::is_none")]
    pub msg_chunk_published: Option<bool>,
    #[serde(rename = "msgInCounter", skip_serializing_if = "Option::is_none")]
    pub msg_in_counter: Option<i64>,
    #[serde(rename = "msgOutCounter", skip_serializing_if = "Option::is_none")]
    pub msg_out_counter: Option<i64>,
    #[serde(rename = "msgRateIn", skip_serializing_if = "Option::is_none")]
    pub msg_rate_in: Option<f64>,
    #[serde(rename = "msgRateOut", skip_serializing_if = "Option::is_none")]
    pub msg_rate_out: Option<f64>,
    #[serde(rename = "msgThroughputIn", skip_serializing_if = "Option::is_none")]
    pub msg_throughput_in: Option<f64>,
    #[serde(rename = "msgThroughputOut", skip_serializing_if = "Option::is_none")]
    pub msg_throughput_out: Option<f64>,
    #[serde(rename = "nonContiguousDeletedMessagesRanges", skip_serializing_if = "Option::is_none")]
    pub non_contiguous_deleted_messages_ranges: Option<i32>,
    #[serde(rename = "nonContiguousDeletedMessagesRangesSerializedSize", skip_serializing_if = "Option::is_none")]
    pub non_contiguous_deleted_messages_ranges_serialized_size: Option<i32>,
    #[serde(rename = "offloadedStorageSize", skip_serializing_if = "Option::is_none")]
    pub offloaded_storage_size: Option<i64>,
    #[serde(rename = "oldestBacklogMessageAgeSeconds", skip_serializing_if = "Option::is_none")]
    pub oldest_backlog_message_age_seconds: Option<i64>,
    #[serde(rename = "oldestBacklogMessageSubscriptionName", skip_serializing_if = "Option::is_none")]
    pub oldest_backlog_message_subscription_name: Option<String>,
    #[serde(rename = "ownerBroker", skip_serializing_if = "Option::is_none")]
    pub owner_broker: Option<String>,
    #[serde(rename = "publishers", skip_serializing_if = "Option::is_none")]
    pub publishers: Option<Vec<models::PublisherStats>>,
    #[serde(rename = "replication", skip_serializing_if = "Option::is_none")]
    pub replication: Option<std::collections::HashMap<String, models::ReplicatorStats>>,
    #[serde(rename = "storageSize", skip_serializing_if = "Option::is_none")]
    pub storage_size: Option<i64>,
    #[serde(rename = "subscriptions", skip_serializing_if = "Option::is_none")]
    pub subscriptions: Option<std::collections::HashMap<String, models::SubscriptionStats>>,
    #[serde(rename = "topicEpoch", skip_serializing_if = "Option::is_none")]
    pub topic_epoch: Option<i64>,
    #[serde(rename = "waitingPublishers", skip_serializing_if = "Option::is_none")]
    pub waiting_publishers: Option<i32>,
}

impl PersistentTopicStats {
    pub fn new() -> PersistentTopicStats {
        PersistentTopicStats {
            average_msg_size: None,
            backlog_quota_limit_size: None,
            backlog_quota_limit_time: None,
            backlog_size: None,
            bytes_in_counter: None,
            bytes_out_counter: None,
            compaction: None,
            deduplication_status: None,
            delayed_message_index_size_in_bytes: None,
            earliest_msg_publish_time_in_backlogs: None,
            msg_chunk_published: None,
            msg_in_counter: None,
            msg_out_counter: None,
            msg_rate_in: None,
            msg_rate_out: None,
            msg_throughput_in: None,
            msg_throughput_out: None,
            non_contiguous_deleted_messages_ranges: None,
            non_contiguous_deleted_messages_ranges_serialized_size: None,
            offloaded_storage_size: None,
            oldest_backlog_message_age_seconds: None,
            oldest_backlog_message_subscription_name: None,
            owner_broker: None,
            publishers: None,
            replication: None,
            storage_size: None,
            subscriptions: None,
            topic_epoch: None,
            waiting_publishers: None,
        }
    }
}