Deploymentgroups - Update
Update a deployment group.
PATCH https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId}?api-version=7.1
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
|
deployment
|
path | True |
integer (int32) |
ID of the deployment group. |
|
organization
|
path | True |
string |
The name of the Azure DevOps organization. |
|
project
|
path | True |
string |
Project ID or project name |
|
api-version
|
query | True |
string |
Version of the API to use. This should be set to '7.1' to use this version of the api. |
Request Body
| Name | Type | Description |
|---|---|---|
| description |
string |
Description of the deployment group. |
| name |
string |
Name of the deployment group. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
successful operation |
Security
oauth2
Type:
oauth2
Flow:
accessCode
Authorization URL:
https://app.vssps.visualstudio.com/oauth2/authorize&response_type=Assertion
Token URL:
https://app.vssps.visualstudio.com/oauth2/token?client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer
Scopes
| Name | Description |
|---|---|
| vso.machinegroup_manage | Provides ability to manage deployment group and agent pools |
Examples
Update a deployment group
Sample request
PATCH https://dev.azure.com/fabrikam/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId}?api-version=7.1
{
"name": "MyDeploymentGroup1-Update1",
"description": "Description of this deployment group is updated"
}
Sample response
{
"machineCount": 0,
"description": "Description of this deployment group is updated",
"id": 11,
"project": {
"id": "91879ed9-819b-46f3-9e0b-52ed4b20c04c",
"name": "DeploymentGroupRESTSample"
},
"name": "MyDeploymentGroup1-Update1",
"pool": {
"id": 6,
"isHosted": false,
"poolType": "deployment",
"size": 0
}
}
Definitions
| Name | Description |
|---|---|
| Demand | |
|
Deployment |
Deployment group. |
|
Deployment |
Deployment group update parameter. |
|
Deployment |
Deployment target. |
|
Identity |
|
| JObject |
Represents a JSON object. |
| JToken |
Represents an abstract JSON token. |
|
Package |
|
|
Project |
|
|
Properties |
The class represents a property bag as a collection of key-value pairs. Values of all primitive types (any type with a |
|
Reference |
The class to represent a collection of REST reference links. |
|
Task |
A task agent. |
|
Task |
Provides data necessary for authorizing the agent using OAuth 2.0 authentication flows. |
|
Task |
|
|
Task |
A job request for an agent. |
|
Task |
Additional pool settings and details |
|
Task |
|
|
Task |
Gets or sets the type of the pool |
|
Task |
Represents the public key portion of an RSA asymmetric key. |
|
Task |
A reference to an agent. |
|
Task |
Whether or not the agent is online. |
|
Task |
Details about an agent update. |
|
Task |
|
|
Task |
|
|
Task |
|
|
Task |
The result of this request. |
Demand
| Name | Type | Description |
|---|---|---|
| name |
string |
|
| value |
string |
DeploymentGroup
Deployment group.
| Name | Type | Description |
|---|---|---|
| description |
string |
Description of the deployment group. |
| id |
integer (int32) |
Deployment group identifier. |
| machineCount |
integer (int32) |
Number of deployment targets in the deployment group. |
| machineTags |
string[] |
List of unique tags across all deployment targets in the deployment group. |
| machines |
List of deployment targets in the deployment group. |
|
| name |
string |
Name of the deployment group. |
| pool |
Deployment pool in which deployment agents are registered. |
|
| project |
Project to which the deployment group belongs. |
DeploymentGroupUpdateParameter
Deployment group update parameter.
| Name | Type | Description |
|---|---|---|
| description |
string |
Description of the deployment group. |
| name |
string |
Name of the deployment group. |
DeploymentMachine
Deployment target.
| Name | Type | Description |
|---|---|---|
| agent |
Deployment agent. |
|
| id |
integer (int32) |
Deployment target Identifier. |
| properties |
Properties of the deployment target. |
|
| tags |
string[] |
Tags of the deployment target. |
IdentityRef
| Name | Type | Description |
|---|---|---|
| _links |
This field contains zero or more interesting links about the graph subject. These links may be invoked to obtain additional relationships or more detailed information about this graph subject. |
|
| descriptor |
string |
The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations. |
| directoryAlias |
string |
Deprecated - Can be retrieved by querying the Graph user referenced in the "self" entry of the IdentityRef "_links" dictionary |
| displayName |
string |
This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider. |
| id |
string |
|
| imageUrl |
string |
Deprecated - Available in the "avatar" entry of the IdentityRef "_links" dictionary |
| inactive |
boolean |
Deprecated - Can be retrieved by querying the Graph membership state referenced in the "membershipState" entry of the GraphUser "_links" dictionary |
| isAadIdentity |
boolean |
Deprecated - Can be inferred from the subject type of the descriptor (Descriptor.IsAadUserType/Descriptor.IsAadGroupType) |
| isContainer |
boolean |
Deprecated - Can be inferred from the subject type of the descriptor (Descriptor.IsGroupType) |
| isDeletedInOrigin |
boolean |
|
| profileUrl |
string |
Deprecated - not in use in most preexisting implementations of ToIdentityRef |
| uniqueName |
string |
Deprecated - use Domain+PrincipalName instead |
| url |
string |
This url is the full route to the source resource of this graph subject. |
JObject
Represents a JSON object.
| Name | Type | Description |
|---|---|---|
| item |
Represents an abstract JSON token. |
|
| type |
string (JTokenType) |
Gets the node type for this JToken. |
JToken
Represents an abstract JSON token.
| Name | Type | Description |
|---|---|---|
| first |
Get the first child token of this token. |
|
| hasValues |
boolean |
Gets a value indicating whether this token has child tokens. |
| item |
Represents an abstract JSON token. |
|
| last |
Get the last child token of this token. |
|
| next |
Gets the next sibling token of this node. |
|
| parent |
string (JContainer) |
Gets or sets the parent. |
| path |
string |
Gets the path of the JSON token. |
| previous |
Gets the previous sibling token of this node. |
|
| root |
Gets the root JToken of this JToken. |
|
| type |
string (JTokenType) |
Gets the node type for this JToken. |
PackageVersion
| Name | Type | Description |
|---|---|---|
| major |
integer (int32) |
|
| minor |
integer (int32) |
|
| patch |
integer (int32) |
ProjectReference
| Name | Type | Description |
|---|---|---|
| id |
string (uuid) |
|
| name |
string |
PropertiesCollection
The class represents a property bag as a collection of key-value pairs. Values of all primitive types (any type with a TypeCode != TypeCode.Object) except for DBNull are accepted. Values of type Byte[], Int32, Double, DateType and String preserve their type, other primitives are retuned as a String. Byte[] expected as base64 encoded string.
| Name | Type | Description |
|---|---|---|
| count |
integer (int32) |
The count of properties in the collection. |
| item |
object |
|
| keys |
string[] |
The set of keys in the collection. |
| values |
string[] |
The set of values in the collection. |
ReferenceLinks
The class to represent a collection of REST reference links.
| Name | Type | Description |
|---|---|---|
| links |
object |
The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only. |
TaskAgent
A task agent.
| Name | Type | Description |
|---|---|---|
| _links |
The class to represent a collection of REST reference links. |
|
| accessPoint |
string |
This agent's access point. |
| assignedAgentCloudRequest |
The agent cloud request that's currently associated with this agent. |
|
| assignedRequest |
The request which is currently assigned to this agent. |
|
| authorization |
Authorization information for this agent. |
|
| createdOn |
string (date-time) |
Date on which this agent was created. |
| enabled |
boolean |
Whether or not this agent should run jobs. |
| id |
integer (int32) |
Identifier of the agent. |
| lastCompletedRequest |
The last request which was completed by this agent. |
|
| maxParallelism |
integer (int32) |
Maximum job parallelism allowed for this agent. |
| name |
string |
Name of the agent. |
| osDescription |
string |
Agent OS. |
| pendingUpdate |
Pending update for this agent. |
|
| properties |
The class represents a property bag as a collection of key-value pairs. Values of all primitive types (any type with a |
|
| provisioningState |
string |
Provisioning state of this agent. |
| status |
Whether or not the agent is online. |
|
| statusChangedOn |
string (date-time) |
Date on which the last connectivity status change occurred. |
| systemCapabilities |
object |
System-defined capabilities supported by this agent's host. Warning: To set capabilities use the PUT method, PUT will completely overwrite existing capabilities. |
| userCapabilities |
object |
User-defined capabilities supported by this agent's host. Warning: To set capabilities use the PUT method, PUT will completely overwrite existing capabilities. |
| version |
string |
Agent version. |
TaskAgentAuthorization
Provides data necessary for authorizing the agent using OAuth 2.0 authentication flows.
| Name | Type | Description |
|---|---|---|
| authorizationUrl |
string |
Endpoint used to obtain access tokens from the configured token service. |
| clientId |
string (uuid) |
Client identifier for this agent. |
| publicKey |
Public key used to verify the identity of this agent. |
TaskAgentCloudRequest
| Name | Type | Description |
|---|---|---|
| agent |
A reference to an agent. |
|
| agentCloudId |
integer (int32) |
|
| agentConnectedTime |
string (date-time) |
|
| agentData |
Represents a JSON object. |
|
| agentSpecification |
Represents a JSON object. |
|
| pool | ||
| provisionRequestTime |
string (date-time) |
|
| provisionedTime |
string (date-time) |
|
| releaseRequestTime |
string (date-time) |
|
| requestId |
string (uuid) |
TaskAgentJobRequest
A job request for an agent.
| Name | Type | Description |
|---|---|---|
| agentSpecification |
Represents a JSON object. |
|
| assignTime |
string (date-time) |
The date/time this request was assigned. |
| data |
object |
Additional data about the request. |
| definition |
The pipeline definition associated with this request |
|
| demands |
Demand[] |
A list of demands required to fulfill this request. |
| finishTime |
string (date-time) |
The date/time this request was finished. |
| hostId |
string (uuid) |
The host which triggered this request. |
| jobId |
string (uuid) |
ID of the job resulting from this request. |
| jobName |
string |
Name of the job resulting from this request. |
| lockedUntil |
string (date-time) |
The deadline for the agent to renew the lock. |
| matchedAgents |
A reference to an agent. |
|
| matchesAllAgentsInPool |
boolean |
|
| orchestrationId |
string |
|
| owner |
The pipeline associated with this request |
|
| planGroup |
string |
|
| planId |
string (uuid) |
Internal ID for the orchestration plan connected with this request. |
| planType |
string |
Internal detail representing the type of orchestration plan. |
| poolId |
integer (int32) |
The ID of the pool this request targets |
| priority |
integer (int32) |
|
| queueId |
integer (int32) |
The ID of the queue this request targets |
| queueTime |
string (date-time) |
The date/time this request was queued. |
| receiveTime |
string (date-time) |
The date/time this request was receieved by an agent. |
| requestId |
integer (int64) |
ID of the request. |
| reservedAgent |
The agent allocated for this request. |
|
| result |
The result of this request. |
|
| scopeId |
string (uuid) |
Scope of the pipeline; matches the project ID. |
| serviceOwner |
string (uuid) |
The service which owns this request. |
| statusMessage |
string |
|
| userDelayed |
boolean |
TaskAgentPoolOptions
Additional pool settings and details
| Value | Description |
|---|---|
| none | |
| elasticPool |
TaskAgentPool backed by the Elastic pool service |
| singleUseAgents |
Set to true if agents are re-imaged after each TaskAgentJobRequest |
| preserveAgentOnJobFailure |
Set to true if agents are held for investigation after a TaskAgentJobRequest failure |
TaskAgentPoolReference
| Name | Type | Description |
|---|---|---|
| id |
integer (int32) |
|
| isHosted |
boolean |
Gets or sets a value indicating whether or not this pool is managed by the service. |
| isLegacy |
boolean |
Determines whether the pool is legacy. |
| name |
string |
|
| options |
Additional pool settings and details |
|
| poolType |
Gets or sets the type of the pool |
|
| scope |
string (uuid) |
|
| size |
integer (int32) |
Gets the current size of the pool. |
TaskAgentPoolType
Gets or sets the type of the pool
| Value | Description |
|---|---|
| automation |
A typical pool of task agents |
| deployment |
A deployment pool |
TaskAgentPublicKey
Represents the public key portion of an RSA asymmetric key.
| Name | Type | Description |
|---|---|---|
| exponent |
string[] (byte) |
Gets or sets the exponent for the public key. |
| modulus |
string[] (byte) |
Gets or sets the modulus for the public key. |
TaskAgentReference
A reference to an agent.
| Name | Type | Description |
|---|---|---|
| _links |
The class to represent a collection of REST reference links. |
|
| accessPoint |
string |
This agent's access point. |
| enabled |
boolean |
Whether or not this agent should run jobs. |
| id |
integer (int32) |
Identifier of the agent. |
| name |
string |
Name of the agent. |
| osDescription |
string |
Agent OS. |
| provisioningState |
string |
Provisioning state of this agent. |
| status |
Whether or not the agent is online. |
|
| version |
string |
Agent version. |
TaskAgentStatus
Whether or not the agent is online.
| Value | Description |
|---|---|
| offline | |
| online |
TaskAgentUpdate
Details about an agent update.
| Name | Type | Description |
|---|---|---|
| currentState |
string |
Current state of this agent update. |
| reason |
Reason for this update. |
|
| requestTime |
string (date-time) |
Date on which this update was requested. |
| requestedBy |
Identity which requested this update. |
|
| sourceVersion |
Source agent version of the update. |
|
| targetVersion |
Target agent version of the update. |
TaskAgentUpdateReason
| Name | Type | Description |
|---|---|---|
| code |
TaskAgentUpdateReasonType
| Value | Description |
|---|---|
| manual | |
| minAgentVersionRequired | |
| downgrade |
TaskOrchestrationOwner
| Name | Type | Description |
|---|---|---|
| _links |
The class to represent a collection of REST reference links. |
|
| id |
integer (int32) |
|
| name |
string |
TaskResult
The result of this request.
| Value | Description |
|---|---|
| succeeded | |
| succeededWithIssues | |
| failed | |
| canceled | |
| skipped | |
| abandoned |