az support tickets communications

Hinweis

Diese Referenz ist Teil der Supporterweiterung für die Azure CLI (Version 2.0.81 oder höher). Die Erweiterung wird automatisch installiert, wenn Sie zum ersten Mal einen Az-Support-Ticketkommunikationsbefehl ausführen. Weitere Informationen zu Erweiterungen

Verwalten der Supportticketkommunikation.

Befehle

az support tickets communications create

Fügt eine neue Kundenkommunikation zu einem Azure-Support Ticket hinzu.

az support tickets communications list

Listet alle Kommunikationen auf (Anlagen, die nicht enthalten sind) für ein Supportticket.

az support tickets communications show

Ruft Kommunikationsdetails für ein Supportticket ab.

az support tickets communications create

Fügt eine neue Kundenkommunikation zu einem Azure-Support Ticket hinzu.

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

Beispiele

Hinzufügen der Kommunikation zum Abonnementticket.

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

Erforderliche Parameter

--communication-body

Text der Mitteilung.

--communication-name

Kommunikationsname.

--communication-subject

Gegenstand der Mitteilung.

--ticket-name

Supportticketname.

Optionale Parameter

--communication-sender

Email Adresse des Absenders.

az support tickets communications list

Listet alle Kommunikationen auf (Anlagen, die nicht enthalten sind) für ein Supportticket.

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

Beispiele

Auflisten der Kommunikation für ein Abonnementsupportticket.

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

Webkommunikation für ein Abonnementsupportticket auflisten.

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

Auflisten der Webkommunikation, die an oder nach einem bestimmten Datum für ein Abonnementsupportticket erstellt wurde.

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

Erforderliche Parameter

--ticket-name

Supportticketname.

Optionale Parameter

--filters

Der Filter, der auf den Vorgang angewendet werden soll. Wir unterstützen OData v4.0 Semtantics. Der Filter kann auf "CommunicationType" mithilfe des Eq-Operators oder auf "CreatedDate" mithilfe von gt/ge angegeben werden. Um beide Filter zu kombinieren, verwenden Sie die logische und den Operator.

az support tickets communications show

Ruft Kommunikationsdetails für ein Supportticket ab.

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

Beispiele

Erhalten Sie Kommunikationsdetails für ein Abonnementsupportticket.

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

Erforderliche Parameter

--communication-name

Kommunikationsname.

--ticket-name

Supportticketname.