New-AzAksTimeSpanObject
建立 TimeSpan 的記憶體內部物件。
語法
New-AzAksTimeSpanObject
[-End <DateTime>]
[-Start <DateTime>]
[<CommonParameters>]
Description
建立 TimeSpan 的記憶體內部物件。
範例
範例 1:建立時間範圍的記憶體內部物件
$startDate = Get-Date -Year 2023 -Month 3 -Day 1
$endDate = Get-Date -Year 2023 -Month 3 -Day 2
New-AzAksTimeSpanObject -Start $startDate -End $endDate
End Start
--- -----
3/2/2023 1:53:53 PM 3/1/2023 1:53:45 PM
New-AzAksTimeSpanObject 會建立 TimeSpan 類型的記憶體內部物件。 此物件代表時間範圍,並將用於 Cmdlet New-AzAksMaintenanceConfiguration 中的 NotAllowedTime 參數。
參數
-End
時間範圍的結尾。
類型: | DateTime |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Start
時間範圍的開始。
類型: | DateTime |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |