Interface NetworkService.UpdateRequest

  • All Superinterfaces:
    Request<NetworkService.UpdateRequest,​NetworkService.UpdateResponse>
    Enclosing interface:
    NetworkService

    public static interface NetworkService.UpdateRequest
    extends Request<NetworkService.UpdateRequest,​NetworkService.UpdateResponse>
    Updates a logical network. The `name`, `description`, `ip`, `vlan`, `stp` and `display` attributes can be updated. For example, to update the description of the logical network `123` send a request like this: [source] ---- PUT /ovirt-engine/api/networks/123 ---- With a request body like this: [source,xml] ---- My updated description ---- The maximum transmission unit of a network is set using a PUT request to specify the integer value of the `mtu` attribute. For example, to set the maximum transmission unit send a request like this: [source] ---- PUT /ovirt-engine/api/datacenters/123/networks/456 ---- With a request body like this: [source,xml] ---- 1500 ---- NOTE: Updating external networks is not propagated to the provider.