You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If no client can be found the routine will raise an error.
188
188
#
189
189
# You may filter the list returned by adding options:
190
-
# * <b>+:hourly+</b> (boolean) - Include servers billed hourly in the list
191
-
# * <b>+:monthly+</b> (boolean) - Include servers billed monthly in the list
192
-
# * <b>+:tags+</b> (array) - an array of strings representing tags to search for on the instances
193
-
# * <b>+:cpus+</b> (int) - return virtual servers with the given number of (virtual) CPUs
194
-
# * <b>+:memory+</b> (int) - return servers with at least the given amount of memory (in MB. e.g. 4096 = 4GB)
195
-
# * <b>+:hostname+</b> (string) - return servers whose hostnames match the query string given (see ObjectFilter::query_to_filter_operation)
196
-
# * <b>+:domain+</b> (string) - filter servers to those whose domain matches the query string given (see ObjectFilter::query_to_filter_operation)
197
-
# * <b>+:local_disk+</b> (boolean) - include servers that do, or do not, have local disk storage
198
-
# * <b>+:datacenter+</b> (string) - find servers whose short data center name (e.g. dal05, sjc01) matches the query string given (see ObjectFilter::query_to_filter_operation)
199
-
# * <b>+:nic_speed+</b> (int) - include servers with the given nic speed (in Mbps, usually 10, 100, or 1000)
200
-
# * <b>+:public_ip+</b> (string) - return servers whose public IP address matches the query string given (see ObjectFilter::query_to_filter_operation)
201
-
# * <b>+:private_ip+</b> (string) - same as :public_ip, but for private IP addresses
190
+
# * <b>+:hourly+</b> (boolean) - Include servers billed hourly in the list
191
+
# * <b>+:monthly+</b> (boolean) - Include servers billed monthly in the list
192
+
# * <b>+:tags+</b> (string/array) - an array of strings representing tags to search for on the instances
193
+
# * <b>+:cpus+</b> (int/array) - return virtual servers with the given number of (virtual) CPUs
194
+
# * <b>+:memory+</b> (int/array) - return servers with at least the given amount of memory (in MB. e.g. 4096 = 4GB)
195
+
# * <b>+:hostname+</b> (string/array) - return servers whose hostnames match the query string given (see ObjectFilter::query_to_filter_operation)
196
+
# * <b>+:domain+</b> (string/array) - filter servers to those whose domain matches the query string given (see ObjectFilter::query_to_filter_operation)
197
+
# * <b>+:local_disk+</b> (boolean) - include servers that do, or do not, have local disk storage
198
+
# * <b>+:datacenter+</b> (string/array) - find servers whose short data center name (e.g. dal05, sjc01) matches the query string given (see ObjectFilter::query_to_filter_operation)
199
+
# * <b>+:nic_speed+</b> (int/array) - include servers with the given nic speed (in Mbps, usually 10, 100, or 1000)
200
+
# * <b>+:public_ip+</b> (string/array) - return servers whose public IP address matches the query string given (see ObjectFilter::query_to_filter_operation)
201
+
# * <b>+:private_ip+</b> (string/array) - same as :public_ip, but for private IP addresses
202
202
#
203
203
# Additionally you may provide options related to the request itself:
204
204
# * <b>+:object_mask+</b> (string) - A object mask of properties, in addition to the default properties, that you wish to retrieve for the servers
0 commit comments