اشترك في الأحداث الخاصة باشتراك Azure باستخدام PowerShell

ينشئ هذا البرنامج النصي اشتراك Event Grid في أحداث اشتراك Azure.

إذا لم يكن لديك اشتراك في Azure، فأنشئ حساب Azure مجاني قبل أن تبدأ.

نموذج البرنامج النصي - مستقر

إشعار

نوصي باستخدام الوحدة النمطية Azure Az PowerShell للتفاعل مع Azure. للبدء، راجع تثبيت Azure PowerShell. لمعرفة كيفية الترحيل إلى الوحدة النمطية Az PowerShell، راجع ترحيل Azure PowerShell من AzureRM إلى Az.

# Provide an endpoint for handling the events. Must be formatted "https://your-endpoint-URL"
$myEndpoint = "<your-endpoint-URL>"

# Select the Azure subscription you want to subscribe to. You need this command only if the 
# current subscription is not the one you wish to subscribe to.
Set-AzContext -Subscription "<subscription-name-or-ID>"

# Subscribe to the Azure subscription. The command creates the subscription for the currently selected Azure subscription. 
New-AzEventGridSubscription -Endpoint $myEndpoint -EventSubscriptionName demoSubscriptionToAzureSub

نموذج البرنامج النصي - وحدة المعاينة

نموذج البرنامج النصي للمعاينة يتطلب الوحدة النمطية "شبكة الأحداث". للتثبيت، ما عليك سوى التشغيل Install-Module -Name AzureRM.EventGrid -AllowPrerelease -Force -Repository PSGallery

هام

يتطلب استخدام ميزة Azure هذه من PowerShell تثبيت الوحدة النمطية AzureRM . هذه وحدة نمطية قديمة متوفرة فقط في إصدار ويندوز PowerShell 5.1 التي لم تعد تتلقى ميزات جديدة. الوحدتان AzوAzureRM غير متوافقتين عند تثبيتهما لنفس إصدارات PowerShell. إذا كنت بحاجة إلى كلا الإصدارين:

  1. إلغاء تثبيت الوحدة النمطية Az من جلسة عمل PowerShell 5.1.
  2. تثبيت الوحدة النمطية AzureRM من جلسة عمل PowerShell 5.1.
  3. قم بتنزيل PowerShell Core 6.x أو أحدث وتثبيته.
  4. تثبيت الوحدة النمطية Az في جلسة عمل PowerShell Core.
# You must have the latest version of the Event Grid PowerShell module.
# To install:
# Install-Module -Name AzureRM.EventGrid -AllowPrerelease -Force -Repository PSGallery

# Provide an endpoint for handling the events. Must be formatted "https://your-endpoint-URL"
$myEndpoint = "<your-endpoint-URL>"

# Get the subscription ID
$subID = (Get-AzureRmSubscription -SubscriptionName "<subscription-name>").Id

# Subscribe to the Azure subscription. The command creates the subscription for the currently selected Azure subscription. 
New-AzureRmEventGridSubscription -ResourceId "/subscriptions/$subID" -Endpoint $myEndpoint -EventSubscriptionName demoSubscriptionToAzureSub

شرح السيناريو

يستخدم هذا البرنامج النصي الأمر التالي لإنشاء اشتراك الحدث. يرتبط كل أمر في الجدول بالوثائق الخاصة بالأوامر.

الأمر ملاحظات
New-AzEventGridSubscription إنشاء اشتراك Event Grid.

الخطوات التالية