az support tickets communications

Notitie

Deze referentie maakt deel uit van de ondersteuningsextensie voor Azure CLI en vereist versie 2.0.81 of hoger. De extensie wordt automatisch geïnstalleerd wanneer u de opdracht az support tickets communications de eerste keer hebt uitgevoerd. Meer informatie over extensies.

Communicatie met ondersteuningstickets beheren.

Opdracht

az support tickets communications create

Voegt een nieuwe klantcommunicatie toe aan een ondersteuning voor Azure ticket.

az support tickets communications list

Een lijst met alle communicaties (bijlagen niet inbegrepen) voor een ondersteuningsticket.

az support tickets communications show

Haalt communicatiegegevens op voor een ondersteuningsticket.

az support tickets communications create

Voegt een nieuwe klantcommunicatie toe aan een ondersteuning voor Azure ticket.

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

Voorbeelden

Communicatie toevoegen aan abonnementsticket.

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

Vereiste parameters

--communication-body

Tekst van de communicatie.

--communication-name

Communicatienaam.

--communication-subject

Onderwerp van de communicatie.

--ticket-name

Naam van ondersteuningsticket.

Optionele parameters

--communication-sender

Het e-mailadres van de afzender.

az support tickets communications list

Een lijst met alle communicaties (bijlagen niet inbegrepen) voor een ondersteuningsticket.

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

Voorbeelden

Vermeld de communicatie voor een ondersteuningsticket voor een abonnement.

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

Webcommunicatie voor een ondersteuningsticket voor een abonnement.

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

Een lijst met webcommunicatie die is gemaakt op of na een specifieke datum voor een ondersteuningsticket voor een abonnement.

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

Vereiste parameters

--ticket-name

Naam van ondersteuningsticket.

Optionele parameters

--filters

Het filter dat moet worden toegepast op de bewerking. We ondersteunen OData v4.0 semtantics. Filter kan worden opgegeven op "CommunicationType" met behulp van eq operator of op "CreatedDate" met behulp van gt/ge. Als u beide filters wilt combineren, gebruikt u de logische en operator.

az support tickets communications show

Haalt communicatiegegevens op voor een ondersteuningsticket.

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

Voorbeelden

Haal communicatiegegevens op voor een ondersteuningsticket voor een abonnement.

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

Vereiste parameters

--communication-name

Communicatienaam.

--ticket-name

Naam van ondersteuningsticket.