powershell PowervRA - 填充自定义属性Request-vRAConsumerCatalogItem

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowervRA - 填充自定义属性Request-vRAConsumerCatalogItem相关的知识,希望对你有一定的参考价值。

# --- Convert the JSON string to an object
$Object = (Get-vRAConsumerCatalogItemRequestTemplate -Name "A Catalog Item" | ConvertFrom-JSON)

# ---Build the request
$RequestProperties = $Object.data.VM.data    
$RequestProperties.Hostname = "MyHostname"
$RequestProperties.cpu = 2
$RequestProperties.memory = 2048

# ---- Submit the request
($Object | ConvertTo-Json -Depth 100) | Request-vRAConsumerCatalogItem -Wait -Confirm:$false

以上是关于powershell PowervRA - 填充自定义属性Request-vRAConsumerCatalogItem的主要内容,如果未能解决你的问题,请参考以下文章

powershell 尾随PowervRA正在进行的请求

powershell 将vRA蓝图导出为PowervRA的内容包

powershell 获取所有资源并通过PowervRA显示他们的预订

powershell 使用模板请求目录项并等待PowervRA完成

powershell 获取与PowervRA匹配某个字符串的所有目录项的请求模板

powershell 使用PowervRA创建预留 - 此要点包含用于创建vSphere和vCloud Air预留的示例