github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vcdss/set_kafka_config_group_detail_request.go (about)

     1  /*
     2   * api
     3   *
     4   * Cloud Data Streaming Service Open API<br/>https://clouddatastreamingservice.apigw.ntruss.com/api/v1
     5   *
     6   * API version: 2021-12-21T11:54:01Z
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  
    10  package vcdss
    11  
    12  type SetKafkaConfigGroupDetailRequest struct {
    13  	KafkaVersionCode          string `json:"kafkaVersionCode,omitempty"`
    14  	AutoCreateTopicsEnable    bool   `json:"autoCreateTopicsEnable,omitempty"`
    15  	DeleteTopicEnable         bool   `json:"deleteTopicEnable,omitempty"`
    16  	LogCleanerEnable          bool   `json:"logCleanerEnable,omitempty"`
    17  	LogCleanupPolicy          string `json:"logCleanupPolicy,omitempty"`
    18  	LogCleanerThreads         int32  `json:"logCleanerThreads,omitempty"`
    19  	LogFlushIntervalMessages  int32  `json:"logFlushIntervalMessages,omitempty"`
    20  	LogRetentionBytes         int32  `json:"logRetentionBytes,omitempty"`
    21  	LogRetentionHours         int32  `json:"logRetentionHours,omitempty"`
    22  	LogSegmentBytes           int32  `json:"logSegmentBytes,omitempty"`
    23  	NumIoThreads              int32  `json:"numIoThreads,omitempty"`
    24  	NumNetworkThreads         int32  `json:"numNetworkThreads,omitempty"`
    25  	NumPartitions             int32  `json:"numPartitions,omitempty"`
    26  	AllowEveryoneIfNoAclFound bool   `json:"allowEveryoneIfNoAclFound,omitempty"`
    27  }