PublishToAzureServiceBus@0 - Azure Service Bus v0 작업에 게시
이 작업을 사용하여 서비스 연결을 사용하여 Azure Service Bus 메시지를 보냅니다(에이전트 필요 없음).
Syntax
# Publish To Azure Service Bus v0
# Sends a message to azure service bus using a service connection (no agent required).
- task: PublishToAzureServiceBus@0
inputs:
azureSubscription: # string. Alias: connectedServiceName. Required. Azure service bus connection.
messageBody: '{"JobId": "$(system.jobId)", "PlanId": "$(system.planId)", "TimelineId": "$(system.timelineId)", "ProjectId": "$(system.teamProjectId)", "VstsUrl": "$(system.CollectionUri)","AuthToken": "$(system.AccessToken)"}' # string. Required. Message body. Default: {"JobId": "$(system.jobId)", "PlanId": "$(system.planId)", "TimelineId": "$(system.timelineId)", "ProjectId": "$(system.teamProjectId)", "VstsUrl": "$(system.CollectionUri)","AuthToken": "$(system.AccessToken)"}.
#waitForCompletion: false # boolean. Wait for task completion. Default: false.
입력
azureSubscription
- Azure Service Bus 연결
입력 별칭: connectedServiceName
. string
. 필수 요소.
Azure Service Bus 연결을 지정합니다.
messageBody
- 메시지 본문
string
. 필수 요소. 기본값은 {"JobId": "$(system.jobId)", "PlanId": "$(system.planId)", "TimelineId": "$(system.timelineId)", "ProjectId": "$(system.teamProjectId)", "VstsUrl": "$(system.CollectionUri)","AuthToken": "$(system.AccessToken)"}
입니다.
JSON messageBody
을 지정합니다.
waitForCompletion
- 작업 완료 대기
boolean
. 기본값은 false
입니다.
로 true
설정하면 이 작업은 지정된 작업 시간 제한에 대한 TaskCompleted 이벤트를 기다립니다.
작업 제어 옵션
모든 작업에는 작업 입력 외에 제어 옵션이 있습니다. 자세한 내용은 컨트롤 옵션 및 일반적인 작업 속성을 참조하세요.
출력 변수
없음
설명
릴리스 파이프라인의 에이전트 없는 작업에서 이 작업을 사용하여 에이전트를 사용하지 않고 서비스 연결을 사용하여 Azure Service Bus 메시지를 보냅니다.
참고
릴리스 파이프라인의 에이전트 없는 작업 에서만 사용할 수 있습니다.
작업 신호는 어디에서 완료되어야 하나요?
완료를 알리기 위해 외부 서비스는 완료 데이터를 다음 파이프라인 REST 엔드포인트에 게시해야 합니다.
{planUri}/{projectId}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/events?api-version=2.0-preview.1
**Request Body**
{ "name": "TaskCompleted", "taskId": "taskInstanceId", "jobId": "jobId", "result": "succeeded" }
자세한 내용은 이 간단한 cmdline 애플리케이션 을 참조하세요.
또한 C# 도우미 라이브러리를 사용하여 라이브 로깅을 사용하도록 설정하고 에이전트 없는 작업에 대한 작업 상태를 관리할 수 있습니다. 비동기 HTTP 에이전트 없는 작업에 대해 자세히 알아봅니다.
요구 사항
요구 사항 | Description |
---|---|
파이프라인 유형 | YAML, 클래식 빌드, 클래식 릴리스 |
실행 중 | 서버 |
요청 | 없음 |
Capabilities | 이 작업은 작업의 후속 작업에 대한 요구를 충족하지 않습니다. |
명령 제한 사항 | 모두 |
Settable 변수 | 모두 |
에이전트 버전 | 지원되는 모든 에이전트 버전입니다. |
작업 범주 | 유틸리티 |