-
Notifications
You must be signed in to change notification settings - Fork 0
Home
-
BuildStatusChangedTrigger - triggers a Function when status of a Build changes. Binds to BuildProxy type.
-
PullRequestStatusChangedTrigger - triggers a Function when status of a Pull Request changes. Binds to PullRequestProxy type. Example.
-
ReleaseCreatedTrigger - triggers a Function when a new Release is triggered. Binds to ReleaseProxy type.
-
ReleaseEnvironmentStatusChangedTrigger - triggers a Function when status of a Release Environment (aka Release Stage) changes. Binds to ReleaseEnvironmentProxy type. Example.
-
WorkItemChangedTrigger - triggers a Function when a Work Item changes. Binds to WorkItemChange type (which gives you the previous and the current versions of the changed Work Item). Example.
-
WorkItemCreatedTrigger - triggers a Function when a new Work Item is created. Binds to WorkItemProxy type. Example.
-
BuildClient - gives you an instance of BuildHttpClient.
-
BuildDefinition - binds to a BuildDefinitionProxy by its ID. Input only. Example.
-
GitClient - gives you an instance of GitHttpClient.
-
Project - binds to a ProjectProxy by project's name. Input only. Example.
-
ProjectClient - gives you an instance of ProjectHttpClient.
-
ReleaseClient - gives you an instance of ReleaseHttpClient.
-
ReleaseEnvironment - output-only binding for ReleaseEnvironmentProxy. Intended for triggering Release Environments (aka Release Stages).
-
ReleaseEnvironmentStatus - output-only binding for ReleaseEnvironmentStatus. Intended for triggering Release Environments (aka Release Stages). Example.
-
TestCase - binds to a TestCaseProxy (a Work Item with Type = "Test Case"). Input/output. Example.
-
TestPlan - binds to a TestPlanProxy. Input/output. Example.
-
TestPlanClient - gives you an instance of TestPlanHttpClient.
-
TestSuite - binds to a TestSuiteProxy (a collection of Test Cases). Input/output. Example.
-
VssConnection - gives you an instance of VssConnection.
-
WorkClient - gives you an instance of WorkHttpClient.
-
WorkItem - binds to a WorkItemProxy (a generic Work Item instance). Input/output. Example.
-
WorkItemClient - gives you an instance of WorkItemTrackingHttpClient.
-
WorkItems - binds to an IEnumerable<WorkItemProxy>. Allows to query for Work Items with a WIQL query. Input only. Example.