2.14.
CLASS: HOST PATCH
CHAPTER 2.
API REFERENCE
RPC name: add to other config
Overview:
Add the given key-value pair to the other config field of the given host patch.
Signature:
void add_to_other_config (session_id s, host_patch ref self, string key, string value)
Arguments:
type
name
description
host patch ref
self
reference to the object
string
key
Key to add
string
value
Value to add
Return Type:
void
RPC name: remove from other config
Overview:
Remove the given key and its corresponding value from the other config field of the given host patch.
If the key is not in that Map, then do nothing.
Signature:
void remove_from_other_config (session_id s, host_patch ref self, string key)
Arguments:
type
name
description
host patch ref
self
reference to the object
string
key
Key to remove
Return Type:
void
RPC name: get by uuid
Overview:
Get a reference to the host patch instance with the specified UUID.
Signature:
(host_patch ref) get_by_uuid (session_id s, string uuid)
Arguments:
type
name
description
string
uuid
UUID of object to return
Return Type:
host patch ref
reference to the object
143