你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

New-AzAksTimeSpanObject

为 TimeSpan 创建内存中对象。

语法

New-AzAksTimeSpanObject
   [-End <DateTime>]
   [-Start <DateTime>]
   [<CommonParameters>]

说明

为 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

时间跨度的结束。

Type:DateTime
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Start

时间跨度的开始。

Type:DateTime
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

输出

TimeSpan

备注

别名