@@ -36,17 +36,19 @@ class ControlForStartExecutionInput(object):
3636 'callback_args' : 'str' ,
3737 'client_token' : 'str' ,
3838 'enable_low_priority' : 'bool' ,
39- 'priority' : 'int'
39+ 'priority' : 'int' ,
40+ 'task_list_id' : 'str'
4041 }
4142
4243 attribute_map = {
4344 'callback_args' : 'CallbackArgs' ,
4445 'client_token' : 'ClientToken' ,
4546 'enable_low_priority' : 'EnableLowPriority' ,
46- 'priority' : 'Priority'
47+ 'priority' : 'Priority' ,
48+ 'task_list_id' : 'TaskListId'
4749 }
4850
49- def __init__ (self , callback_args = None , client_token = None , enable_low_priority = None , priority = None , _configuration = None ): # noqa: E501
51+ def __init__ (self , callback_args = None , client_token = None , enable_low_priority = None , priority = None , task_list_id = None , _configuration = None ): # noqa: E501
5052 """ControlForStartExecutionInput - a model defined in Swagger""" # noqa: E501
5153 if _configuration is None :
5254 _configuration = Configuration ()
@@ -56,6 +58,7 @@ def __init__(self, callback_args=None, client_token=None, enable_low_priority=No
5658 self ._client_token = None
5759 self ._enable_low_priority = None
5860 self ._priority = None
61+ self ._task_list_id = None
5962 self .discriminator = None
6063
6164 if callback_args is not None :
@@ -66,6 +69,8 @@ def __init__(self, callback_args=None, client_token=None, enable_low_priority=No
6669 self .enable_low_priority = enable_low_priority
6770 if priority is not None :
6871 self .priority = priority
72+ if task_list_id is not None :
73+ self .task_list_id = task_list_id
6974
7075 @property
7176 def callback_args (self ):
@@ -151,6 +156,27 @@ def priority(self, priority):
151156
152157 self ._priority = priority
153158
159+ @property
160+ def task_list_id (self ):
161+ """Gets the task_list_id of this ControlForStartExecutionInput. # noqa: E501
162+
163+
164+ :return: The task_list_id of this ControlForStartExecutionInput. # noqa: E501
165+ :rtype: str
166+ """
167+ return self ._task_list_id
168+
169+ @task_list_id .setter
170+ def task_list_id (self , task_list_id ):
171+ """Sets the task_list_id of this ControlForStartExecutionInput.
172+
173+
174+ :param task_list_id: The task_list_id of this ControlForStartExecutionInput. # noqa: E501
175+ :type: str
176+ """
177+
178+ self ._task_list_id = task_list_id
179+
154180 def to_dict (self ):
155181 """Returns the model properties as a dict"""
156182 result = {}
0 commit comments