vCenter REST API-部署具有网络参数的模板

时间:2019-02-27 08:57:29

标签: rest api templates deployment vcenter

我正在使用php工具通过CURL和JSON从vCenter(vmWare)部署ovf模板。该工具已在运行,并且已成功部署了ovf模板。我的问题是网络参数被完全忽略了。

vmWare纪录片中的大量信息并没有帮助我。我认为解决方案是找到正确的“密钥”整数。

这是我使用的一些Dokus:

我的Google搜索也不是很有帮助。

我当前的json代码:

    {
"deployment_spec": {
    "accept_all_EULA": true,
    "default_datastore_id": "datastore-30598",
    "network_mappings": [
    {
        "key": "4000",
        "value": "network-154"
    }
],
    "name": "AATest08"
},
"target": {
    "folder_id": "group-v5920",
    "host_id": "host-1934",
    "resource_pool_id": "resgroup-43"
}}

我希望有人能帮助我。

1 个答案:

答案 0 :(得分:0)

我没有找到任何解决方案。我现在使用的解决方法是在取消部署VM之后更改网络。如果有人对使用REST API更改vCenter中现有VM的网络的代码感兴趣,请在下面发布代码。

    function updateNetwork($IdFromTheVM, $NewNetworkID)
{
    $requestUrl = 'https://' . $yourVCenterHost . '/rest/vcenter/vm/' . $IdFromTheVM . '/hardware/ethernet/4000';

    $data = array(
        'spec' => array(
            'backing' => array(
                'type' => 'STANDARD_PORTGROUP',
                'network' => $NewNetworkID,
            )
        ));

    $dataJson = json_encode($data);

    $ch = curl_init();
    $header = array(
        'vmware-api-session-id: ' . $yourVCenterSessionID,
        'content-Type: application/json',
        'Accept: application/json'
    );
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
    curl_setopt($ch, CURLOPT_POSTFIELDS, $dataJson);
    curl_setopt($ch, CURLOPT_URL, $requestUrl);

    curl_exec($ch);
    $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    if ($httpcode != 200){
        return false;
    }

    return true;

}