@@ -2826,6 +2826,8 @@ class TaskDefinition(Model):
2826
2826
:type groups: list of :class:`TaskGroupDefinition <azure.devops.v5_1.task_agent.models.TaskGroupDefinition>`
2827
2827
:param help_mark_down:
2828
2828
:type help_mark_down: str
2829
+ :param help_url:
2830
+ :type help_url: str
2829
2831
:param host_type:
2830
2832
:type host_type: str
2831
2833
:param icon_url:
@@ -2890,6 +2892,7 @@ class TaskDefinition(Model):
2890
2892
'friendly_name' : {'key' : 'friendlyName' , 'type' : 'str' },
2891
2893
'groups' : {'key' : 'groups' , 'type' : '[TaskGroupDefinition]' },
2892
2894
'help_mark_down' : {'key' : 'helpMarkDown' , 'type' : 'str' },
2895
+ 'help_url' : {'key' : 'helpUrl' , 'type' : 'str' },
2893
2896
'host_type' : {'key' : 'hostType' , 'type' : 'str' },
2894
2897
'icon_url' : {'key' : 'iconUrl' , 'type' : 'str' },
2895
2898
'id' : {'key' : 'id' , 'type' : 'str' },
@@ -2914,7 +2917,7 @@ class TaskDefinition(Model):
2914
2917
'visibility' : {'key' : 'visibility' , 'type' : '[str]' }
2915
2918
}
2916
2919
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 ):
2918
2921
super (TaskDefinition , self ).__init__ ()
2919
2922
self .agent_execution = agent_execution
2920
2923
self .author = author
@@ -2933,6 +2936,7 @@ def __init__(self, agent_execution=None, author=None, category=None, contents_up
2933
2936
self .friendly_name = friendly_name
2934
2937
self .groups = groups
2935
2938
self .help_mark_down = help_mark_down
2939
+ self .help_url = help_url
2936
2940
self .host_type = host_type
2937
2941
self .icon_url = icon_url
2938
2942
self .id = id
@@ -3074,6 +3078,8 @@ class TaskGroup(TaskDefinition):
3074
3078
:type groups: list of :class:`TaskGroupDefinition <azure.devops.v5_1.task_agent.models.TaskGroupDefinition>`
3075
3079
:param help_mark_down:
3076
3080
:type help_mark_down: str
3081
+ :param help_url:
3082
+ :type help_url: str
3077
3083
:param host_type:
3078
3084
:type host_type: str
3079
3085
:param icon_url:
@@ -3158,6 +3164,7 @@ class TaskGroup(TaskDefinition):
3158
3164
'friendly_name' : {'key' : 'friendlyName' , 'type' : 'str' },
3159
3165
'groups' : {'key' : 'groups' , 'type' : '[TaskGroupDefinition]' },
3160
3166
'help_mark_down' : {'key' : 'helpMarkDown' , 'type' : 'str' },
3167
+ 'help_url' : {'key' : 'helpUrl' , 'type' : 'str' },
3161
3168
'host_type' : {'key' : 'hostType' , 'type' : 'str' },
3162
3169
'icon_url' : {'key' : 'iconUrl' , 'type' : 'str' },
3163
3170
'id' : {'key' : 'id' , 'type' : 'str' },
@@ -3192,8 +3199,8 @@ class TaskGroup(TaskDefinition):
3192
3199
'tasks' : {'key' : 'tasks' , 'type' : '[TaskGroupStep]' }
3193
3200
}
3194
3201
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 )
3197
3204
self .comment = comment
3198
3205
self .created_by = created_by
3199
3206
self .created_on = created_on
@@ -3311,6 +3318,8 @@ class TaskGroupRevision(Model):
3311
3318
:type comment: str
3312
3319
:param file_id:
3313
3320
:type file_id: int
3321
+ :param major_version:
3322
+ :type major_version: int
3314
3323
:param revision:
3315
3324
:type revision: int
3316
3325
:param task_group_id:
@@ -3323,17 +3332,19 @@ class TaskGroupRevision(Model):
3323
3332
'change_type' : {'key' : 'changeType' , 'type' : 'object' },
3324
3333
'comment' : {'key' : 'comment' , 'type' : 'str' },
3325
3334
'file_id' : {'key' : 'fileId' , 'type' : 'int' },
3335
+ 'major_version' : {'key' : 'majorVersion' , 'type' : 'int' },
3326
3336
'revision' : {'key' : 'revision' , 'type' : 'int' },
3327
3337
'task_group_id' : {'key' : 'taskGroupId' , 'type' : 'str' }
3328
3338
}
3329
3339
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 ):
3331
3341
super (TaskGroupRevision , self ).__init__ ()
3332
3342
self .changed_by = changed_by
3333
3343
self .changed_date = changed_date
3334
3344
self .change_type = change_type
3335
3345
self .comment = comment
3336
3346
self .file_id = file_id
3347
+ self .major_version = major_version
3337
3348
self .revision = revision
3338
3349
self .task_group_id = task_group_id
3339
3350
0 commit comments