ZStack Cloud provides comprehensive APIs to query every field of every resource.
Every resource in ZStack Cloud groups its properties as an inventory in JSON format.
{
"createDate": "Nov 17, 2017 8:27:47 PM",
"description": "Test",
"lastOpDate": "Nov 20, 2017 5:40:52 PM",
"name": "Zone-1",
"state": "Enabled",
"type": "zstack",
"uuid": "c3a228078e8c4f81ba7da0b16fb8d77f"
}
{
"category": "Public",
"createDate": "Nov 17, 2017 9:11:59 PM",
"dns": [
"223.5.5.5"
],
"ipRanges": [
{
"createDate": "Nov 17, 2017 9:18:47 PM",
"endIp": "10.108.10.110",
"gateway": "10.0.0.1",
"l3NetworkUuid": "a8b7054aaa9141f696afebdb1721e5c8",
"lastOpDate": "Nov 17, 2017 9:18:47 PM",
"name": "L3-Pub",
"netmask": "255.0.0.0",
"networkCidr": "10.0.0.1/8",
"startIp": "10.108.10.100",
"uuid": "df5b1ab49a53440bb44eb14c7ebfd50a"
}
],
"l2NetworkUuid": "16fecf5ff5754c3fb6669986ec1fe645",
"lastOpDate": "Nov 17, 2017 9:11:59 PM",
"name": "L3-Pub",
"networkServices": [
{
"l3NetworkUuid": "a8b7054aaa9141f696afebdb1721e5c8",
"networkServiceProviderUuid": "3d46e334773845adac0d90c86a5999ee",
"networkServiceType": "Userdata"
},
{
"l3NetworkUuid": "a8b7054aaa9141f696afebdb1721e5c8",
"networkServiceProviderUuid": "3d46e334773845adac0d90c86a5999ee",
"networkServiceType": "Eip"
},
{
"l3NetworkUuid": "a8b7054aaa9141f696afebdb1721e5c8",
"networkServiceProviderUuid": "3d46e334773845adac0d90c86a5999ee",
"networkServiceType": "DHCP"
}
],
"state": "Enabled",
"system": false,
"type": "L3BasicNetwork",
"uuid": "a8b7054aaa9141f696afebdb1721e5c8",
"zoneUuid": "c3a228078e8c4f81ba7da0b16fb8d77f"
}
QueryZone
, QueryHost
, and QueryVmInstance
.{
"inventories": [
{
"allocatorStrategy": "LeastVmPreferredHostAllocatorStrategy",
"cpuNum": 1,
"cpuSpeed": 0,
"createDate": "Nov 17, 2017 8:48:06 PM",
"lastOpDate": "Nov 17, 2017 8:48:06 PM",
"memorySize": 1073741824,
"name": "instance-offering",
"sortKey": 0,
"state": "Enabled",
"type": "UserVm",
"uuid": "32c3405f7bbf43009cfaf58cb41e39fc"
}
],
"success": true
}
A query API consists of a list of query conditions and several helper parameters.
Name | Description | Optional | Valid Value | Starting Version |
---|---|---|---|---|
conditions | A list of :ref:`QueryCondition <QueryCondition>`. | 0.6 | ||
limit | The maximum number of inventories that can be returned by the query API. Default value: 1000. | true | 0.6 | |
start | The first inventory to return. Default value: 0. | true | 0.6 | |
count | If true, the query response only returns the inventory count. Default value: false. |
| 0.6 | |
replyWithCount | If true, the query response returns both the inventories and the inventory count. Default value: false. |
| 0.6 | |
sortBy | The field by which the result inventories will be sorted. This field must be a primitive field. | true | 0.6 | |
sortDirection | If sortBy is not null, this parameter specifies the sort direction. Default value: asc. |
| 0.6 | |
fields | A list of primitive fields. If specified, only these primitive fields will be included in the query response. | true | 0.6 |
Name | Description | Optional | Valid Value | Starting Version |
---|---|---|---|---|
name | The field name. | 0.6 | ||
op | The comparison operator. |
| 0.6 | |
value | The query value. | 0.6 |
Operator | CLI Form | Description |
---|---|---|
= | = | The equal operator. The string comparison is case-sensitive. |
!= | != | The not equal operator. The string comparison is case-sensitive. |
> | > | The greater than operator. For information about the string comparison, see Operators in MySQL Reference Manual. |
>= | >= | The greater than or equal operator. For information about the string comparison, see Operators in MySQL Reference Manual. |
< | < | The less than operator. For information about the string comparison, see Operators in MySQL Reference Manual. |
<= | <= | The less than or equal operator. For information about the string comparison, see Operators in MySQL Reference Manual. |
in | ?= | Checks whether a value is within a set of values. |
not in | !?= | Checks whether a value is NOT within a set of values. |
is null | =null | Checks whether a value is NULL. |
is not null | !=null | Checks whether a value is not NULL. |
like | ~= | Simple pattern matching. Use % to match any number of characters, even zero characters. Use _ to match exactly one character. |
not like | !~= | Negation of simple pattern matching. Use % to match any number of characters, even zero characters. Use _ to match exactly one character. |
# Query the L3 network with the name of L3Network1 and one or more IP range named range1.
QueryL3Network ipRanges.name=range1 name=L3Network1
QueryHost conditions='[{"name":"name", "op":"=", "value":"KVM1"}]'
QueryHost name=KVM1
condition_name(no_space)CLI_comparison_operator(no_space)condition_value
admin >>>QueryVmInstance
[Query Conditions:]
allVolumes. cluster. host. image. instanceOffering.
resourcePool. rootVolume. vmCdRoms. vmNics. zone.
__systemTag__= __tagUuid__= __userTag__= allocatorStrategy= clusterUuid=
cpuNum= cpuSpeed= createDate= defaultL3NetworkUuid= description=
groupBy= hostUuid= hypervisorType= imageUuid= instanceOfferingUuid=
lastHostUuid= lastOpDate= memorySize= name= platform=
rootVolumeUuid= state= systemTags= type= userTags=
uuid= zoneUuid=
[Parameters:]
count= fields= limit= replyWithCount= sortBy=
sortDirection= start= timeout=
In ZStack Cloud, Join is called expanded query. This kind of query allows you to query a resource by fields that have relation to this resource. In ZStack Cloud, these fields are called expanded fields.
admin >>>QueryL3Network vmNic.eip.vipIp=10.108.10.102
In the example above, the L3 network inventory does not have the vmNic.eip.vipIp field. However, this IP address has a relation to the VM NIC inventory. Meanwhile, the VM NIC inventory has a relation to the EIP inventory. Therefore, you can construct an expanded query across three inventories, including the L3 network inventory, the VM NIC inventory, and the EIP inventory.
Based on the Join (expanded query) condition, ZStack Cloud can provide nearly 4 million query conditions and countless combinations of conditions.
QueryVolumeSnapshot volume.vmInstance.vmNics.l3Network.l2Network.attachedClusterUuids?=13238c8e0591444e9160df4d3636be82
The example above is to query volume snapshots that were created from volumes of VM instances. The VM instances have NICs on L3 networks whose parent L2 networks are attached to a cluster with the UUID of 13238c8e0591444e9160df4d3636be82.
When a field is a list, it can contain primitive types such as int
, long
, string
, and nested inventories.
Query list is not special. This section is to remind you that do not think you can only use in
(?=) and not in
(!?=) to query a list. In fact, you can use all comparison operators.
# To query all L3 networks with the similar DNS 72.72.72.*
QueryL3Network dns~=72.72.72.%
# To query all L3 networks with the IP range starting from 192.168.0.10
QueryL3Network ipRanges.startIp=192.168.0.10
In this section, you can see that every resource have system tags and user tags. Both the system tags and user tags can be a part of query conditions.
ZStack Cloud uses two special fields (__userTag__ and __systemTag__) to query resources.
QueryVmInstance __userTag__?=web-tier-VMs
QueryHost __systemTag__?=os::distribution::Ubuntu managementIp=192.168.0.212
Most ZStack Cloud resources support bidirectional expanded query.
For example, a host query can be expanded to a cluster to which the host belongs, and a cluster query can also be expanded to a host in the cluster. This makes it possible to query resources in any direction, which might also lead to loop query at the same time.
QueryHost vmInstance.vmNics.eip.vmNic.vmInstance.uuid=d40e459b97db5a63dedaffcd05cfe3c2
QueryHost vmInstance.uuid=d40e459b97db5a63dedaffcd05cfe3c2
The behavior of a loop query is undefined. You may or may not get the correct result. Therefore, we recommend that you avoid loop query in your practice.
With the powerful query APIs, you can get the same result by using different query methods.
For example, you can use one of the following methods to query VM instances that are running on a host with the host UUID e497e90ab1e64db099eea93f998d525b.
QueryVmInstance hostUuid=e497e90ab1e64db099eea93f998d525b
QueryVmInstance host.uuid=e497e90ab1e64db099eea93f998d525b
In the above two methods, Method 1 is more effective because it queries a primitive field that only involves the VM instance inventory table. Method 2 is an expanded query that joins both the VM instance inventory table and the host inventory table.
When you use UUID as the query condition, we recommend that you query a primitive field instead of the sub-field of an expanded field.
QueryVmInstance defaultL3NetworkUuid=7e52c8b7b6f94e4485a61f3f1a8bfe42
QueryPortForwardingRule protocolType=TCP
QueryVmInstance defaultL3NetworkUuid=7e52c8b7b6f94e4485a61f3f1a8bfe42 count=true
QueryPortForwardingRule protocolType=TCP count=true
QueryVmInstance defaultL3NetworkUuid=7e52c8b7b6f94e4485a61f3f1a8bfe42 replyWithCount=true
QueryPortForwardingRule protocolType=TCP replyWithCount=true
QueryVmInstance defaultL3NetworkUuid=7e52c8b7b6f94e4485a61f3f1a8bfe42 limit=3
QueryPortForwardingRule protocolType=TCP limit=2
QueryVmInstance name~=clone
QueryPortForwardingRule vipPortStart?=23,24
QueryVmInstance imageUuid=4b5e37a47a402977a3b285ccecf9c0c1 start=2 limit=3
QueryPortForwardingRule protocolType=TCP start=1 limit=3
QueryVmInstance fields=name,uuid clusterUuid=5cac8330d5ab4c2ea393b8c3986c8850
QueryPortForwardingRule fields=uuid,privatePortStart,privatePortEnd vipPortStart=23 vipPortEnd=23
QueryVmInstance clusterUuid=5cac8330d5ab4c2ea393b8c3986c8850 sortBy=createDate sortDirection=asc
QueryPortForwardingRule sortBy=privatePortStart sortDirection=desc
Email Us
contact@zstack.ioEmail Us
contact@zstack.ioThe download link is sent to your email address.
If you don't see it, check your spam folder, subscription folder, or AD folder. After receiving the email, click the URL to download the documentation.Thank you for using ZStack products and services.
Submit successfully.
We'll connect soon.Thank you for choosing ZStack products and services.