az support tickets communications

참고

이 참조는 Azure CLI 대한 지원 확장의 일부이며 버전 2.0.81 이상이 필요합니다. az support tickets communications 명령을 처음 실행할 때 확장이 자동으로 설치됩니다. 확장에 대해 자세히 알아보세요.

지원 티켓 통신을 관리합니다.

명령

az support tickets communications create

Azure 지원 티켓에 새 고객 통신을 추가합니다.

az support tickets communications list

지원 티켓에 대한 모든 통신(첨부 파일은 포함되지 않음)을 나열합니다.

az support tickets communications show

지원 티켓에 대한 통신 세부 정보를 가져옵니다.

az support tickets communications create

Azure 지원 티켓에 새 고객 통신을 추가합니다.

az support tickets communications create --communication-body
                                         --communication-name
                                         --communication-subject
                                         --ticket-name
                                         [--communication-sender]

예제

구독 티켓에 통신을 추가합니다.

az support tickets communications create \
  --ticket-name "TestTicketName" \
  --communication-name "TestTicketCommunicationName" \
  --communication-body "TicketCommunicationBody" \
  --communication-subject "TicketCommunicationSubject"

필수 매개 변수

--communication-body

통신의 텍스트입니다.

--communication-name

통신 이름입니다.

--communication-subject

통신의 주체입니다.

--ticket-name

지원 티켓 이름입니다.

선택적 매개 변수

--communication-sender

보낸 사람의 이메일 주소입니다.

az support tickets communications list

지원 티켓에 대한 모든 통신(첨부 파일은 포함되지 않음)을 나열합니다.

az support tickets communications list --ticket-name
                                       [--filters]

예제

구독 지원 티켓에 대한 통신을 나열합니다.

az support tickets communications list --ticket-name "TestTicketName"

구독 지원 티켓에 대한 웹 통신을 나열합니다.

az support tickets communications list \
  --ticket-name "TestTicketName" \
  --filters "communicationType eq 'Web'"

구독 지원 티켓의 특정 날짜 또는 이후에 생성된 웹 통신을 나열합니다.

az support tickets communications list \
  --ticket-name "TestTicketName" \
  --filters "CreatedDate ge 2020-01-01 and communicationType eq 'Web'"

필수 매개 변수

--ticket-name

지원 티켓 이름입니다.

선택적 매개 변수

--filters

작업에 적용할 필터입니다. OData v4.0 emtantics를 지원합니다. eq 연산자를 사용하는 "CommunicationType" 또는 gt/ge를 사용하는 "CreatedDate"에서 필터를 지정할 수 있습니다. 두 필터를 결합하려면 논리 및 연산자를 사용합니다.

az support tickets communications show

지원 티켓에 대한 통신 세부 정보를 가져옵니다.

az support tickets communications show --communication-name
                                       --ticket-name

예제

구독 지원 티켓에 대한 통신 세부 정보를 확인합니다.

az support tickets communications show \
  --ticket-name "TestTicketName" \
  --communication-name "TestTicketCommunicationName"

필수 매개 변수

--communication-name

통신 이름입니다.

--ticket-name

지원 티켓 이름입니다.