Yayımcıyı iptal etme
Yayımcıyı iptal eder. İptal edilen yayımcı, belirtilen Olay Hub'ına olay gönderirken hatalarla karşılaşır. Bkz. RevokedPublisherDescription Özellikleri.
Yayımcıyı iptal ederken RevokedPublisherDescription içinde aşağıdaki özellikleri belirtmeniz gerekir.
Özellik adı | Açıklama |
---|---|
Ad | İptal edilen yayımcının adı. |
İstek
Yöntem | İstek URI'si |
---|---|
PUT | https://{servicebusNamespace}.servicebus.windows.net/{eventHubPath}/revokedpublishers/{publisherName} |
İstek Üst Bilgileri
Bkz. Event Hubs ile ilgili tüm istekler tarafından kullanılan üst bilgiler ve parametreler için ortak parametreler ve üst bilgiler .
Yanıt
Yanıt bir HTTP durum kodu, yanıt üst bilgileri kümesi ve yanıt gövdesi içerir.
Yanıt Kodları
Kod | Description |
---|---|
201 | Oluşturulan. |
400 | Hatalı istek. |
401 | Yetkilendirme hatası. |
409 | Belirtilen yayımcı zaten iptal edilmiş. |
500 | İç hata. |
Yanıt Gövdesi
İstek başarılı olursa, yanıt gövdesi iptal edilen yayımcıların açıklamasını içerir. İstek başarılı olmazsa gövde bir hata kodu ve hata iletisi içerir.
Öğe adı | Gerekli | Tür | Sürüm | Açıklama |
---|---|---|---|---|
Ad | Evet, salt okunur | string | 2014-01 | İptal edilen yayımcının adı (kimliği). |
Örnekler
İstek
Not
Ayrıca, Ortak parametreler ve üst bilgiler bölümünde belirtildiği gibi Yetkilendirme üst bilgisi için bir Azure Active Directory belirteci de kullanabilirsiniz. Örneğin: Authorization: Bearer <Azure AD token>
.
PUT https://your-namespace.servicebus.windows.net/your-event-hub/RevokedPublishers/your-publisher?timeout=60&api-version=2014-05 HTTP/1.1
Authorization: SharedAccessSignature sr=your-namespace.servicebus.windows.net&sig=your-sas-key&se=1456362414&skn=RootManageSharedAccessKey
Content-Type: application/atom+xml;type=entry;charset=utf-8
Host: your-namespace.servicebus.windows.net
Content-Length: 338
<entry xmlns="http://www.w3.org/2005/Atom">
<content type="application/xml">
<RevokedPublisherDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Name>your-publisher</Name>
</RevokedPublisherDescription>
</content>
</entry>
Response
HTTP/1.1 201 Created
Content-Type: application/atom+xml;type=entry;charset=utf-8
Server: Microsoft-HTTPAPI/2.0
Date: Thu, 25 Feb 2016 00:41:11 GMT
Content-Length: 660
<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<id>https://your-namespace.servicebus.windows.net/your-event-hub/RevokedPublishers/your-publisher?timeout=60&api-version=2014-05</id>
<title type="text">your-publisher</title>
<updated>2016-02-25T00:41:11Z</updated>
<link rel="self" href="https://your-namespace.servicebus.windows.net/your-event-hub/RevokedPublishers/your-publisher?timeout=60&api-version=2014-05" />
<content type="application/xml">
<RevokedPublisherDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Name>your-publisher</Name>
</RevokedPublisherDescription>
</content>
</entry>