@@ -33,6 +33,8 @@ class CreateKafkaTriggerResponse(object):
3333 and the value is json key in definition.
3434 """
3535 swagger_types = {
36+ 'batch_flush_duration_milliseconds' : 'int' ,
37+ 'batch_size' : 'int' ,
3638 'consumer_group' : 'str' ,
3739 'creation_time' : 'str' ,
3840 'description' : 'str' ,
@@ -49,6 +51,8 @@ class CreateKafkaTriggerResponse(object):
4951 }
5052
5153 attribute_map = {
54+ 'batch_flush_duration_milliseconds' : 'BatchFlushDurationMilliseconds' ,
55+ 'batch_size' : 'BatchSize' ,
5256 'consumer_group' : 'ConsumerGroup' ,
5357 'creation_time' : 'CreationTime' ,
5458 'description' : 'Description' ,
@@ -64,12 +68,14 @@ class CreateKafkaTriggerResponse(object):
6468 'topic_name' : 'TopicName'
6569 }
6670
67- def __init__ (self , consumer_group = None , creation_time = None , description = None , enabled = None , function_id = None , id = None , last_update_time = None , maximum_retry_attempts = None , mq_instance_id = None , name = None , starting_position = None , status = None , topic_name = None , _configuration = None ): # noqa: E501
71+ def __init__ (self , batch_flush_duration_milliseconds = None , batch_size = None , consumer_group = None , creation_time = None , description = None , enabled = None , function_id = None , id = None , last_update_time = None , maximum_retry_attempts = None , mq_instance_id = None , name = None , starting_position = None , status = None , topic_name = None , _configuration = None ): # noqa: E501
6872 """CreateKafkaTriggerResponse - a model defined in Swagger""" # noqa: E501
6973 if _configuration is None :
7074 _configuration = Configuration ()
7175 self ._configuration = _configuration
7276
77+ self ._batch_flush_duration_milliseconds = None
78+ self ._batch_size = None
7379 self ._consumer_group = None
7480 self ._creation_time = None
7581 self ._description = None
@@ -85,6 +91,10 @@ def __init__(self, consumer_group=None, creation_time=None, description=None, en
8591 self ._topic_name = None
8692 self .discriminator = None
8793
94+ if batch_flush_duration_milliseconds is not None :
95+ self .batch_flush_duration_milliseconds = batch_flush_duration_milliseconds
96+ if batch_size is not None :
97+ self .batch_size = batch_size
8898 if consumer_group is not None :
8999 self .consumer_group = consumer_group
90100 if creation_time is not None :
@@ -112,6 +122,48 @@ def __init__(self, consumer_group=None, creation_time=None, description=None, en
112122 if topic_name is not None :
113123 self .topic_name = topic_name
114124
125+ @property
126+ def batch_flush_duration_milliseconds (self ):
127+ """Gets the batch_flush_duration_milliseconds of this CreateKafkaTriggerResponse. # noqa: E501
128+
129+
130+ :return: The batch_flush_duration_milliseconds of this CreateKafkaTriggerResponse. # noqa: E501
131+ :rtype: int
132+ """
133+ return self ._batch_flush_duration_milliseconds
134+
135+ @batch_flush_duration_milliseconds .setter
136+ def batch_flush_duration_milliseconds (self , batch_flush_duration_milliseconds ):
137+ """Sets the batch_flush_duration_milliseconds of this CreateKafkaTriggerResponse.
138+
139+
140+ :param batch_flush_duration_milliseconds: The batch_flush_duration_milliseconds of this CreateKafkaTriggerResponse. # noqa: E501
141+ :type: int
142+ """
143+
144+ self ._batch_flush_duration_milliseconds = batch_flush_duration_milliseconds
145+
146+ @property
147+ def batch_size (self ):
148+ """Gets the batch_size of this CreateKafkaTriggerResponse. # noqa: E501
149+
150+
151+ :return: The batch_size of this CreateKafkaTriggerResponse. # noqa: E501
152+ :rtype: int
153+ """
154+ return self ._batch_size
155+
156+ @batch_size .setter
157+ def batch_size (self , batch_size ):
158+ """Sets the batch_size of this CreateKafkaTriggerResponse.
159+
160+
161+ :param batch_size: The batch_size of this CreateKafkaTriggerResponse. # noqa: E501
162+ :type: int
163+ """
164+
165+ self ._batch_size = batch_size
166+
115167 @property
116168 def consumer_group (self ):
117169 """Gets the consumer_group of this CreateKafkaTriggerResponse. # noqa: E501
0 commit comments