共用方式為


New-AzServiceBusAuthorizationRuleSASToken

為命名空間/佇列/主題的 Azure Servicebus 授權規則產生 SAS 令牌。

語法

New-AzServiceBusAuthorizationRuleSASToken
   [-AuthorizationRuleId] <String>
   [-KeyType] <String>
   [-ExpiryTime] <DateTime>
   [-StartTime <DateTime>]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

Description

New-AzServiceBusAuthorizationRuleSASToken Cmdlet 會產生 Azure Eventhub Namesapce 或 Azure Eventhub 的共用存取簽章 (SAS) 令牌

範例

範例 1

$StartTime = Get-Date
$EndTime = $StartTime.AddHours(2.0)
$SasToken = New-AzServiceBusAuthorizationRuleSASToken -AuthorizationRuleId $updatedAuthRule.Id  -KeyType Primary -ExpiryTime $EndTime -StartTime $StartTime

針對命名空間的指定授權規則產生 SAS 令牌,其開頭和到期時間。

範例 2

$StartTime = Get-Date
$EndTime = $StartTime.AddHours(2.0)
$SasToken = New-AzServiceBusAuthorizationRuleSASToken -AuthorizationRuleId $updatedAuthRule.Id  -KeyType Primary -ExpiryTime $EndTime

針對具有到期時間的命名空間產生指定授權規則的SAS令牌。

參數

-AuthorizationRuleId

授權規則的 ARM ResourceId

類型:String
別名:ResourceId
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Confirm

在執行 Cmdlet 之前,提示您進行確認。

類型:SwitchParameter
別名:cf
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultProfile

用於與 Azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-ExpiryTime

到期時間

類型:Nullable<T>[DateTime]
Position:2
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-KeyType

索引鍵類型

類型:String
Position:1
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-StartTime

開始時間

類型:Nullable<T>[DateTime]
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-WhatIf

顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。

類型:SwitchParameter
別名:wi
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

String

Nullable<T>[[System.DateTime, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]

輸出

PSSharedAccessSignatureAttributes