GetNetworkServiceTypes
API Request
URLs
GET zstack/v1/network-services/types
Headers
Authorization: OAuth the-session-uuid
Curl
Sample
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth 8a5a05acd4fb47b7839a9c50a74c3f1a" \
-X GET http://localhost:8080/zstack/v1/network-services/types
Request Parameters
Name | Type | Location | Description | Optional Value | Starting Version |
---|---|---|---|---|---|
systemTags | List | query | Optional. The system tags. | 0.6 | |
userTags | List | query | Optional. The user tags. | 0.6 |
API Response
Sample
Response
{
"serviceAndProviderTypes": {
"SecurityGroup": [
"929ae57afd1b4815b04ecb25bd67fb02"
]
}
}
Name | Type | Description | Starting Version |
---|---|---|---|
types | Map | 0.6 | |
error | ErrorCode | The error code. If not null, the operation fails, or vice versa. For more information, see error. | 0.6 |
#error
Name | Type | Description | Starting Version |
---|---|---|---|
code | String | The error code, which is a numbered or alphanumeric code that specifies an error. For example, SYS.1000, HOST.1001. | 0.6 |
description | String | The brief description of the error. | 0.6 |
details | String | The details about the error. | 0.6 |
elaboration | String | The reserved field. Default value: null. | 0.6 |
opaque | LinkedHashMap | The reserved field. Default value: null. | 0.6 |
cause | ErrorCode | The root error, which is the associated root cause of the current error. If no root error exists, this parameter is null. | 0.6 |
SDK Sample
Java
SDK
GetNetworkServiceTypesAction action = new GetNetworkServiceTypesAction();
action.sessionId = "bcb01c0891bb48a1974e2004b3397678";
GetNetworkServiceTypesAction.Result res = action.call();
Python
SDK
GetNetworkServiceTypesAction action = GetNetworkServiceTypesAction()
action.sessionId = "35c50339c05b4d6c9b4461a478c17239"
GetNetworkServiceTypesAction.Result res = action.call()