@@ -2826,6 +2826,8 @@ class TaskDefinition(Model):
28262826 :type groups: list of :class:`TaskGroupDefinition <azure.devops.v5_1.task_agent.models.TaskGroupDefinition>`
28272827 :param help_mark_down:
28282828 :type help_mark_down: str
2829+ :param help_url:
2830+ :type help_url: str
28292831 :param host_type:
28302832 :type host_type: str
28312833 :param icon_url:
@@ -2890,6 +2892,7 @@ class TaskDefinition(Model):
28902892 'friendly_name' : {'key' : 'friendlyName' , 'type' : 'str' },
28912893 'groups' : {'key' : 'groups' , 'type' : '[TaskGroupDefinition]' },
28922894 'help_mark_down' : {'key' : 'helpMarkDown' , 'type' : 'str' },
2895+ 'help_url' : {'key' : 'helpUrl' , 'type' : 'str' },
28932896 'host_type' : {'key' : 'hostType' , 'type' : 'str' },
28942897 'icon_url' : {'key' : 'iconUrl' , 'type' : 'str' },
28952898 'id' : {'key' : 'id' , 'type' : 'str' },
@@ -2914,7 +2917,7 @@ class TaskDefinition(Model):
29142917 'visibility' : {'key' : 'visibility' , 'type' : '[str]' }
29152918 }
29162919
2917- def __init__ (self , agent_execution = None , author = None , category = None , contents_uploaded = None , contribution_identifier = None , contribution_version = None , data_source_bindings = None , definition_type = None , demands = None , deprecated = None , description = None , disabled = None , ecosystem = None , execution = None , friendly_name = None , groups = None , help_mark_down = None , host_type = None , icon_url = None , id = None , inputs = None , instance_name_format = None , minimum_agent_version = None , name = None , output_variables = None , package_location = None , package_type = None , post_job_execution = None , pre_job_execution = None , preview = None , release_notes = None , runs_on = None , satisfies = None , server_owned = None , show_environment_variables = None , source_definitions = None , source_location = None , version = None , visibility = None ):
2920+ def __init__ (self , agent_execution = None , author = None , category = None , contents_uploaded = None , contribution_identifier = None , contribution_version = None , data_source_bindings = None , definition_type = None , demands = None , deprecated = None , description = None , disabled = None , ecosystem = None , execution = None , friendly_name = None , groups = None , help_mark_down = None , help_url = None , host_type = None , icon_url = None , id = None , inputs = None , instance_name_format = None , minimum_agent_version = None , name = None , output_variables = None , package_location = None , package_type = None , post_job_execution = None , pre_job_execution = None , preview = None , release_notes = None , runs_on = None , satisfies = None , server_owned = None , show_environment_variables = None , source_definitions = None , source_location = None , version = None , visibility = None ):
29182921 super (TaskDefinition , self ).__init__ ()
29192922 self .agent_execution = agent_execution
29202923 self .author = author
@@ -2933,6 +2936,7 @@ def __init__(self, agent_execution=None, author=None, category=None, contents_up
29332936 self .friendly_name = friendly_name
29342937 self .groups = groups
29352938 self .help_mark_down = help_mark_down
2939+ self .help_url = help_url
29362940 self .host_type = host_type
29372941 self .icon_url = icon_url
29382942 self .id = id
@@ -3074,6 +3078,8 @@ class TaskGroup(TaskDefinition):
30743078 :type groups: list of :class:`TaskGroupDefinition <azure.devops.v5_1.task_agent.models.TaskGroupDefinition>`
30753079 :param help_mark_down:
30763080 :type help_mark_down: str
3081+ :param help_url:
3082+ :type help_url: str
30773083 :param host_type:
30783084 :type host_type: str
30793085 :param icon_url:
@@ -3158,6 +3164,7 @@ class TaskGroup(TaskDefinition):
31583164 'friendly_name' : {'key' : 'friendlyName' , 'type' : 'str' },
31593165 'groups' : {'key' : 'groups' , 'type' : '[TaskGroupDefinition]' },
31603166 'help_mark_down' : {'key' : 'helpMarkDown' , 'type' : 'str' },
3167+ 'help_url' : {'key' : 'helpUrl' , 'type' : 'str' },
31613168 'host_type' : {'key' : 'hostType' , 'type' : 'str' },
31623169 'icon_url' : {'key' : 'iconUrl' , 'type' : 'str' },
31633170 'id' : {'key' : 'id' , 'type' : 'str' },
@@ -3192,8 +3199,8 @@ class TaskGroup(TaskDefinition):
31923199 'tasks' : {'key' : 'tasks' , 'type' : '[TaskGroupStep]' }
31933200 }
31943201
3195- def __init__ (self , agent_execution = None , author = None , category = None , contents_uploaded = None , contribution_identifier = None , contribution_version = None , data_source_bindings = None , definition_type = None , demands = None , deprecated = None , description = None , disabled = None , ecosystem = None , execution = None , friendly_name = None , groups = None , help_mark_down = None , host_type = None , icon_url = None , id = None , inputs = None , instance_name_format = None , minimum_agent_version = None , name = None , output_variables = None , package_location = None , package_type = None , post_job_execution = None , pre_job_execution = None , preview = None , release_notes = None , runs_on = None , satisfies = None , server_owned = None , show_environment_variables = None , source_definitions = None , source_location = None , version = None , visibility = None , comment = None , created_by = None , created_on = None , deleted = None , modified_by = None , modified_on = None , owner = None , parent_definition_id = None , revision = None , tasks = None ):
3196- super (TaskGroup , self ).__init__ (agent_execution = agent_execution , author = author , category = category , contents_uploaded = contents_uploaded , contribution_identifier = contribution_identifier , contribution_version = contribution_version , data_source_bindings = data_source_bindings , definition_type = definition_type , demands = demands , deprecated = deprecated , description = description , disabled = disabled , ecosystem = ecosystem , execution = execution , friendly_name = friendly_name , groups = groups , help_mark_down = help_mark_down , host_type = host_type , icon_url = icon_url , id = id , inputs = inputs , instance_name_format = instance_name_format , minimum_agent_version = minimum_agent_version , name = name , output_variables = output_variables , package_location = package_location , package_type = package_type , post_job_execution = post_job_execution , pre_job_execution = pre_job_execution , preview = preview , release_notes = release_notes , runs_on = runs_on , satisfies = satisfies , server_owned = server_owned , show_environment_variables = show_environment_variables , source_definitions = source_definitions , source_location = source_location , version = version , visibility = visibility )
3202+ def __init__ (self , agent_execution = None , author = None , category = None , contents_uploaded = None , contribution_identifier = None , contribution_version = None , data_source_bindings = None , definition_type = None , demands = None , deprecated = None , description = None , disabled = None , ecosystem = None , execution = None , friendly_name = None , groups = None , help_mark_down = None , help_url = None , host_type = None , icon_url = None , id = None , inputs = None , instance_name_format = None , minimum_agent_version = None , name = None , output_variables = None , package_location = None , package_type = None , post_job_execution = None , pre_job_execution = None , preview = None , release_notes = None , runs_on = None , satisfies = None , server_owned = None , show_environment_variables = None , source_definitions = None , source_location = None , version = None , visibility = None , comment = None , created_by = None , created_on = None , deleted = None , modified_by = None , modified_on = None , owner = None , parent_definition_id = None , revision = None , tasks = None ):
3203+ super (TaskGroup , self ).__init__ (agent_execution = agent_execution , author = author , category = category , contents_uploaded = contents_uploaded , contribution_identifier = contribution_identifier , contribution_version = contribution_version , data_source_bindings = data_source_bindings , definition_type = definition_type , demands = demands , deprecated = deprecated , description = description , disabled = disabled , ecosystem = ecosystem , execution = execution , friendly_name = friendly_name , groups = groups , help_mark_down = help_mark_down , help_url = help_url , host_type = host_type , icon_url = icon_url , id = id , inputs = inputs , instance_name_format = instance_name_format , minimum_agent_version = minimum_agent_version , name = name , output_variables = output_variables , package_location = package_location , package_type = package_type , post_job_execution = post_job_execution , pre_job_execution = pre_job_execution , preview = preview , release_notes = release_notes , runs_on = runs_on , satisfies = satisfies , server_owned = server_owned , show_environment_variables = show_environment_variables , source_definitions = source_definitions , source_location = source_location , version = version , visibility = visibility )
31973204 self .comment = comment
31983205 self .created_by = created_by
31993206 self .created_on = created_on
@@ -3311,6 +3318,8 @@ class TaskGroupRevision(Model):
33113318 :type comment: str
33123319 :param file_id:
33133320 :type file_id: int
3321+ :param major_version:
3322+ :type major_version: int
33143323 :param revision:
33153324 :type revision: int
33163325 :param task_group_id:
@@ -3323,17 +3332,19 @@ class TaskGroupRevision(Model):
33233332 'change_type' : {'key' : 'changeType' , 'type' : 'object' },
33243333 'comment' : {'key' : 'comment' , 'type' : 'str' },
33253334 'file_id' : {'key' : 'fileId' , 'type' : 'int' },
3335+ 'major_version' : {'key' : 'majorVersion' , 'type' : 'int' },
33263336 'revision' : {'key' : 'revision' , 'type' : 'int' },
33273337 'task_group_id' : {'key' : 'taskGroupId' , 'type' : 'str' }
33283338 }
33293339
3330- def __init__ (self , changed_by = None , changed_date = None , change_type = None , comment = None , file_id = None , revision = None , task_group_id = None ):
3340+ def __init__ (self , changed_by = None , changed_date = None , change_type = None , comment = None , file_id = None , major_version = None , revision = None , task_group_id = None ):
33313341 super (TaskGroupRevision , self ).__init__ ()
33323342 self .changed_by = changed_by
33333343 self .changed_date = changed_date
33343344 self .change_type = change_type
33353345 self .comment = comment
33363346 self .file_id = file_id
3347+ self .major_version = major_version
33373348 self .revision = revision
33383349 self .task_group_id = task_group_id
33393350
0 commit comments