@@ -14,85 +14,85 @@ class Build(Model):
1414
1515 :param _links:
1616 :type _links: :class:`ReferenceLinks <build.models.ReferenceLinks>`
17- :param build_number: Build number/name of the build
17+ :param build_number: The build number/name of the build.
1818 :type build_number: str
19- :param build_number_revision: Build number revision
19+ :param build_number_revision: The build number revision.
2020 :type build_number_revision: int
21- :param controller: The build controller. This should only be set if the definition type is Xaml.
21+ :param controller: The build controller. This is only set if the definition type is Xaml.
2222 :type controller: :class:`BuildController <build.models.BuildController>`
23- :param definition: The definition associated with the build
23+ :param definition: The definition associated with the build.
2424 :type definition: :class:`DefinitionReference <build.models.DefinitionReference>`
2525 :param deleted: Indicates whether the build has been deleted.
2626 :type deleted: bool
27- :param deleted_by: Process or person that deleted the build
27+ :param deleted_by: The identity of the process or person that deleted the build.
2828 :type deleted_by: :class:`IdentityRef <build.models.IdentityRef>`
29- :param deleted_date: Date the build was deleted
29+ :param deleted_date: The date the build was deleted.
3030 :type deleted_date: datetime
31- :param deleted_reason: Description of how the build was deleted
31+ :param deleted_reason: The description of how the build was deleted.
3232 :type deleted_reason: str
33- :param demands: Demands
33+ :param demands: A list of demands that represents the agent capabilities required by this build.
3434 :type demands: list of :class:`object <build.models.object>`
35- :param finish_time: Time that the build was completed
35+ :param finish_time: The time that the build was completed.
3636 :type finish_time: datetime
37- :param id: Id of the build
37+ :param id: The ID of the build.
3838 :type id: int
39- :param keep_forever:
39+ :param keep_forever: Indicates whether the build should be skipped by retention policies.
4040 :type keep_forever: bool
41- :param last_changed_by: Process or person that last changed the build
41+ :param last_changed_by: The identity representing the process or person that last changed the build.
4242 :type last_changed_by: :class:`IdentityRef <build.models.IdentityRef>`
43- :param last_changed_date: Date the build was last changed
43+ :param last_changed_date: The date the build was last changed.
4444 :type last_changed_date: datetime
45- :param logs: Log location of the build
45+ :param logs: Information about the build logs.
4646 :type logs: :class:`BuildLogReference <build.models.BuildLogReference>`
47- :param orchestration_plan: Orchestration plan for the build
47+ :param orchestration_plan: The orchestration plan for the build.
4848 :type orchestration_plan: :class:`TaskOrchestrationPlanReference <build.models.TaskOrchestrationPlanReference>`
49- :param parameters: Parameters for the build
49+ :param parameters: The parameters for the build.
5050 :type parameters: str
5151 :param plans: Orchestration plans associated with the build (build, cleanup)
5252 :type plans: list of :class:`TaskOrchestrationPlanReference <build.models.TaskOrchestrationPlanReference>`
53- :param priority: The build's priority
53+ :param priority: The build's priority.
5454 :type priority: object
55- :param project: The team project
55+ :param project: The team project.
5656 :type project: :class:`TeamProjectReference <build.models.TeamProjectReference>`
5757 :param properties:
5858 :type properties: :class:`object <build.models.object>`
59- :param quality: Quality of the xaml build (good, bad, etc.)
59+ :param quality: The quality of the xaml build (good, bad, etc.)
6060 :type quality: str
61- :param queue: The queue. This should only be set if the definition type is Build.
61+ :param queue: The queue. This is only set if the definition type is Build.
6262 :type queue: :class:`AgentPoolQueue <build.models.AgentPoolQueue>`
63- :param queue_options: Queue option of the build.
63+ :param queue_options: Additional options for queueing the build.
6464 :type queue_options: object
65- :param queue_position: The current position of the build in the queue
65+ :param queue_position: The current position of the build in the queue.
6666 :type queue_position: int
67- :param queue_time: Time that the build was queued
67+ :param queue_time: The time that the build was queued.
6868 :type queue_time: datetime
69- :param reason: Reason that the build was created
69+ :param reason: The reason that the build was created.
7070 :type reason: object
71- :param repository: The repository
71+ :param repository: The repository.
7272 :type repository: :class:`BuildRepository <build.models.BuildRepository>`
73- :param requested_by: The identity that queued the build
73+ :param requested_by: The identity that queued the build.
7474 :type requested_by: :class:`IdentityRef <build.models.IdentityRef>`
75- :param requested_for: The identity on whose behalf the build was queued
75+ :param requested_for: The identity on whose behalf the build was queued.
7676 :type requested_for: :class:`IdentityRef <build.models.IdentityRef>`
77- :param result: The build result
77+ :param result: The build result.
7878 :type result: object
79- :param retained_by_release: Specifies if Build should be retained by Release
79+ :param retained_by_release: Indicates whether the build is retained by a release.
8080 :type retained_by_release: bool
81- :param source_branch: Source branch
81+ :param source_branch: The source branch.
8282 :type source_branch: str
83- :param source_version: Source version
83+ :param source_version: The source version.
8484 :type source_version: str
85- :param start_time: Time that the build was started
85+ :param start_time: The time that the build was started.
8686 :type start_time: datetime
87- :param status: Status of the build
87+ :param status: The status of the build.
8888 :type status: object
8989 :param tags:
9090 :type tags: list of str
9191 :param trigger_info: Sourceprovider-specific information about what triggered the build
9292 :type trigger_info: dict
93- :param uri: Uri of the build
93+ :param uri: The URI of the build.
9494 :type uri: str
95- :param url: REST url of the build
95+ :param url: The REST URL of the build.
9696 :type url: str
9797 :param validation_results:
9898 :type validation_results: list of :class:`BuildRequestValidationResult <build.models.BuildRequestValidationResult>`
0 commit comments