repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
UrielCh/ovh-java-sdk
ovh-java-sdk-router/src/main/java/net/minidev/ovh/api/ApiOvhRouter.java
ApiOvhRouter.serviceName_network_POST
public OvhTask serviceName_network_POST(String serviceName, String description, String ipNet, Long vlanTag) throws IOException { String qPath = "/router/{serviceName}/network"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "ipNet", ipNet); addBody(o, "vlanTag", vlanTag); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_network_POST(String serviceName, String description, String ipNet, Long vlanTag) throws IOException { String qPath = "/router/{serviceName}/network"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "ipNet", ipNet); addBody(o, "vlanTag", vlanTag); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_network_POST", "(", "String", "serviceName", ",", "String", "description", ",", "String", "ipNet", ",", "Long", "vlanTag", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/router/{serviceName}/network\"", ";", "StringBui...
Add a network to your router REST: POST /router/{serviceName}/network @param ipNet [required] Gateway IP / CIDR Netmask, (e.g. 192.168.1.254/24) @param description [required] @param vlanTag [required] Vlan tag from range 1 to 4094 or NULL for untagged traffic @param serviceName [required] The internal name of your Router offer
[ "Add", "a", "network", "to", "your", "router" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-router/src/main/java/net/minidev/ovh/api/ApiOvhRouter.java#L256-L265
train
UrielCh/ovh-java-sdk
ovh-java-sdk-router/src/main/java/net/minidev/ovh/api/ApiOvhRouter.java
ApiOvhRouter.serviceName_privateLink_peerServiceName_request_manage_POST
public String serviceName_privateLink_peerServiceName_request_manage_POST(String serviceName, String peerServiceName, OvhPrivLinkReqActionEnum action) throws IOException { String qPath = "/router/{serviceName}/privateLink/{peerServiceName}/request/manage"; StringBuilder sb = path(qPath, serviceName, peerServiceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "action", action); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, String.class); }
java
public String serviceName_privateLink_peerServiceName_request_manage_POST(String serviceName, String peerServiceName, OvhPrivLinkReqActionEnum action) throws IOException { String qPath = "/router/{serviceName}/privateLink/{peerServiceName}/request/manage"; StringBuilder sb = path(qPath, serviceName, peerServiceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "action", action); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, String.class); }
[ "public", "String", "serviceName_privateLink_peerServiceName_request_manage_POST", "(", "String", "serviceName", ",", "String", "peerServiceName", ",", "OvhPrivLinkReqActionEnum", "action", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/router/{serviceName}/priv...
Accept, reject or cancel a pending request REST: POST /router/{serviceName}/privateLink/{peerServiceName}/request/manage @param action [required] @param serviceName [required] The internal name of your Router offer @param peerServiceName [required] Service name of the other side of this link
[ "Accept", "reject", "or", "cancel", "a", "pending", "request" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-router/src/main/java/net/minidev/ovh/api/ApiOvhRouter.java#L359-L366
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.osAvailabilities_GET
public ArrayList<OvhOsAvailabilitiesEnum> osAvailabilities_GET(String hardware) throws IOException { String qPath = "/dedicated/server/osAvailabilities"; StringBuilder sb = path(qPath); query(sb, "hardware", hardware); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
java
public ArrayList<OvhOsAvailabilitiesEnum> osAvailabilities_GET(String hardware) throws IOException { String qPath = "/dedicated/server/osAvailabilities"; StringBuilder sb = path(qPath); query(sb, "hardware", hardware); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "OvhOsAvailabilitiesEnum", ">", "osAvailabilities_GET", "(", "String", "hardware", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/osAvailabilities\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", "...
List the os available for a specified hardware reference REST: GET /dedicated/server/osAvailabilities @param hardware [required] Hardware reference requested
[ "List", "the", "os", "available", "for", "a", "specified", "hardware", "reference" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L136-L142
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.virtualNetworkInterface_uuid_GET
public OvhVirtualNetworkInterface virtualNetworkInterface_uuid_GET(String uuid) throws IOException { String qPath = "/dedicated/server/virtualNetworkInterface/{uuid}"; StringBuilder sb = path(qPath, uuid); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhVirtualNetworkInterface.class); }
java
public OvhVirtualNetworkInterface virtualNetworkInterface_uuid_GET(String uuid) throws IOException { String qPath = "/dedicated/server/virtualNetworkInterface/{uuid}"; StringBuilder sb = path(qPath, uuid); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhVirtualNetworkInterface.class); }
[ "public", "OvhVirtualNetworkInterface", "virtualNetworkInterface_uuid_GET", "(", "String", "uuid", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/virtualNetworkInterface/{uuid}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", ...
Get VirtualNetworkInterface details REST: GET /dedicated/server/virtualNetworkInterface/{uuid} @param uuid [required] VirtualNetworkInterface uuid
[ "Get", "VirtualNetworkInterface", "details" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L151-L156
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_virtualNetworkInterface_GET
public ArrayList<String> serviceName_virtualNetworkInterface_GET(String serviceName, OvhVirtualNetworkInterfaceModeEnum mode, String name, String vrack) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualNetworkInterface"; StringBuilder sb = path(qPath, serviceName); query(sb, "mode", mode); query(sb, "name", name); query(sb, "vrack", vrack); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> serviceName_virtualNetworkInterface_GET(String serviceName, OvhVirtualNetworkInterfaceModeEnum mode, String name, String vrack) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualNetworkInterface"; StringBuilder sb = path(qPath, serviceName); query(sb, "mode", mode); query(sb, "name", name); query(sb, "vrack", vrack); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "serviceName_virtualNetworkInterface_GET", "(", "String", "serviceName", ",", "OvhVirtualNetworkInterfaceModeEnum", "mode", ",", "String", "name", ",", "String", "vrack", ")", "throws", "IOException", "{", "String", "qPath", ...
List server VirtualNetworkInterfaces REST: GET /dedicated/server/{serviceName}/virtualNetworkInterface @param name [required] Filter the value of name property (=) @param vrack [required] Filter the value of vrack property (=) @param mode [required] Filter the value of mode property (=) @param serviceName [required] The internal name of your dedicated server API beta
[ "List", "server", "VirtualNetworkInterfaces" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L185-L193
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_orderable_feature_GET
public Boolean serviceName_orderable_feature_GET(String serviceName, OvhOrderableSysFeatureEnum feature) throws IOException { String qPath = "/dedicated/server/{serviceName}/orderable/feature"; StringBuilder sb = path(qPath, serviceName); query(sb, "feature", feature); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, Boolean.class); }
java
public Boolean serviceName_orderable_feature_GET(String serviceName, OvhOrderableSysFeatureEnum feature) throws IOException { String qPath = "/dedicated/server/{serviceName}/orderable/feature"; StringBuilder sb = path(qPath, serviceName); query(sb, "feature", feature); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, Boolean.class); }
[ "public", "Boolean", "serviceName_orderable_feature_GET", "(", "String", "serviceName", ",", "OvhOrderableSysFeatureEnum", "feature", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/orderable/feature\"", ";", "StringBuilder", "sb", ...
Is this feature orderable with your server REST: GET /dedicated/server/{serviceName}/orderable/feature @param feature [required] the feature @param serviceName [required] The internal name of your dedicated server
[ "Is", "this", "feature", "orderable", "with", "your", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L283-L289
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_networkInterfaceController_GET
public ArrayList<String> serviceName_networkInterfaceController_GET(String serviceName, OvhNetworkInterfaceControllerLinkTypeEnum linkType) throws IOException { String qPath = "/dedicated/server/{serviceName}/networkInterfaceController"; StringBuilder sb = path(qPath, serviceName); query(sb, "linkType", linkType); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> serviceName_networkInterfaceController_GET(String serviceName, OvhNetworkInterfaceControllerLinkTypeEnum linkType) throws IOException { String qPath = "/dedicated/server/{serviceName}/networkInterfaceController"; StringBuilder sb = path(qPath, serviceName); query(sb, "linkType", linkType); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "serviceName_networkInterfaceController_GET", "(", "String", "serviceName", ",", "OvhNetworkInterfaceControllerLinkTypeEnum", "linkType", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/net...
List server networkInterfaceController REST: GET /dedicated/server/{serviceName}/networkInterfaceController @param linkType [required] Filter the value of linkType property (=) @param serviceName [required] The internal name of your dedicated server API beta
[ "List", "server", "networkInterfaceController" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L449-L455
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_networkInterfaceController_mac_mrtg_GET
public ArrayList<OvhMrtgTimestampValue> serviceName_networkInterfaceController_mac_mrtg_GET(String serviceName, String mac, OvhMrtgPeriodEnum period, OvhMrtgTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/networkInterfaceController/{mac}/mrtg"; StringBuilder sb = path(qPath, serviceName, mac); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
java
public ArrayList<OvhMrtgTimestampValue> serviceName_networkInterfaceController_mac_mrtg_GET(String serviceName, String mac, OvhMrtgPeriodEnum period, OvhMrtgTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/networkInterfaceController/{mac}/mrtg"; StringBuilder sb = path(qPath, serviceName, mac); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
[ "public", "ArrayList", "<", "OvhMrtgTimestampValue", ">", "serviceName_networkInterfaceController_mac_mrtg_GET", "(", "String", "serviceName", ",", "String", "mac", ",", "OvhMrtgPeriodEnum", "period", ",", "OvhMrtgTypeEnum", "type", ")", "throws", "IOException", "{", "Str...
Retrieve traffic graph values REST: GET /dedicated/server/{serviceName}/networkInterfaceController/{mac}/mrtg @param type [required] mrtg type @param period [required] mrtg period @param serviceName [required] The internal name of your dedicated server @param mac [required] NetworkInterfaceController mac API beta
[ "Retrieve", "traffic", "graph", "values" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L484-L491
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_virtualMac_POST
public OvhTask serviceName_virtualMac_POST(String serviceName, String ipAddress, OvhVmacTypeEnum type, String virtualMachineName) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualMac"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ipAddress", ipAddress); addBody(o, "type", type); addBody(o, "virtualMachineName", virtualMachineName); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_virtualMac_POST(String serviceName, String ipAddress, OvhVmacTypeEnum type, String virtualMachineName) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualMac"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ipAddress", ipAddress); addBody(o, "type", type); addBody(o, "virtualMachineName", virtualMachineName); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_virtualMac_POST", "(", "String", "serviceName", ",", "String", "ipAddress", ",", "OvhVmacTypeEnum", "type", ",", "String", "virtualMachineName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}...
Add a virtual mac to an IP address REST: POST /dedicated/server/{serviceName}/virtualMac @param type [required] vmac address type @param virtualMachineName [required] Friendly name of your Virtual Machine behind this IP/MAC @param ipAddress [required] Ip address to link with this virtualMac @param serviceName [required] The internal name of your dedicated server
[ "Add", "a", "virtual", "mac", "to", "an", "IP", "address" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L541-L550
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_virtualMac_macAddress_virtualAddress_ipAddress_DELETE
public OvhTask serviceName_virtualMac_macAddress_virtualAddress_ipAddress_DELETE(String serviceName, String macAddress, String ipAddress) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualMac/{macAddress}/virtualAddress/{ipAddress}"; StringBuilder sb = path(qPath, serviceName, macAddress, ipAddress); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_virtualMac_macAddress_virtualAddress_ipAddress_DELETE(String serviceName, String macAddress, String ipAddress) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualMac/{macAddress}/virtualAddress/{ipAddress}"; StringBuilder sb = path(qPath, serviceName, macAddress, ipAddress); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_virtualMac_macAddress_virtualAddress_ipAddress_DELETE", "(", "String", "serviceName", ",", "String", "macAddress", ",", "String", "ipAddress", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/virtual...
Remove this ip from virtual mac , if you remove the last linked Ip, virtualmac will be deleted REST: DELETE /dedicated/server/{serviceName}/virtualMac/{macAddress}/virtualAddress/{ipAddress} @param serviceName [required] The internal name of your dedicated server @param macAddress [required] Virtual MAC address in 00:00:00:00:00:00 format @param ipAddress [required] IP address
[ "Remove", "this", "ip", "from", "virtual", "mac", "if", "you", "remove", "the", "last", "linked", "Ip", "virtualmac", "will", "be", "deleted" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L589-L594
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_virtualMac_macAddress_virtualAddress_POST
public OvhTask serviceName_virtualMac_macAddress_virtualAddress_POST(String serviceName, String macAddress, String ipAddress, String virtualMachineName) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualMac/{macAddress}/virtualAddress"; StringBuilder sb = path(qPath, serviceName, macAddress); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ipAddress", ipAddress); addBody(o, "virtualMachineName", virtualMachineName); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_virtualMac_macAddress_virtualAddress_POST(String serviceName, String macAddress, String ipAddress, String virtualMachineName) throws IOException { String qPath = "/dedicated/server/{serviceName}/virtualMac/{macAddress}/virtualAddress"; StringBuilder sb = path(qPath, serviceName, macAddress); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ipAddress", ipAddress); addBody(o, "virtualMachineName", virtualMachineName); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_virtualMac_macAddress_virtualAddress_POST", "(", "String", "serviceName", ",", "String", "macAddress", ",", "String", "ipAddress", ",", "String", "virtualMachineName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicat...
Add an IP to this Virtual MAC REST: POST /dedicated/server/{serviceName}/virtualMac/{macAddress}/virtualAddress @param virtualMachineName [required] Friendly name of your Virtual Machine behind this IP/MAC @param ipAddress [required] IP address to link to this virtual MAC @param serviceName [required] The internal name of your dedicated server @param macAddress [required] Virtual MAC address in 00:00:00:00:00:00 format
[ "Add", "an", "IP", "to", "this", "Virtual", "MAC" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L619-L627
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_spla_GET
public ArrayList<Long> serviceName_spla_GET(String serviceName, OvhSplaStatusEnum status, OvhSplaTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/spla"; StringBuilder sb = path(qPath, serviceName); query(sb, "status", status); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public ArrayList<Long> serviceName_spla_GET(String serviceName, OvhSplaStatusEnum status, OvhSplaTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/spla"; StringBuilder sb = path(qPath, serviceName); query(sb, "status", status); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "ArrayList", "<", "Long", ">", "serviceName_spla_GET", "(", "String", "serviceName", ",", "OvhSplaStatusEnum", "status", ",", "OvhSplaTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/spla\"", ";",...
Your own SPLA licenses attached to this dedicated server REST: GET /dedicated/server/{serviceName}/spla @param status [required] Filter the value of status property (=) @param type [required] Filter the value of type property (=) @param serviceName [required] The internal name of your dedicated server
[ "Your", "own", "SPLA", "licenses", "attached", "to", "this", "dedicated", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L706-L713
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_spla_POST
public Long serviceName_spla_POST(String serviceName, String serialNumber, OvhSplaTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/spla"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "serialNumber", serialNumber); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, Long.class); }
java
public Long serviceName_spla_POST(String serviceName, String serialNumber, OvhSplaTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/spla"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "serialNumber", serialNumber); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, Long.class); }
[ "public", "Long", "serviceName_spla_POST", "(", "String", "serviceName", ",", "String", "serialNumber", ",", "OvhSplaTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/spla\"", ";", "StringBuilder", "sb", "="...
Add a new SPLA license REST: POST /dedicated/server/{serviceName}/spla @param type [required] License type @param serialNumber [required] License serial number @param serviceName [required] The internal name of your dedicated server
[ "Add", "a", "new", "SPLA", "license" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L723-L731
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_features_backupCloud_POST
public OvhBackupCloud serviceName_features_backupCloud_POST(String serviceName, String cloudProjectId, String projectDescription) throws IOException { String qPath = "/dedicated/server/{serviceName}/features/backupCloud"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "cloudProjectId", cloudProjectId); addBody(o, "projectDescription", projectDescription); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhBackupCloud.class); }
java
public OvhBackupCloud serviceName_features_backupCloud_POST(String serviceName, String cloudProjectId, String projectDescription) throws IOException { String qPath = "/dedicated/server/{serviceName}/features/backupCloud"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "cloudProjectId", cloudProjectId); addBody(o, "projectDescription", projectDescription); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhBackupCloud.class); }
[ "public", "OvhBackupCloud", "serviceName_features_backupCloud_POST", "(", "String", "serviceName", ",", "String", "cloudProjectId", ",", "String", "projectDescription", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/features/backup...
Create a new storage backup space associated to server REST: POST /dedicated/server/{serviceName}/features/backupCloud @param projectDescription [required] Project description of the project to be created (ignored when an existing project is already specified) @param cloudProjectId [required] cloud project id @param serviceName [required] The internal name of your dedicated server API beta
[ "Create", "a", "new", "storage", "backup", "space", "associated", "to", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L778-L786
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_features_ipmi_access_POST
public OvhTask serviceName_features_ipmi_access_POST(String serviceName, String ipToAllow, String sshKey, OvhCacheTTLEnum ttl, OvhIpmiAccessTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/features/ipmi/access"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ipToAllow", ipToAllow); addBody(o, "sshKey", sshKey); addBody(o, "ttl", ttl); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_features_ipmi_access_POST(String serviceName, String ipToAllow, String sshKey, OvhCacheTTLEnum ttl, OvhIpmiAccessTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/features/ipmi/access"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ipToAllow", ipToAllow); addBody(o, "sshKey", sshKey); addBody(o, "ttl", ttl); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_features_ipmi_access_POST", "(", "String", "serviceName", ",", "String", "ipToAllow", ",", "String", "sshKey", ",", "OvhCacheTTLEnum", "ttl", ",", "OvhIpmiAccessTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", ...
Request an acces on KVM IPMI interface REST: POST /dedicated/server/{serviceName}/features/ipmi/access @param ttl [required] Session access time to live in minutes @param type [required] IPMI console access @param ipToAllow [required] IP to allow connection from for this IPMI session @param sshKey [required] SSH key name to allow access on KVM/IP interface with (name from /me/sshKey) @param serviceName [required] The internal name of your dedicated server
[ "Request", "an", "acces", "on", "KVM", "IPMI", "interface" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1080-L1090
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_features_ipmi_access_GET
public OvhIpmiAccessValue serviceName_features_ipmi_access_GET(String serviceName, OvhIpmiAccessTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/features/ipmi/access"; StringBuilder sb = path(qPath, serviceName); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhIpmiAccessValue.class); }
java
public OvhIpmiAccessValue serviceName_features_ipmi_access_GET(String serviceName, OvhIpmiAccessTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/features/ipmi/access"; StringBuilder sb = path(qPath, serviceName); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhIpmiAccessValue.class); }
[ "public", "OvhIpmiAccessValue", "serviceName_features_ipmi_access_GET", "(", "String", "serviceName", ",", "OvhIpmiAccessTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/features/ipmi/access\"", ";", "StringBuilder",...
IPMI access method REST: GET /dedicated/server/{serviceName}/features/ipmi/access @param type [required] IPMI console access @param serviceName [required] The internal name of your dedicated server
[ "IPMI", "access", "method" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1099-L1105
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_license_compliantWindowsSqlServer_GET
public ArrayList<OvhWindowsSqlVersionEnum> serviceName_license_compliantWindowsSqlServer_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/license/compliantWindowsSqlServer"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
java
public ArrayList<OvhWindowsSqlVersionEnum> serviceName_license_compliantWindowsSqlServer_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/license/compliantWindowsSqlServer"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
[ "public", "ArrayList", "<", "OvhWindowsSqlVersionEnum", ">", "serviceName_license_compliantWindowsSqlServer_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/license/compliantWindowsSqlServer\"", ";", ...
Get the windows SQL server license compliant with your server. REST: GET /dedicated/server/{serviceName}/license/compliantWindowsSqlServer @param serviceName [required] The internal name of your dedicated server
[ "Get", "the", "windows", "SQL", "server", "license", "compliant", "with", "your", "server", "." ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1193-L1198
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_license_compliantWindows_GET
public ArrayList<OvhWindowsOsVersionEnum> serviceName_license_compliantWindows_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/license/compliantWindows"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t7); }
java
public ArrayList<OvhWindowsOsVersionEnum> serviceName_license_compliantWindows_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/license/compliantWindows"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t7); }
[ "public", "ArrayList", "<", "OvhWindowsOsVersionEnum", ">", "serviceName_license_compliantWindows_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/license/compliantWindows\"", ";", "StringBuilder", ...
Get the windows license compliant with your server. REST: GET /dedicated/server/{serviceName}/license/compliantWindows @param serviceName [required] The internal name of your dedicated server
[ "Get", "the", "windows", "license", "compliant", "with", "your", "server", "." ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1207-L1212
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_statistics_partition_partition_chart_GET
public OvhChartReturn serviceName_statistics_partition_partition_chart_GET(String serviceName, String partition, OvhRtmChartPeriodEnum period) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/partition/{partition}/chart"; StringBuilder sb = path(qPath, serviceName, partition); query(sb, "period", period); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhChartReturn.class); }
java
public OvhChartReturn serviceName_statistics_partition_partition_chart_GET(String serviceName, String partition, OvhRtmChartPeriodEnum period) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/partition/{partition}/chart"; StringBuilder sb = path(qPath, serviceName, partition); query(sb, "period", period); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhChartReturn.class); }
[ "public", "OvhChartReturn", "serviceName_statistics_partition_partition_chart_GET", "(", "String", "serviceName", ",", "String", "partition", ",", "OvhRtmChartPeriodEnum", "period", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/st...
Retrieve partition charts REST: GET /dedicated/server/{serviceName}/statistics/partition/{partition}/chart @param period [required] chart period @param serviceName [required] The internal name of your dedicated server @param partition [required] Partition
[ "Retrieve", "partition", "charts" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1249-L1255
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_statistics_pci_GET
public ArrayList<OvhRtmPci> serviceName_statistics_pci_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/pci"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t8); }
java
public ArrayList<OvhRtmPci> serviceName_statistics_pci_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/pci"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t8); }
[ "public", "ArrayList", "<", "OvhRtmPci", ">", "serviceName_statistics_pci_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/statistics/pci\"", ";", "StringBuilder", "sb", "=", "path", "(", "...
Get server PCI devices informations REST: GET /dedicated/server/{serviceName}/statistics/pci @param serviceName [required] The internal name of your dedicated server
[ "Get", "server", "PCI", "devices", "informations" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1277-L1282
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_statistics_memory_GET
public ArrayList<OvhRtmMemory> serviceName_statistics_memory_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/memory"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t9); }
java
public ArrayList<OvhRtmMemory> serviceName_statistics_memory_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/memory"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t9); }
[ "public", "ArrayList", "<", "OvhRtmMemory", ">", "serviceName_statistics_memory_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/statistics/memory\"", ";", "StringBuilder", "sb", "=", "path", ...
Get server memory informations REST: GET /dedicated/server/{serviceName}/statistics/memory @param serviceName [required] The internal name of your dedicated server
[ "Get", "server", "memory", "informations" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1304-L1309
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_statistics_process_GET
public ArrayList<OvhRtmCommandSize> serviceName_statistics_process_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/process"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t10); }
java
public ArrayList<OvhRtmCommandSize> serviceName_statistics_process_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/process"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t10); }
[ "public", "ArrayList", "<", "OvhRtmCommandSize", ">", "serviceName_statistics_process_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/statistics/process\"", ";", "StringBuilder", "sb", "=", "p...
Get server process REST: GET /dedicated/server/{serviceName}/statistics/process @param serviceName [required] The internal name of your dedicated server
[ "Get", "server", "process" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1318-L1323
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_statistics_disk_disk_smart_GET
public OvhRtmDiskSmart serviceName_statistics_disk_disk_smart_GET(String serviceName, String disk) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/disk/{disk}/smart"; StringBuilder sb = path(qPath, serviceName, disk); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhRtmDiskSmart.class); }
java
public OvhRtmDiskSmart serviceName_statistics_disk_disk_smart_GET(String serviceName, String disk) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/disk/{disk}/smart"; StringBuilder sb = path(qPath, serviceName, disk); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhRtmDiskSmart.class); }
[ "public", "OvhRtmDiskSmart", "serviceName_statistics_disk_disk_smart_GET", "(", "String", "serviceName", ",", "String", "disk", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/statistics/disk/{disk}/smart\"", ";", "StringBuilder", "...
Get disk smart informations REST: GET /dedicated/server/{serviceName}/statistics/disk/{disk}/smart @param serviceName [required] The internal name of your dedicated server @param disk [required] Disk
[ "Get", "disk", "smart", "informations" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1346-L1351
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_statistics_connection_GET
public ArrayList<OvhRtmConnection> serviceName_statistics_connection_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/connection"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t11); }
java
public ArrayList<OvhRtmConnection> serviceName_statistics_connection_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/connection"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t11); }
[ "public", "ArrayList", "<", "OvhRtmConnection", ">", "serviceName_statistics_connection_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/statistics/connection\"", ";", "StringBuilder", "sb", "=",...
Get server opened connections REST: GET /dedicated/server/{serviceName}/statistics/connection @param serviceName [required] The internal name of your dedicated server
[ "Get", "server", "opened", "connections" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1499-L1504
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_statistics_chart_GET
public OvhChartReturn serviceName_statistics_chart_GET(String serviceName, OvhRtmChartPeriodEnum period, OvhRtmChartTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/chart"; StringBuilder sb = path(qPath, serviceName); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhChartReturn.class); }
java
public OvhChartReturn serviceName_statistics_chart_GET(String serviceName, OvhRtmChartPeriodEnum period, OvhRtmChartTypeEnum type) throws IOException { String qPath = "/dedicated/server/{serviceName}/statistics/chart"; StringBuilder sb = path(qPath, serviceName); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhChartReturn.class); }
[ "public", "OvhChartReturn", "serviceName_statistics_chart_GET", "(", "String", "serviceName", ",", "OvhRtmChartPeriodEnum", "period", ",", "OvhRtmChartTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/statistics/cha...
Retrieve RTM graph values REST: GET /dedicated/server/{serviceName}/statistics/chart @param type [required] RTM chart type @param period [required] chart period @param serviceName [required] The internal name of your dedicated server
[ "Retrieve", "RTM", "graph", "values" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1528-L1535
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_install_templateCapabilities_GET
public OvhTemplateCaps serviceName_install_templateCapabilities_GET(String serviceName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/templateCapabilities"; StringBuilder sb = path(qPath, serviceName); query(sb, "templateName", templateName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhTemplateCaps.class); }
java
public OvhTemplateCaps serviceName_install_templateCapabilities_GET(String serviceName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/templateCapabilities"; StringBuilder sb = path(qPath, serviceName); query(sb, "templateName", templateName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhTemplateCaps.class); }
[ "public", "OvhTemplateCaps", "serviceName_install_templateCapabilities_GET", "(", "String", "serviceName", ",", "String", "templateName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/install/templateCapabilities\"", ";", "StringBui...
Gives some capabilities regarding the template for the current dedicated server. REST: GET /dedicated/server/{serviceName}/install/templateCapabilities @param templateName [required] @param serviceName [required] The internal name of your dedicated server
[ "Gives", "some", "capabilities", "regarding", "the", "template", "for", "the", "current", "dedicated", "server", "." ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1624-L1630
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_install_start_POST
public OvhTask serviceName_install_start_POST(String serviceName, OvhInstallCustom details, String partitionSchemeName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/start"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "details", details); addBody(o, "partitionSchemeName", partitionSchemeName); addBody(o, "templateName", templateName); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_install_start_POST(String serviceName, OvhInstallCustom details, String partitionSchemeName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/start"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "details", details); addBody(o, "partitionSchemeName", partitionSchemeName); addBody(o, "templateName", templateName); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_install_start_POST", "(", "String", "serviceName", ",", "OvhInstallCustom", "details", ",", "String", "partitionSchemeName", ",", "String", "templateName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{s...
Start an install REST: POST /dedicated/server/{serviceName}/install/start @param partitionSchemeName [required] Partition scheme name @param details [required] parameters for default install @param templateName [required] Template name @param serviceName [required] The internal name of your dedicated server
[ "Start", "an", "install" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1641-L1650
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_install_compatibleTemplatePartitionSchemes_GET
public ArrayList<String> serviceName_install_compatibleTemplatePartitionSchemes_GET(String serviceName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/compatibleTemplatePartitionSchemes"; StringBuilder sb = path(qPath, serviceName); query(sb, "templateName", templateName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> serviceName_install_compatibleTemplatePartitionSchemes_GET(String serviceName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/compatibleTemplatePartitionSchemes"; StringBuilder sb = path(qPath, serviceName); query(sb, "templateName", templateName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "serviceName_install_compatibleTemplatePartitionSchemes_GET", "(", "String", "serviceName", ",", "String", "templateName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/install/compatible...
Retrieve compatible install template partitions scheme REST: GET /dedicated/server/{serviceName}/install/compatibleTemplatePartitionSchemes @param templateName [required] @param serviceName [required] The internal name of your dedicated server
[ "Retrieve", "compatible", "install", "template", "partitions", "scheme" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1659-L1665
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_install_hardwareRaidSize_GET
public OvhHardwareRaidSize serviceName_install_hardwareRaidSize_GET(String serviceName, String partitionSchemeName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/hardwareRaidSize"; StringBuilder sb = path(qPath, serviceName); query(sb, "partitionSchemeName", partitionSchemeName); query(sb, "templateName", templateName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhHardwareRaidSize.class); }
java
public OvhHardwareRaidSize serviceName_install_hardwareRaidSize_GET(String serviceName, String partitionSchemeName, String templateName) throws IOException { String qPath = "/dedicated/server/{serviceName}/install/hardwareRaidSize"; StringBuilder sb = path(qPath, serviceName); query(sb, "partitionSchemeName", partitionSchemeName); query(sb, "templateName", templateName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhHardwareRaidSize.class); }
[ "public", "OvhHardwareRaidSize", "serviceName_install_hardwareRaidSize_GET", "(", "String", "serviceName", ",", "String", "partitionSchemeName", ",", "String", "templateName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/install/...
Get hardware RAID size for a given configuration REST: GET /dedicated/server/{serviceName}/install/hardwareRaidSize @param partitionSchemeName [required] Partition scheme name @param templateName [required] Template name @param serviceName [required] The internal name of your dedicated server
[ "Get", "hardware", "RAID", "size", "for", "a", "given", "configuration" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1701-L1708
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_specifications_network_GET
public OvhNetworkSpecifications serviceName_specifications_network_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/specifications/network"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhNetworkSpecifications.class); }
java
public OvhNetworkSpecifications serviceName_specifications_network_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/specifications/network"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhNetworkSpecifications.class); }
[ "public", "OvhNetworkSpecifications", "serviceName_specifications_network_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/specifications/network\"", ";", "StringBuilder", "sb", "=", "path", "(", ...
Retrieve network informations about this dedicated server REST: GET /dedicated/server/{serviceName}/specifications/network @param serviceName [required] The internal name of your dedicated server
[ "Retrieve", "network", "informations", "about", "this", "dedicated", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1729-L1734
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_boot_GET
public ArrayList<Long> serviceName_boot_GET(String serviceName, OvhBootTypeEnum bootType) throws IOException { String qPath = "/dedicated/server/{serviceName}/boot"; StringBuilder sb = path(qPath, serviceName); query(sb, "bootType", bootType); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public ArrayList<Long> serviceName_boot_GET(String serviceName, OvhBootTypeEnum bootType) throws IOException { String qPath = "/dedicated/server/{serviceName}/boot"; StringBuilder sb = path(qPath, serviceName); query(sb, "bootType", bootType); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "ArrayList", "<", "Long", ">", "serviceName_boot_GET", "(", "String", "serviceName", ",", "OvhBootTypeEnum", "bootType", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/boot\"", ";", "StringBuilder", "sb", "=", "...
Server compatibles netboots REST: GET /dedicated/server/{serviceName}/boot @param bootType [required] Filter the value of bootType property (=) @param serviceName [required] The internal name of your dedicated server
[ "Server", "compatibles", "netboots" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1784-L1790
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_boot_bootId_option_GET
public ArrayList<OvhBootOptionEnum> serviceName_boot_bootId_option_GET(String serviceName, Long bootId) throws IOException { String qPath = "/dedicated/server/{serviceName}/boot/{bootId}/option"; StringBuilder sb = path(qPath, serviceName, bootId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t13); }
java
public ArrayList<OvhBootOptionEnum> serviceName_boot_bootId_option_GET(String serviceName, Long bootId) throws IOException { String qPath = "/dedicated/server/{serviceName}/boot/{bootId}/option"; StringBuilder sb = path(qPath, serviceName, bootId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t13); }
[ "public", "ArrayList", "<", "OvhBootOptionEnum", ">", "serviceName_boot_bootId_option_GET", "(", "String", "serviceName", ",", "Long", "bootId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/boot/{bootId}/option\"", ";", "Stri...
Option used on this netboot REST: GET /dedicated/server/{serviceName}/boot/{bootId}/option @param serviceName [required] The internal name of your dedicated server @param bootId [required] boot id
[ "Option", "used", "on", "this", "netboot" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1814-L1819
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_secondaryDnsNameDomainToken_GET
public OvhSecondaryDNSCheckField serviceName_secondaryDnsNameDomainToken_GET(String serviceName, String domain) throws IOException { String qPath = "/dedicated/server/{serviceName}/secondaryDnsNameDomainToken"; StringBuilder sb = path(qPath, serviceName); query(sb, "domain", domain); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhSecondaryDNSCheckField.class); }
java
public OvhSecondaryDNSCheckField serviceName_secondaryDnsNameDomainToken_GET(String serviceName, String domain) throws IOException { String qPath = "/dedicated/server/{serviceName}/secondaryDnsNameDomainToken"; StringBuilder sb = path(qPath, serviceName); query(sb, "domain", domain); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhSecondaryDNSCheckField.class); }
[ "public", "OvhSecondaryDNSCheckField", "serviceName_secondaryDnsNameDomainToken_GET", "(", "String", "serviceName", ",", "String", "domain", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/secondaryDnsNameDomainToken\"", ";", "StringB...
DNS field to temporarily add to your zone so that we can verify you are the owner of this domain REST: GET /dedicated/server/{serviceName}/secondaryDnsNameDomainToken @param domain [required] The domain to check @param serviceName [required] The internal name of your dedicated server
[ "DNS", "field", "to", "temporarily", "add", "to", "your", "zone", "so", "that", "we", "can", "verify", "you", "are", "the", "owner", "of", "this", "domain" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1843-L1849
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_ipCountryAvailable_GET
public ArrayList<OvhIpCountryEnum> serviceName_ipCountryAvailable_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/ipCountryAvailable"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t14); }
java
public ArrayList<OvhIpCountryEnum> serviceName_ipCountryAvailable_GET(String serviceName) throws IOException { String qPath = "/dedicated/server/{serviceName}/ipCountryAvailable"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t14); }
[ "public", "ArrayList", "<", "OvhIpCountryEnum", ">", "serviceName_ipCountryAvailable_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/ipCountryAvailable\"", ";", "StringBuilder", "sb", "=", "pa...
Retrieve available country for IP order REST: GET /dedicated/server/{serviceName}/ipCountryAvailable @param serviceName [required] The internal name of your dedicated server
[ "Retrieve", "available", "country", "for", "IP", "order" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1857-L1862
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_firewall_binary_link_GET
public OvhBinaryFirewallLink serviceName_firewall_binary_link_GET(String serviceName, String binaryName) throws IOException { String qPath = "/dedicated/server/{serviceName}/firewall/binary/link"; StringBuilder sb = path(qPath, serviceName); query(sb, "binaryName", binaryName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhBinaryFirewallLink.class); }
java
public OvhBinaryFirewallLink serviceName_firewall_binary_link_GET(String serviceName, String binaryName) throws IOException { String qPath = "/dedicated/server/{serviceName}/firewall/binary/link"; StringBuilder sb = path(qPath, serviceName); query(sb, "binaryName", binaryName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhBinaryFirewallLink.class); }
[ "public", "OvhBinaryFirewallLink", "serviceName_firewall_binary_link_GET", "(", "String", "serviceName", ",", "String", "binaryName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/firewall/binary/link\"", ";", "StringBuilder", "sb...
Get url of binary to update firewall asa REST: GET /dedicated/server/{serviceName}/firewall/binary/link @param binaryName [required] Binary name @param serviceName [required] The internal name of your dedicated server API beta
[ "Get", "url", "of", "binary", "to", "update", "firewall", "asa" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1905-L1911
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_ipCanBeMovedTo_GET
public void serviceName_ipCanBeMovedTo_GET(String serviceName, String ip) throws IOException { String qPath = "/dedicated/server/{serviceName}/ipCanBeMovedTo"; StringBuilder sb = path(qPath, serviceName); query(sb, "ip", ip); exec(qPath, "GET", sb.toString(), null); }
java
public void serviceName_ipCanBeMovedTo_GET(String serviceName, String ip) throws IOException { String qPath = "/dedicated/server/{serviceName}/ipCanBeMovedTo"; StringBuilder sb = path(qPath, serviceName); query(sb, "ip", ip); exec(qPath, "GET", sb.toString(), null); }
[ "public", "void", "serviceName_ipCanBeMovedTo_GET", "(", "String", "serviceName", ",", "String", "ip", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/ipCanBeMovedTo\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath",...
Check if given IP can be moved to this server REST: GET /dedicated/server/{serviceName}/ipCanBeMovedTo @param ip [required] The ip to move to this server @param serviceName [required] The internal name of your dedicated server
[ "Check", "if", "given", "IP", "can", "be", "moved", "to", "this", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1920-L1925
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_secondaryDnsDomains_domain_DELETE
public void serviceName_secondaryDnsDomains_domain_DELETE(String serviceName, String domain) throws IOException { String qPath = "/dedicated/server/{serviceName}/secondaryDnsDomains/{domain}"; StringBuilder sb = path(qPath, serviceName, domain); exec(qPath, "DELETE", sb.toString(), null); }
java
public void serviceName_secondaryDnsDomains_domain_DELETE(String serviceName, String domain) throws IOException { String qPath = "/dedicated/server/{serviceName}/secondaryDnsDomains/{domain}"; StringBuilder sb = path(qPath, serviceName, domain); exec(qPath, "DELETE", sb.toString(), null); }
[ "public", "void", "serviceName_secondaryDnsDomains_domain_DELETE", "(", "String", "serviceName", ",", "String", "domain", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/secondaryDnsDomains/{domain}\"", ";", "StringBuilder", "sb", ...
remove this domain REST: DELETE /dedicated/server/{serviceName}/secondaryDnsDomains/{domain} @param serviceName [required] The internal name of your dedicated server @param domain [required] domain on slave server
[ "remove", "this", "domain" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L1976-L1980
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_secondaryDnsDomains_POST
public void serviceName_secondaryDnsDomains_POST(String serviceName, String domain, String ip) throws IOException { String qPath = "/dedicated/server/{serviceName}/secondaryDnsDomains"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "ip", ip); exec(qPath, "POST", sb.toString(), o); }
java
public void serviceName_secondaryDnsDomains_POST(String serviceName, String domain, String ip) throws IOException { String qPath = "/dedicated/server/{serviceName}/secondaryDnsDomains"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "ip", ip); exec(qPath, "POST", sb.toString(), o); }
[ "public", "void", "serviceName_secondaryDnsDomains_POST", "(", "String", "serviceName", ",", "String", "domain", ",", "String", "ip", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/secondaryDnsDomains\"", ";", "StringBuilder", ...
add a domain on secondary dns REST: POST /dedicated/server/{serviceName}/secondaryDnsDomains @param domain [required] The domain to add @param ip [required] @param serviceName [required] The internal name of your dedicated server
[ "add", "a", "domain", "on", "secondary", "dns" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L2003-L2010
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_support_replace_hardDiskDrive_POST
public OvhNewMessageInfo serviceName_support_replace_hardDiskDrive_POST(String serviceName, String comment, OvhSupportReplaceHddInfo[] disks, Boolean inverse) throws IOException { String qPath = "/dedicated/server/{serviceName}/support/replace/hardDiskDrive"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "comment", comment); addBody(o, "disks", disks); addBody(o, "inverse", inverse); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhNewMessageInfo.class); }
java
public OvhNewMessageInfo serviceName_support_replace_hardDiskDrive_POST(String serviceName, String comment, OvhSupportReplaceHddInfo[] disks, Boolean inverse) throws IOException { String qPath = "/dedicated/server/{serviceName}/support/replace/hardDiskDrive"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "comment", comment); addBody(o, "disks", disks); addBody(o, "inverse", inverse); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhNewMessageInfo.class); }
[ "public", "OvhNewMessageInfo", "serviceName_support_replace_hardDiskDrive_POST", "(", "String", "serviceName", ",", "String", "comment", ",", "OvhSupportReplaceHddInfo", "[", "]", "disks", ",", "Boolean", "inverse", ")", "throws", "IOException", "{", "String", "qPath", ...
Ask for a broken HDD replacement REST: POST /dedicated/server/{serviceName}/support/replace/hardDiskDrive @param inverse [required] If set to 'true', replace only NON LISTED DISKS @param disks [required] If 'inverse' is set as 'false', the list of HDD TO REPLACE. If 'inverse' is set as 'true', the list of HDD TO NOT REPLACE. @param comment [required] User comment @param serviceName [required] The internal name of your dedicated server API beta
[ "Ask", "for", "a", "broken", "HDD", "replacement" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L2023-L2032
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_serviceMonitoring_POST
public OvhServiceMonitoring serviceName_serviceMonitoring_POST(String serviceName, String challengeText, Boolean enabled, OvhMonitoringIntervalEnum interval, String ip, Long port, OvhMonitoringProtocolEnum protocol, String url) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "challengeText", challengeText); addBody(o, "enabled", enabled); addBody(o, "interval", interval); addBody(o, "ip", ip); addBody(o, "port", port); addBody(o, "protocol", protocol); addBody(o, "url", url); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhServiceMonitoring.class); }
java
public OvhServiceMonitoring serviceName_serviceMonitoring_POST(String serviceName, String challengeText, Boolean enabled, OvhMonitoringIntervalEnum interval, String ip, Long port, OvhMonitoringProtocolEnum protocol, String url) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "challengeText", challengeText); addBody(o, "enabled", enabled); addBody(o, "interval", interval); addBody(o, "ip", ip); addBody(o, "port", port); addBody(o, "protocol", protocol); addBody(o, "url", url); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhServiceMonitoring.class); }
[ "public", "OvhServiceMonitoring", "serviceName_serviceMonitoring_POST", "(", "String", "serviceName", ",", "String", "challengeText", ",", "Boolean", "enabled", ",", "OvhMonitoringIntervalEnum", "interval", ",", "String", "ip", ",", "Long", "port", ",", "OvhMonitoringProt...
Add a new service monitoring REST: POST /dedicated/server/{serviceName}/serviceMonitoring @param challengeText [required] The expected return @param port [required] The service port to monitor @param enabled [required] Is this service monitoring is enabled @param protocol [required] The protocol to use @param interval [required] The test interval @param url [required] The URL to test @param ip [required] The IP to monitor @param serviceName [required] The internal name of your dedicated server
[ "Add", "a", "new", "service", "monitoring" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L2086-L2099
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_serviceMonitoring_monitoringId_alert_sms_POST
public OvhSmsAlert serviceName_serviceMonitoring_monitoringId_alert_sms_POST(String serviceName, Long monitoringId, Long fromHour, OvhAlertLanguageEnum language, String phoneNumberTo, String smsAccount, Long toHour) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/sms"; StringBuilder sb = path(qPath, serviceName, monitoringId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "fromHour", fromHour); addBody(o, "language", language); addBody(o, "phoneNumberTo", phoneNumberTo); addBody(o, "smsAccount", smsAccount); addBody(o, "toHour", toHour); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhSmsAlert.class); }
java
public OvhSmsAlert serviceName_serviceMonitoring_monitoringId_alert_sms_POST(String serviceName, Long monitoringId, Long fromHour, OvhAlertLanguageEnum language, String phoneNumberTo, String smsAccount, Long toHour) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/sms"; StringBuilder sb = path(qPath, serviceName, monitoringId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "fromHour", fromHour); addBody(o, "language", language); addBody(o, "phoneNumberTo", phoneNumberTo); addBody(o, "smsAccount", smsAccount); addBody(o, "toHour", toHour); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhSmsAlert.class); }
[ "public", "OvhSmsAlert", "serviceName_serviceMonitoring_monitoringId_alert_sms_POST", "(", "String", "serviceName", ",", "Long", "monitoringId", ",", "Long", "fromHour", ",", "OvhAlertLanguageEnum", "language", ",", "String", "phoneNumberTo", ",", "String", "smsAccount", ",...
Create a SMS alert REST: POST /dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/sms @param smsAccount [required] Your SMS account @param fromHour [required] Daily hour start time for SMS notification @param toHour [required] Daily hour end time for SMS notification @param language [required] Alert language @param phoneNumberTo [required] Alert destination @param serviceName [required] The internal name of your dedicated server @param monitoringId [required] This monitoring id
[ "Create", "a", "SMS", "alert" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L2127-L2138
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_serviceMonitoring_monitoringId_alert_email_alertId_DELETE
public void serviceName_serviceMonitoring_monitoringId_alert_email_alertId_DELETE(String serviceName, Long monitoringId, Long alertId) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/email/{alertId}"; StringBuilder sb = path(qPath, serviceName, monitoringId, alertId); exec(qPath, "DELETE", sb.toString(), null); }
java
public void serviceName_serviceMonitoring_monitoringId_alert_email_alertId_DELETE(String serviceName, Long monitoringId, Long alertId) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/email/{alertId}"; StringBuilder sb = path(qPath, serviceName, monitoringId, alertId); exec(qPath, "DELETE", sb.toString(), null); }
[ "public", "void", "serviceName_serviceMonitoring_monitoringId_alert_email_alertId_DELETE", "(", "String", "serviceName", ",", "Long", "monitoringId", ",", "Long", "alertId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/server/{serviceName}/serviceMon...
Remove this Email alert monitoring REST: DELETE /dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/email/{alertId} @param serviceName [required] The internal name of your dedicated server @param monitoringId [required] This monitoring id @param alertId [required] This monitoring id
[ "Remove", "this", "Email", "alert", "monitoring" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L2222-L2226
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java
ApiOvhDedicatedserver.serviceName_serviceMonitoring_monitoringId_alert_email_POST
public OvhEmailAlert serviceName_serviceMonitoring_monitoringId_alert_email_POST(String serviceName, Long monitoringId, String email, OvhAlertLanguageEnum language) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/email"; StringBuilder sb = path(qPath, serviceName, monitoringId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "email", email); addBody(o, "language", language); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhEmailAlert.class); }
java
public OvhEmailAlert serviceName_serviceMonitoring_monitoringId_alert_email_POST(String serviceName, Long monitoringId, String email, OvhAlertLanguageEnum language) throws IOException { String qPath = "/dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/email"; StringBuilder sb = path(qPath, serviceName, monitoringId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "email", email); addBody(o, "language", language); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhEmailAlert.class); }
[ "public", "OvhEmailAlert", "serviceName_serviceMonitoring_monitoringId_alert_email_POST", "(", "String", "serviceName", ",", "Long", "monitoringId", ",", "String", "email", ",", "OvhAlertLanguageEnum", "language", ")", "throws", "IOException", "{", "String", "qPath", "=", ...
Add a new email alert REST: POST /dedicated/server/{serviceName}/serviceMonitoring/{monitoringId}/alert/email @param language [required] Alert language @param email [required] Alert destination @param serviceName [required] The internal name of your dedicated server @param monitoringId [required] This monitoring id
[ "Add", "a", "new", "email", "alert" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatedserver/src/main/java/net/minidev/ovh/api/ApiOvhDedicatedserver.java#L2251-L2259
train
UrielCh/ovh-java-sdk
ovh-java-sample/src/main/java/net/minidev/ovh/ListDoms.java
ListDoms.main
public static void main(String[] args) throws Exception { if (args.length != 2) { System.out.println("usage: ListDoms nic password"); return; } String nic = args[0]; String password = args[1]; list2(nic, password); }
java
public static void main(String[] args) throws Exception { if (args.length != 2) { System.out.println("usage: ListDoms nic password"); return; } String nic = args[0]; String password = args[1]; list2(nic, password); }
[ "public", "static", "void", "main", "(", "String", "[", "]", "args", ")", "throws", "Exception", "{", "if", "(", "args", ".", "length", "!=", "2", ")", "{", "System", ".", "out", ".", "println", "(", "\"usage: ListDoms nic password\"", ")", ";", "return"...
Login using nic handler
[ "Login", "using", "nic", "handler" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sample/src/main/java/net/minidev/ovh/ListDoms.java#L14-L22
train
UrielCh/ovh-java-sdk
ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java
ApiOvhStore.document_documentId_GET
public OvhDocument document_documentId_GET(String documentId) throws IOException { String qPath = "/store/document/{documentId}"; StringBuilder sb = path(qPath, documentId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDocument.class); }
java
public OvhDocument document_documentId_GET(String documentId) throws IOException { String qPath = "/store/document/{documentId}"; StringBuilder sb = path(qPath, documentId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDocument.class); }
[ "public", "OvhDocument", "document_documentId_GET", "(", "String", "documentId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/store/document/{documentId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "documentId", ")", ";", "Strin...
Get document info REST: GET /store/document/{documentId} @param documentId [required] Id of the document to fetch API beta
[ "Get", "document", "info" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java#L49-L54
train
UrielCh/ovh-java-sdk
ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java
ApiOvhStore.contact_contactId_document_POST
public ArrayList<String> contact_contactId_document_POST(String contactId, String documentId) throws IOException { String qPath = "/store/contact/{contactId}/document"; StringBuilder sb = path(qPath, contactId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "documentId", documentId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
java
public ArrayList<String> contact_contactId_document_POST(String contactId, String documentId) throws IOException { String qPath = "/store/contact/{contactId}/document"; StringBuilder sb = path(qPath, contactId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "documentId", documentId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "String", ">", "contact_contactId_document_POST", "(", "String", "contactId", ",", "String", "documentId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/store/contact/{contactId}/document\"", ";", "StringBuilder", "sb", "=", ...
Add a document to a contact REST: POST /store/contact/{contactId}/document @param documentId [required] Document id to link @param contactId [required] Id of the contact to fetch API beta
[ "Add", "a", "document", "to", "a", "contact" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java#L196-L203
train
UrielCh/ovh-java-sdk
ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java
ApiOvhStore.contact_POST
public OvhContact contact_POST(String city, String country, String email, String firstname, String lastname, String phone, String province, String street, String title, String zip) throws IOException { String qPath = "/store/contact"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "city", city); addBody(o, "country", country); addBody(o, "email", email); addBody(o, "firstname", firstname); addBody(o, "lastname", lastname); addBody(o, "phone", phone); addBody(o, "province", province); addBody(o, "street", street); addBody(o, "title", title); addBody(o, "zip", zip); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhContact.class); }
java
public OvhContact contact_POST(String city, String country, String email, String firstname, String lastname, String phone, String province, String street, String title, String zip) throws IOException { String qPath = "/store/contact"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "city", city); addBody(o, "country", country); addBody(o, "email", email); addBody(o, "firstname", firstname); addBody(o, "lastname", lastname); addBody(o, "phone", phone); addBody(o, "province", province); addBody(o, "street", street); addBody(o, "title", title); addBody(o, "zip", zip); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhContact.class); }
[ "public", "OvhContact", "contact_POST", "(", "String", "city", ",", "String", "country", ",", "String", "email", ",", "String", "firstname", ",", "String", "lastname", ",", "String", "phone", ",", "String", "province", ",", "String", "street", ",", "String", ...
Create a 'marketplace' contact for current nic REST: POST /store/contact @param title [required] Title @param firstname [required] First name @param lastname [required] Last name @param email [required] Email address @param street [required] Street address @param country [required] Country @param zip [required] Zipcode @param province [required] Province name @param city [required] City @param phone [required] Phone number API beta
[ "Create", "a", "marketplace", "contact", "for", "current", "nic" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java#L253-L269
train
UrielCh/ovh-java-sdk
ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java
ApiOvhStore.partner_partnerId_PUT
public OvhPartner partner_partnerId_PUT(String partnerId, String category, String city, String companyNationalIdentificationNumber, String contact, String country, String description, String language, String legalForm, String organisationDisplayName, String organisationName, String otherDetails, String province, String street, String url, String vat, String zip) throws IOException { String qPath = "/store/partner/{partnerId}"; StringBuilder sb = path(qPath, partnerId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "category", category); addBody(o, "city", city); addBody(o, "companyNationalIdentificationNumber", companyNationalIdentificationNumber); addBody(o, "contact", contact); addBody(o, "country", country); addBody(o, "description", description); addBody(o, "language", language); addBody(o, "legalForm", legalForm); addBody(o, "organisationDisplayName", organisationDisplayName); addBody(o, "organisationName", organisationName); addBody(o, "otherDetails", otherDetails); addBody(o, "province", province); addBody(o, "street", street); addBody(o, "url", url); addBody(o, "vat", vat); addBody(o, "zip", zip); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhPartner.class); }
java
public OvhPartner partner_partnerId_PUT(String partnerId, String category, String city, String companyNationalIdentificationNumber, String contact, String country, String description, String language, String legalForm, String organisationDisplayName, String organisationName, String otherDetails, String province, String street, String url, String vat, String zip) throws IOException { String qPath = "/store/partner/{partnerId}"; StringBuilder sb = path(qPath, partnerId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "category", category); addBody(o, "city", city); addBody(o, "companyNationalIdentificationNumber", companyNationalIdentificationNumber); addBody(o, "contact", contact); addBody(o, "country", country); addBody(o, "description", description); addBody(o, "language", language); addBody(o, "legalForm", legalForm); addBody(o, "organisationDisplayName", organisationDisplayName); addBody(o, "organisationName", organisationName); addBody(o, "otherDetails", otherDetails); addBody(o, "province", province); addBody(o, "street", street); addBody(o, "url", url); addBody(o, "vat", vat); addBody(o, "zip", zip); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhPartner.class); }
[ "public", "OvhPartner", "partner_partnerId_PUT", "(", "String", "partnerId", ",", "String", "category", ",", "String", "city", ",", "String", "companyNationalIdentificationNumber", ",", "String", "contact", ",", "String", "country", ",", "String", "description", ",", ...
Edit partner info REST: PUT /store/partner/{partnerId} @param partnerId [required] Id of the partner @param legalForm [required] Legal form @param organisationName [required] Organisation name @param country [required] Country @param city [required] City @param street [required] Street address @param zip [required] ZipCode @param language [required] Language @param description [required] Complete description @param vat [required] VAT number @param category [required] Category @param organisationDisplayName [required] Organisation display name @param companyNationalIdentificationNumber [required] Company national identification number @param url [required] Website address @param otherDetails [required] Complementary information @param province [required] Province name @param contact [required] Linked contact id API beta
[ "Edit", "partner", "info" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java#L372-L394
train
UrielCh/ovh-java-sdk
ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java
ApiOvhStore.partner_partnerId_product_GET
public ArrayList<OvhEditResponse> partner_partnerId_product_GET(String partnerId) throws IOException { String qPath = "/store/partner/{partnerId}/product"; StringBuilder sb = path(qPath, partnerId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public ArrayList<OvhEditResponse> partner_partnerId_product_GET(String partnerId) throws IOException { String qPath = "/store/partner/{partnerId}/product"; StringBuilder sb = path(qPath, partnerId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "ArrayList", "<", "OvhEditResponse", ">", "partner_partnerId_product_GET", "(", "String", "partnerId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/store/partner/{partnerId}/product\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ...
List partner's products REST: GET /store/partner/{partnerId}/product @param partnerId [required] Id of the partner API beta
[ "List", "partner", "s", "products" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java#L528-L533
train
UrielCh/ovh-java-sdk
ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java
ApiOvhStore.partner_partnerId_product_POST
public OvhEditResponse partner_partnerId_product_POST(String partnerId, String category, String description, String name, String otherDetails) throws IOException { String qPath = "/store/partner/{partnerId}/product"; StringBuilder sb = path(qPath, partnerId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "category", category); addBody(o, "description", description); addBody(o, "name", name); addBody(o, "otherDetails", otherDetails); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhEditResponse.class); }
java
public OvhEditResponse partner_partnerId_product_POST(String partnerId, String category, String description, String name, String otherDetails) throws IOException { String qPath = "/store/partner/{partnerId}/product"; StringBuilder sb = path(qPath, partnerId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "category", category); addBody(o, "description", description); addBody(o, "name", name); addBody(o, "otherDetails", otherDetails); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhEditResponse.class); }
[ "public", "OvhEditResponse", "partner_partnerId_product_POST", "(", "String", "partnerId", ",", "String", "category", ",", "String", "description", ",", "String", "name", ",", "String", "otherDetails", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/s...
Create a new product for partner REST: POST /store/partner/{partnerId}/product @param partnerId [required] Id of the partner @param description [required] Description of product @param name [required] Name of product @param otherDetails [required] Additional information @param category [required] Name of product category API beta
[ "Create", "a", "new", "product", "for", "partner" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-store/src/main/java/net/minidev/ovh/api/ApiOvhStore.java#L548-L558
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.newDocument
public static Document newDocument() throws AlipayApiException { Document doc = null; try { doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); } catch (ParserConfigurationException e) { throw new AlipayApiException(e); } return doc; }
java
public static Document newDocument() throws AlipayApiException { Document doc = null; try { doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); } catch (ParserConfigurationException e) { throw new AlipayApiException(e); } return doc; }
[ "public", "static", "Document", "newDocument", "(", ")", "throws", "AlipayApiException", "{", "Document", "doc", "=", "null", ";", "try", "{", "doc", "=", "DocumentBuilderFactory", ".", "newInstance", "(", ")", ".", "newDocumentBuilder", "(", ")", ".", "newDoc...
Creates a new document instance. @return a new document instance @throws ApiException problem creating a new document
[ "Creates", "a", "new", "document", "instance", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L65-L75
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.getDocument
public static Document getDocument(File file) throws AlipayApiException { InputStream in = getInputStream(file); return getDocument(in); }
java
public static Document getDocument(File file) throws AlipayApiException { InputStream in = getInputStream(file); return getDocument(in); }
[ "public", "static", "Document", "getDocument", "(", "File", "file", ")", "throws", "AlipayApiException", "{", "InputStream", "in", "=", "getInputStream", "(", "file", ")", ";", "return", "getDocument", "(", "in", ")", ";", "}" ]
Parses the content of the given XML file as an XML document. @param file the XML file instance @return the document instance representing the entire XML document @throws ApiException problem parsing the XML file
[ "Parses", "the", "content", "of", "the", "given", "XML", "file", "as", "an", "XML", "document", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L84-L87
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.getDocument
public static Document getDocument(InputStream in) throws AlipayApiException { Document doc = null; try { DocumentBuilder builder = DocumentBuilderFactory.newInstance() .newDocumentBuilder(); doc = builder.parse(in); } catch (ParserConfigurationException e) { throw new AlipayApiException(e); } catch (SAXException e) { throw new AlipayApiException("XML_PARSE_ERROR", e); } catch (IOException e) { throw new AlipayApiException("XML_READ_ERROR", e); } finally { if (in != null) { try { in.close(); } catch (IOException e) { // nothing to do } } } return doc; }
java
public static Document getDocument(InputStream in) throws AlipayApiException { Document doc = null; try { DocumentBuilder builder = DocumentBuilderFactory.newInstance() .newDocumentBuilder(); doc = builder.parse(in); } catch (ParserConfigurationException e) { throw new AlipayApiException(e); } catch (SAXException e) { throw new AlipayApiException("XML_PARSE_ERROR", e); } catch (IOException e) { throw new AlipayApiException("XML_READ_ERROR", e); } finally { if (in != null) { try { in.close(); } catch (IOException e) { // nothing to do } } } return doc; }
[ "public", "static", "Document", "getDocument", "(", "InputStream", "in", ")", "throws", "AlipayApiException", "{", "Document", "doc", "=", "null", ";", "try", "{", "DocumentBuilder", "builder", "=", "DocumentBuilderFactory", ".", "newInstance", "(", ")", ".", "n...
Parses the content of the given stream as an XML document. @param in the XML file input stream @return the document instance representing the entire XML document @throws ApiException problem parsing the XML input stream
[ "Parses", "the", "content", "of", "the", "given", "stream", "as", "an", "XML", "document", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L96-L120
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.createRootElement
public static Element createRootElement(String tagName) throws AlipayApiException { Document doc = newDocument(); Element root = doc.createElement(tagName); doc.appendChild(root); return root; }
java
public static Element createRootElement(String tagName) throws AlipayApiException { Document doc = newDocument(); Element root = doc.createElement(tagName); doc.appendChild(root); return root; }
[ "public", "static", "Element", "createRootElement", "(", "String", "tagName", ")", "throws", "AlipayApiException", "{", "Document", "doc", "=", "newDocument", "(", ")", ";", "Element", "root", "=", "doc", ".", "createElement", "(", "tagName", ")", ";", "doc", ...
Creates a root element as well as a new document with specific tag name. @param tagName the name of the root element @return a new element instance @throws ApiException problem generating a new document
[ "Creates", "a", "root", "element", "as", "well", "as", "a", "new", "document", "with", "specific", "tag", "name", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L129-L134
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.getEncoding
private static String getEncoding(String text) { String result = "UTF-8";//默认编码格式 String xml = text.trim(); if (xml.startsWith("<?xml")) { int end = xml.indexOf("?>"); String sub = xml.substring(0, end); StringTokenizer tokens = new StringTokenizer(sub, " =\"\'"); while (tokens.hasMoreTokens()) { String token = tokens.nextToken(); if ("encoding".equals(token)) { if (tokens.hasMoreTokens()) { result = tokens.nextToken(); } break; } } } return result; }
java
private static String getEncoding(String text) { String result = "UTF-8";//默认编码格式 String xml = text.trim(); if (xml.startsWith("<?xml")) { int end = xml.indexOf("?>"); String sub = xml.substring(0, end); StringTokenizer tokens = new StringTokenizer(sub, " =\"\'"); while (tokens.hasMoreTokens()) { String token = tokens.nextToken(); if ("encoding".equals(token)) { if (tokens.hasMoreTokens()) { result = tokens.nextToken(); } break; } } } return result; }
[ "private", "static", "String", "getEncoding", "(", "String", "text", ")", "{", "String", "result", "=", "\"UTF-8\"", ";", "//默认编码格式", "String", "xml", "=", "text", ".", "trim", "(", ")", ";", "if", "(", "xml", ".", "startsWith", "(", "\"<?xml\"", ")", ...
Gets the encoding pattern from given XML file. @param text the context of the XML file @return the encoding pattern string of given XML file
[ "Gets", "the", "encoding", "pattern", "from", "given", "XML", "file", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L166-L189
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.getRootElementFromString
public static Element getRootElementFromString(String payload) throws AlipayApiException { if (payload == null || payload.trim().length() < 1) { throw new AlipayApiException("XML_PAYLOAD_EMPTY"); } byte[] bytes = null; try { payload = StringUtils.stripNonValidXMLCharacters(payload); String encodeString = getEncoding(payload); bytes = payload.getBytes(encodeString); } catch (UnsupportedEncodingException e) { throw new AlipayApiException("XML_ENCODE_ERROR", e); } InputStream in = new ByteArrayInputStream(bytes); return getDocument(in).getDocumentElement(); }
java
public static Element getRootElementFromString(String payload) throws AlipayApiException { if (payload == null || payload.trim().length() < 1) { throw new AlipayApiException("XML_PAYLOAD_EMPTY"); } byte[] bytes = null; try { payload = StringUtils.stripNonValidXMLCharacters(payload); String encodeString = getEncoding(payload); bytes = payload.getBytes(encodeString); } catch (UnsupportedEncodingException e) { throw new AlipayApiException("XML_ENCODE_ERROR", e); } InputStream in = new ByteArrayInputStream(bytes); return getDocument(in).getDocumentElement(); }
[ "public", "static", "Element", "getRootElementFromString", "(", "String", "payload", ")", "throws", "AlipayApiException", "{", "if", "(", "payload", "==", "null", "||", "payload", ".", "trim", "(", ")", ".", "length", "(", ")", "<", "1", ")", "{", "throw",...
Gets the root element from the given XML payload. @param payload the XML payload representing the XML file. @return the root element of parsed document @throws ApiException problem parsing the XML payload
[ "Gets", "the", "root", "element", "from", "the", "given", "XML", "payload", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L198-L216
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.getElement
public static Element getElement(Element parent, String tagName) { List<Element> children = getElements(parent, tagName); if (children.isEmpty()) { return null; } else { return children.get(0); } }
java
public static Element getElement(Element parent, String tagName) { List<Element> children = getElements(parent, tagName); if (children.isEmpty()) { return null; } else { return children.get(0); } }
[ "public", "static", "Element", "getElement", "(", "Element", "parent", ",", "String", "tagName", ")", "{", "List", "<", "Element", ">", "children", "=", "getElements", "(", "parent", ",", "tagName", ")", ";", "if", "(", "children", ".", "isEmpty", "(", "...
Gets the immediately descendant element from the parent element. @param parent the parent element in the element tree @param tagName the specified tag name. @return immediately descendant element of parent element, NULL otherwise.
[ "Gets", "the", "immediately", "descendant", "element", "from", "the", "parent", "element", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L246-L254
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.getChildElement
public static Element getChildElement(Element parent, String tagName) { List<Element> children = getChildElements(parent, tagName); if (children.isEmpty()) { return null; } else { return children.get(0); } }
java
public static Element getChildElement(Element parent, String tagName) { List<Element> children = getChildElements(parent, tagName); if (children.isEmpty()) { return null; } else { return children.get(0); } }
[ "public", "static", "Element", "getChildElement", "(", "Element", "parent", ",", "String", "tagName", ")", "{", "List", "<", "Element", ">", "children", "=", "getChildElements", "(", "parent", ",", "tagName", ")", ";", "if", "(", "children", ".", "isEmpty", ...
Gets the immediately child element from the parent element. @param parent the parent element in the element tree @param tagName the specified tag name @return immediately child element of parent element, NULL otherwise
[ "Gets", "the", "immediately", "child", "element", "from", "the", "parent", "element", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L284-L292
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.getElementValue
public static String getElementValue(Element parent, String tagName) { Element element = getChildElement(parent, tagName); if (element != null) { NodeList nodes = element.getChildNodes(); if (nodes != null && nodes.getLength() > 0) { for (int i = 0; i < nodes.getLength(); i++) { Node node = nodes.item(i); if (node instanceof Text) { return ((Text) node).getData(); } } } } return null; }
java
public static String getElementValue(Element parent, String tagName) { Element element = getChildElement(parent, tagName); if (element != null) { NodeList nodes = element.getChildNodes(); if (nodes != null && nodes.getLength() > 0) { for (int i = 0; i < nodes.getLength(); i++) { Node node = nodes.item(i); if (node instanceof Text) { return ((Text) node).getData(); } } } } return null; }
[ "public", "static", "String", "getElementValue", "(", "Element", "parent", ",", "String", "tagName", ")", "{", "Element", "element", "=", "getChildElement", "(", "parent", ",", "tagName", ")", ";", "if", "(", "element", "!=", "null", ")", "{", "NodeList", ...
Gets the value of the child element by tag name under the given parent element. If there is more than one child element, return the value of the first one. @param parent the parent element @param tagName the tag name of the child element @return value of the first child element, NULL if tag not exists
[ "Gets", "the", "value", "of", "the", "child", "element", "by", "tag", "name", "under", "the", "given", "parent", "element", ".", "If", "there", "is", "more", "than", "one", "child", "element", "return", "the", "value", "of", "the", "first", "one", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L303-L318
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.appendElement
public static Element appendElement(Element parent, String tagName) { Element child = parent.getOwnerDocument().createElement(tagName); parent.appendChild(child); return child; }
java
public static Element appendElement(Element parent, String tagName) { Element child = parent.getOwnerDocument().createElement(tagName); parent.appendChild(child); return child; }
[ "public", "static", "Element", "appendElement", "(", "Element", "parent", ",", "String", "tagName", ")", "{", "Element", "child", "=", "parent", ".", "getOwnerDocument", "(", ")", ".", "createElement", "(", "tagName", ")", ";", "parent", ".", "appendChild", ...
Appends the child element to the parent element. @param parent the parent element @param tagName the child element name @return the child element added to the parent element
[ "Appends", "the", "child", "element", "to", "the", "parent", "element", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L349-L353
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.appendElement
public static Element appendElement(Element parent, String tagName, String value) { Element child = appendElement(parent, tagName); child.appendChild(child.getOwnerDocument().createTextNode(value)); return child; }
java
public static Element appendElement(Element parent, String tagName, String value) { Element child = appendElement(parent, tagName); child.appendChild(child.getOwnerDocument().createTextNode(value)); return child; }
[ "public", "static", "Element", "appendElement", "(", "Element", "parent", ",", "String", "tagName", ",", "String", "value", ")", "{", "Element", "child", "=", "appendElement", "(", "parent", ",", "tagName", ")", ";", "child", ".", "appendChild", "(", "child"...
Appends the child element as well as value to the parent element. @param parent the parent element @param tagName the child element name @param value the child element value @return the child element added to the parent element
[ "Appends", "the", "child", "element", "as", "well", "as", "value", "to", "the", "parent", "element", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L363-L368
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.appendElement
public static void appendElement(Element parent, Element child) { Node tmp = parent.getOwnerDocument().importNode(child, true); parent.appendChild(tmp); }
java
public static void appendElement(Element parent, Element child) { Node tmp = parent.getOwnerDocument().importNode(child, true); parent.appendChild(tmp); }
[ "public", "static", "void", "appendElement", "(", "Element", "parent", ",", "Element", "child", ")", "{", "Node", "tmp", "=", "parent", ".", "getOwnerDocument", "(", ")", ".", "importNode", "(", "child", ",", "true", ")", ";", "parent", ".", "appendChild",...
Appends another element as a child element. @param parent the parent element @param child the child element to append
[ "Appends", "another", "element", "as", "a", "child", "element", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L376-L379
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.appendCDATAElement
public static Element appendCDATAElement(Element parent, String tagName, String value) { Element child = appendElement(parent, tagName); if (value == null) { // avoid "null" word in the XML payload value = ""; } Node cdata = child.getOwnerDocument().createCDATASection(value); child.appendChild(cdata); return child; }
java
public static Element appendCDATAElement(Element parent, String tagName, String value) { Element child = appendElement(parent, tagName); if (value == null) { // avoid "null" word in the XML payload value = ""; } Node cdata = child.getOwnerDocument().createCDATASection(value); child.appendChild(cdata); return child; }
[ "public", "static", "Element", "appendCDATAElement", "(", "Element", "parent", ",", "String", "tagName", ",", "String", "value", ")", "{", "Element", "child", "=", "appendElement", "(", "parent", ",", "tagName", ")", ";", "if", "(", "value", "==", "null", ...
Appends the CDATA element to the parent element. @param parent the parent element @param tagName the CDATA element name @param value the CDATA element value @return the CDATA element added to the parent element
[ "Appends", "the", "CDATA", "element", "to", "the", "parent", "element", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L389-L399
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.xmlToString
public static String xmlToString(File file) throws AlipayApiException { Element root = getRootElementFromFile(file); return nodeToString(root); }
java
public static String xmlToString(File file) throws AlipayApiException { Element root = getRootElementFromFile(file); return nodeToString(root); }
[ "public", "static", "String", "xmlToString", "(", "File", "file", ")", "throws", "AlipayApiException", "{", "Element", "root", "=", "getRootElementFromFile", "(", "file", ")", ";", "return", "nodeToString", "(", "root", ")", ";", "}" ]
Converts the an XML file to XML payload. @param file the XML file instance @return the XML payload representing the XML file @throws ApiException problem transforming XML to string
[ "Converts", "the", "an", "XML", "file", "to", "XML", "payload", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L465-L468
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.xmlToString
public static String xmlToString(InputStream in) throws AlipayApiException { Element root = getRootElementFromStream(in); return nodeToString(root); }
java
public static String xmlToString(InputStream in) throws AlipayApiException { Element root = getRootElementFromStream(in); return nodeToString(root); }
[ "public", "static", "String", "xmlToString", "(", "InputStream", "in", ")", "throws", "AlipayApiException", "{", "Element", "root", "=", "getRootElementFromStream", "(", "in", ")", ";", "return", "nodeToString", "(", "root", ")", ";", "}" ]
Converts the an XML file input stream to XML payload. @param in the XML file input stream @return the payload represents the XML file @throws ApiException problem transforming XML to string
[ "Converts", "the", "an", "XML", "file", "input", "stream", "to", "XML", "payload", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L477-L480
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.setNamespace
public static void setNamespace(Element element, String namespace, String schemaLocation) { element.setAttributeNS(XMLConstants.XMLNS_ATTRIBUTE_NS_URI, XMLConstants.XMLNS_ATTRIBUTE, namespace); element.setAttributeNS(XMLConstants.XMLNS_ATTRIBUTE_NS_URI, XMLNS_XSI, XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI); element.setAttributeNS(XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI, XSI_SCHEMA_LOCATION, schemaLocation); }
java
public static void setNamespace(Element element, String namespace, String schemaLocation) { element.setAttributeNS(XMLConstants.XMLNS_ATTRIBUTE_NS_URI, XMLConstants.XMLNS_ATTRIBUTE, namespace); element.setAttributeNS(XMLConstants.XMLNS_ATTRIBUTE_NS_URI, XMLNS_XSI, XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI); element.setAttributeNS(XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI, XSI_SCHEMA_LOCATION, schemaLocation); }
[ "public", "static", "void", "setNamespace", "(", "Element", "element", ",", "String", "namespace", ",", "String", "schemaLocation", ")", "{", "element", ".", "setAttributeNS", "(", "XMLConstants", ".", "XMLNS_ATTRIBUTE_NS_URI", ",", "XMLConstants", ".", "XMLNS_ATTRI...
Sets the namespace to specific element. @param element the element to set @param namespace the namespace to set @param schemaLocation the XML schema file location URI
[ "Sets", "the", "namespace", "to", "specific", "element", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L600-L608
train
antopen/alipay-sdk-java
src/main/java/com/alipay/api/internal/util/XmlUtils.java
XmlUtils.encodeXml
public static String encodeXml(String payload) throws AlipayApiException { Element root = createRootElement(XMLConstants.XML_NS_PREFIX); root.appendChild(root.getOwnerDocument().createTextNode(payload)); return childNodeToString(root.getFirstChild()); }
java
public static String encodeXml(String payload) throws AlipayApiException { Element root = createRootElement(XMLConstants.XML_NS_PREFIX); root.appendChild(root.getOwnerDocument().createTextNode(payload)); return childNodeToString(root.getFirstChild()); }
[ "public", "static", "String", "encodeXml", "(", "String", "payload", ")", "throws", "AlipayApiException", "{", "Element", "root", "=", "createRootElement", "(", "XMLConstants", ".", "XML_NS_PREFIX", ")", ";", "root", ".", "appendChild", "(", "root", ".", "getOwn...
Encode the XML payload to legality character. @param payload the XML payload to encode @return the encoded XML payload @throws ApiException problem encoding the XML payload
[ "Encode", "the", "XML", "payload", "to", "legality", "character", "." ]
e82aeac7d0239330ee173c7e393596e51e41c1cd
https://github.com/antopen/alipay-sdk-java/blob/e82aeac7d0239330ee173c7e393596e51e41c1cd/src/main/java/com/alipay/api/internal/util/XmlUtils.java#L617-L621
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_reinstall_POST
public OvhTask serviceName_reinstall_POST(String serviceName, Boolean doNotSendPassword, String language, Long[] softwareId, String[] sshKey, Long templateId) throws IOException { String qPath = "/vps/{serviceName}/reinstall"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "doNotSendPassword", doNotSendPassword); addBody(o, "language", language); addBody(o, "softwareId", softwareId); addBody(o, "sshKey", sshKey); addBody(o, "templateId", templateId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_reinstall_POST(String serviceName, Boolean doNotSendPassword, String language, Long[] softwareId, String[] sshKey, Long templateId) throws IOException { String qPath = "/vps/{serviceName}/reinstall"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "doNotSendPassword", doNotSendPassword); addBody(o, "language", language); addBody(o, "softwareId", softwareId); addBody(o, "sshKey", sshKey); addBody(o, "templateId", templateId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_reinstall_POST", "(", "String", "serviceName", ",", "Boolean", "doNotSendPassword", ",", "String", "language", ",", "Long", "[", "]", "softwareId", ",", "String", "[", "]", "sshKey", ",", "Long", "templateId", ")", "throws", "IO...
Reinstall the virtual server REST: POST /vps/{serviceName}/reinstall @param doNotSendPassword [required] If asked, the installation password will NOT be sent (only if sshKey defined) @param softwareId [required] Id of the vps.Software type fetched in /template/{id}/software @param language [required] Distribution language. default : en @param templateId [required] Id of the vps.Template fetched in /templates list @param sshKey [required] SSH key names to pre-install on your VPS (name from /me/sshKey) @param serviceName [required] The internal name of your VPS offer
[ "Reinstall", "the", "virtual", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L84-L95
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_automatedBackup_restorePoints_GET
public ArrayList<Date> serviceName_automatedBackup_restorePoints_GET(String serviceName, OvhRestoreStateEnum state) throws IOException { String qPath = "/vps/{serviceName}/automatedBackup/restorePoints"; StringBuilder sb = path(qPath, serviceName); query(sb, "state", state); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
java
public ArrayList<Date> serviceName_automatedBackup_restorePoints_GET(String serviceName, OvhRestoreStateEnum state) throws IOException { String qPath = "/vps/{serviceName}/automatedBackup/restorePoints"; StringBuilder sb = path(qPath, serviceName); query(sb, "state", state); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "Date", ">", "serviceName_automatedBackup_restorePoints_GET", "(", "String", "serviceName", ",", "OvhRestoreStateEnum", "state", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/automatedBackup/restorePoints\"", ";",...
Get available Restore Points REST: GET /vps/{serviceName}/automatedBackup/restorePoints @param state [required] The state of the restore point @param serviceName [required] The internal name of your VPS offer
[ "Get", "available", "Restore", "Points" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L104-L110
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_openConsoleAccess_POST
public OvhVnc serviceName_openConsoleAccess_POST(String serviceName, OvhVncProtocolEnum protocol) throws IOException { String qPath = "/vps/{serviceName}/openConsoleAccess"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "protocol", protocol); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhVnc.class); }
java
public OvhVnc serviceName_openConsoleAccess_POST(String serviceName, OvhVncProtocolEnum protocol) throws IOException { String qPath = "/vps/{serviceName}/openConsoleAccess"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "protocol", protocol); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhVnc.class); }
[ "public", "OvhVnc", "serviceName_openConsoleAccess_POST", "(", "String", "serviceName", ",", "OvhVncProtocolEnum", "protocol", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/openConsoleAccess\"", ";", "StringBuilder", "sb", "=", "path", "...
Return the necessary informations to open a VNC connection to your VPS REST: POST /vps/{serviceName}/openConsoleAccess @param protocol [required] The console protocol you want @param serviceName [required] The internal name of your VPS offer
[ "Return", "the", "necessary", "informations", "to", "open", "a", "VNC", "connection", "to", "your", "VPS" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L341-L348
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_use_GET
public OvhUnitAndValue<Double> serviceName_use_GET(String serviceName, OvhVpsStatisticTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/use"; StringBuilder sb = path(qPath, serviceName); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public OvhUnitAndValue<Double> serviceName_use_GET(String serviceName, OvhVpsStatisticTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/use"; StringBuilder sb = path(qPath, serviceName); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "OvhUnitAndValue", "<", "Double", ">", "serviceName_use_GET", "(", "String", "serviceName", ",", "OvhVpsStatisticTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/use\"", ";", "StringBuilder", "sb", "=", "pat...
Return many statistics about the virtual machine at that time REST: GET /vps/{serviceName}/use @param type [required] The type of statistic to be fetched @param serviceName [required] The internal name of your VPS offer
[ "Return", "many", "statistics", "about", "the", "virtual", "machine", "at", "that", "time" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L357-L363
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_tasks_GET
public ArrayList<Long> serviceName_tasks_GET(String serviceName, OvhTaskStateEnum state, OvhTaskTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/tasks"; StringBuilder sb = path(qPath, serviceName); query(sb, "state", state); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
java
public ArrayList<Long> serviceName_tasks_GET(String serviceName, OvhTaskStateEnum state, OvhTaskTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/tasks"; StringBuilder sb = path(qPath, serviceName); query(sb, "state", state); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
[ "public", "ArrayList", "<", "Long", ">", "serviceName_tasks_GET", "(", "String", "serviceName", ",", "OvhTaskStateEnum", "state", ",", "OvhTaskTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/tasks\"", ";", "StringBui...
Tasks associated to this virtual server REST: GET /vps/{serviceName}/tasks @param type [required] Filter the value of type property (=) @param state [required] Filter the value of state property (=) @param serviceName [required] The internal name of your VPS offer
[ "Tasks", "associated", "to", "this", "virtual", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L388-L395
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_distribution_software_GET
public ArrayList<Long> serviceName_distribution_software_GET(String serviceName) throws IOException { String qPath = "/vps/{serviceName}/distribution/software"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
java
public ArrayList<Long> serviceName_distribution_software_GET(String serviceName) throws IOException { String qPath = "/vps/{serviceName}/distribution/software"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
[ "public", "ArrayList", "<", "Long", ">", "serviceName_distribution_software_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/distribution/software\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPat...
List available softwares for this template Id REST: GET /vps/{serviceName}/distribution/software @param serviceName [required] The internal name of your VPS offer
[ "List", "available", "softwares", "for", "this", "template", "Id" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L445-L450
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_veeam_restorePoints_GET
public ArrayList<Long> serviceName_veeam_restorePoints_GET(String serviceName, Date creationTime) throws IOException { String qPath = "/vps/{serviceName}/veeam/restorePoints"; StringBuilder sb = path(qPath, serviceName); query(sb, "creationTime", creationTime); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
java
public ArrayList<Long> serviceName_veeam_restorePoints_GET(String serviceName, Date creationTime) throws IOException { String qPath = "/vps/{serviceName}/veeam/restorePoints"; StringBuilder sb = path(qPath, serviceName); query(sb, "creationTime", creationTime); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
[ "public", "ArrayList", "<", "Long", ">", "serviceName_veeam_restorePoints_GET", "(", "String", "serviceName", ",", "Date", "creationTime", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/veeam/restorePoints\"", ";", "StringBuilder", "sb", ...
Veeam restore points for the VPS REST: GET /vps/{serviceName}/veeam/restorePoints @param creationTime [required] Filter the value of creationTime property (like) @param serviceName [required] The internal name of your VPS offer
[ "Veeam", "restore", "points", "for", "the", "VPS" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L717-L723
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_disks_id_use_GET
public OvhUnitAndValue<Double> serviceName_disks_id_use_GET(String serviceName, Long id, OvhStatisticTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/disks/{id}/use"; StringBuilder sb = path(qPath, serviceName, id); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public OvhUnitAndValue<Double> serviceName_disks_id_use_GET(String serviceName, Long id, OvhStatisticTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/disks/{id}/use"; StringBuilder sb = path(qPath, serviceName, id); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "OvhUnitAndValue", "<", "Double", ">", "serviceName_disks_id_use_GET", "(", "String", "serviceName", ",", "Long", "id", ",", "OvhStatisticTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/disks/{id}/use\"", ";"...
Return many statistics about the disk at that time REST: GET /vps/{serviceName}/disks/{id}/use @param type [required] The type of statistic to be fetched @param serviceName [required] The internal name of your VPS offer @param id [required] Id of the object
[ "Return", "many", "statistics", "about", "the", "disk", "at", "that", "time" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L908-L914
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_disks_id_monitoring_GET
public OvhUnitAndValues<OvhVpsTimestampValue> serviceName_disks_id_monitoring_GET(String serviceName, Long id, OvhVpsMonitoringPeriodEnum period, OvhStatisticTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/disks/{id}/monitoring"; StringBuilder sb = path(qPath, serviceName, id); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t8); }
java
public OvhUnitAndValues<OvhVpsTimestampValue> serviceName_disks_id_monitoring_GET(String serviceName, Long id, OvhVpsMonitoringPeriodEnum period, OvhStatisticTypeEnum type) throws IOException { String qPath = "/vps/{serviceName}/disks/{id}/monitoring"; StringBuilder sb = path(qPath, serviceName, id); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t8); }
[ "public", "OvhUnitAndValues", "<", "OvhVpsTimestampValue", ">", "serviceName_disks_id_monitoring_GET", "(", "String", "serviceName", ",", "Long", "id", ",", "OvhVpsMonitoringPeriodEnum", "period", ",", "OvhStatisticTypeEnum", "type", ")", "throws", "IOException", "{", "St...
Return many statistics about the disk for a given period REST: GET /vps/{serviceName}/disks/{id}/monitoring @param type [required] The type of statistic to be fetched @param period [required] The period the statistics are fetched for @param serviceName [required] The internal name of your VPS offer @param id [required] Id of the object
[ "Return", "many", "statistics", "about", "the", "disk", "for", "a", "given", "period" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L925-L932
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_ipCountryAvailable_GET
public ArrayList<OvhGeolocationEnum> serviceName_ipCountryAvailable_GET(String serviceName) throws IOException { String qPath = "/vps/{serviceName}/ipCountryAvailable"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t9); }
java
public ArrayList<OvhGeolocationEnum> serviceName_ipCountryAvailable_GET(String serviceName) throws IOException { String qPath = "/vps/{serviceName}/ipCountryAvailable"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t9); }
[ "public", "ArrayList", "<", "OvhGeolocationEnum", ">", "serviceName_ipCountryAvailable_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/ipCountryAvailable\"", ";", "StringBuilder", "sb", "=", "path", "(",...
Get the countries you can select for your IPs geolocation REST: GET /vps/{serviceName}/ipCountryAvailable @param serviceName [required] The internal name of your VPS offer
[ "Get", "the", "countries", "you", "can", "select", "for", "your", "IPs", "geolocation" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L940-L945
train
UrielCh/ovh-java-sdk
ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java
ApiOvhVps.serviceName_models_GET
public ArrayList<OvhModel> serviceName_models_GET(String serviceName) throws IOException { String qPath = "/vps/{serviceName}/models"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
java
public ArrayList<OvhModel> serviceName_models_GET(String serviceName) throws IOException { String qPath = "/vps/{serviceName}/models"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
[ "public", "ArrayList", "<", "OvhModel", ">", "serviceName_models_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/vps/{serviceName}/models\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "serviceName"...
Return all models for the range of the virtual server REST: GET /vps/{serviceName}/models @param serviceName [required] The internal name of your VPS offer
[ "Return", "all", "models", "for", "the", "range", "of", "the", "virtual", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vps/src/main/java/net/minidev/ovh/api/ApiOvhVps.java#L1023-L1028
train
UrielCh/ovh-java-sdk
ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java
ApiOvhLicenseoffice.serviceName_user_activationEmail_changePassword_POST
public OvhOfficeTask serviceName_user_activationEmail_changePassword_POST(String serviceName, String activationEmail, String notifyEmail, String password, Boolean shouldSendMail) throws IOException { String qPath = "/license/office/{serviceName}/user/{activationEmail}/changePassword"; StringBuilder sb = path(qPath, serviceName, activationEmail); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "notifyEmail", notifyEmail); addBody(o, "password", password); addBody(o, "shouldSendMail", shouldSendMail); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOfficeTask.class); }
java
public OvhOfficeTask serviceName_user_activationEmail_changePassword_POST(String serviceName, String activationEmail, String notifyEmail, String password, Boolean shouldSendMail) throws IOException { String qPath = "/license/office/{serviceName}/user/{activationEmail}/changePassword"; StringBuilder sb = path(qPath, serviceName, activationEmail); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "notifyEmail", notifyEmail); addBody(o, "password", password); addBody(o, "shouldSendMail", shouldSendMail); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOfficeTask.class); }
[ "public", "OvhOfficeTask", "serviceName_user_activationEmail_changePassword_POST", "(", "String", "serviceName", ",", "String", "activationEmail", ",", "String", "notifyEmail", ",", "String", "password", ",", "Boolean", "shouldSendMail", ")", "throws", "IOException", "{", ...
Change or reset user's password REST: POST /license/office/{serviceName}/user/{activationEmail}/changePassword @param shouldSendMail [required] Specify if the new password should be send via email or not. @param password [required] New password or empty to receive a generated password by email @param notifyEmail [required] Email to send the new password to. Default is nicAdmin's email. @param serviceName [required] The unique identifier of your Office service @param activationEmail [required] Email used to activate Microsoft Office
[ "Change", "or", "reset", "user", "s", "password" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java#L132-L141
train
UrielCh/ovh-java-sdk
ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java
ApiOvhLicenseoffice.serviceName_user_activationEmail_DELETE
public OvhOfficeTask serviceName_user_activationEmail_DELETE(String serviceName, String activationEmail) throws IOException { String qPath = "/license/office/{serviceName}/user/{activationEmail}"; StringBuilder sb = path(qPath, serviceName, activationEmail); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhOfficeTask.class); }
java
public OvhOfficeTask serviceName_user_activationEmail_DELETE(String serviceName, String activationEmail) throws IOException { String qPath = "/license/office/{serviceName}/user/{activationEmail}"; StringBuilder sb = path(qPath, serviceName, activationEmail); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhOfficeTask.class); }
[ "public", "OvhOfficeTask", "serviceName_user_activationEmail_DELETE", "(", "String", "serviceName", ",", "String", "activationEmail", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/license/office/{serviceName}/user/{activationEmail}\"", ";", "StringBuilder", "sb...
Delete existing office user REST: DELETE /license/office/{serviceName}/user/{activationEmail} @param serviceName [required] The unique identifier of your Office service @param activationEmail [required] Email used to activate Microsoft Office
[ "Delete", "existing", "office", "user" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java#L178-L183
train
UrielCh/ovh-java-sdk
ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java
ApiOvhLicenseoffice.serviceName_user_GET
public ArrayList<String> serviceName_user_GET(String serviceName, String activationEmail, String firstName, String lastName, OvhLicenceEnum[] licences) throws IOException { String qPath = "/license/office/{serviceName}/user"; StringBuilder sb = path(qPath, serviceName); query(sb, "activationEmail", activationEmail); query(sb, "firstName", firstName); query(sb, "lastName", lastName); query(sb, "licences", licences); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> serviceName_user_GET(String serviceName, String activationEmail, String firstName, String lastName, OvhLicenceEnum[] licences) throws IOException { String qPath = "/license/office/{serviceName}/user"; StringBuilder sb = path(qPath, serviceName); query(sb, "activationEmail", activationEmail); query(sb, "firstName", firstName); query(sb, "lastName", lastName); query(sb, "licences", licences); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "serviceName_user_GET", "(", "String", "serviceName", ",", "String", "activationEmail", ",", "String", "firstName", ",", "String", "lastName", ",", "OvhLicenceEnum", "[", "]", "licences", ")", "throws", "IOException", "{"...
Accounts associated to this office tenant REST: GET /license/office/{serviceName}/user @param firstName [required] Filter the value of firstName property (like) @param licences [required] Filter the value of licences property (=) @param lastName [required] Filter the value of lastName property (like) @param activationEmail [required] Filter the value of activationEmail property (like) @param serviceName [required] The unique identifier of your Office service
[ "Accounts", "associated", "to", "this", "office", "tenant" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java#L195-L204
train
UrielCh/ovh-java-sdk
ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java
ApiOvhLicenseoffice.serviceName_user_POST
public OvhOfficeTask serviceName_user_POST(String serviceName, String domain, String firstName, String lastName, OvhLicenceEnum licence, String login) throws IOException { String qPath = "/license/office/{serviceName}/user"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "firstName", firstName); addBody(o, "lastName", lastName); addBody(o, "licence", licence); addBody(o, "login", login); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOfficeTask.class); }
java
public OvhOfficeTask serviceName_user_POST(String serviceName, String domain, String firstName, String lastName, OvhLicenceEnum licence, String login) throws IOException { String qPath = "/license/office/{serviceName}/user"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "firstName", firstName); addBody(o, "lastName", lastName); addBody(o, "licence", licence); addBody(o, "login", login); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOfficeTask.class); }
[ "public", "OvhOfficeTask", "serviceName_user_POST", "(", "String", "serviceName", ",", "String", "domain", ",", "String", "firstName", ",", "String", "lastName", ",", "OvhLicenceEnum", "licence", ",", "String", "login", ")", "throws", "IOException", "{", "String", ...
Create new office user REST: POST /license/office/{serviceName}/user @param lastName [required] Account last name @param firstName [required] Account first name @param login [required] Account login @param licence [required] Office licence @param domain [required] Office domain @param serviceName [required] The unique identifier of your Office service
[ "Create", "new", "office", "user" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java#L217-L228
train
UrielCh/ovh-java-sdk
ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java
ApiOvhLicenseoffice.serviceName_usageStatistics_GET
public ArrayList<OvhStatistics> serviceName_usageStatistics_GET(String serviceName, Date from, Date to) throws IOException { String qPath = "/license/office/{serviceName}/usageStatistics"; StringBuilder sb = path(qPath, serviceName); query(sb, "from", from); query(sb, "to", to); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
java
public ArrayList<OvhStatistics> serviceName_usageStatistics_GET(String serviceName, Date from, Date to) throws IOException { String qPath = "/license/office/{serviceName}/usageStatistics"; StringBuilder sb = path(qPath, serviceName); query(sb, "from", from); query(sb, "to", to); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
[ "public", "ArrayList", "<", "OvhStatistics", ">", "serviceName_usageStatistics_GET", "(", "String", "serviceName", ",", "Date", "from", ",", "Date", "to", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/license/office/{serviceName}/usageStatistics\"", ";"...
Shows the subscriptions' usage statistics for the given time period REST: GET /license/office/{serviceName}/usageStatistics @param to [required] Period's end point. @param from [required] Period's start point. @param serviceName [required] The unique identifier of your Office service
[ "Shows", "the", "subscriptions", "usage", "statistics", "for", "the", "given", "time", "period" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licenseoffice/src/main/java/net/minidev/ovh/api/ApiOvhLicenseoffice.java#L238-L245
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cdnwebstorage/src/main/java/net/minidev/ovh/api/ApiOvhCdnwebstorage.java
ApiOvhCdnwebstorage.serviceName_statistics_GET
public ArrayList<OvhStatsDataType> serviceName_statistics_GET(String serviceName, OvhStatsPeriodEnum period, OvhStatsTypeEnum type) throws IOException { String qPath = "/cdn/webstorage/{serviceName}/statistics"; StringBuilder sb = path(qPath, serviceName); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<OvhStatsDataType> serviceName_statistics_GET(String serviceName, OvhStatsPeriodEnum period, OvhStatsTypeEnum type) throws IOException { String qPath = "/cdn/webstorage/{serviceName}/statistics"; StringBuilder sb = path(qPath, serviceName); query(sb, "period", period); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "OvhStatsDataType", ">", "serviceName_statistics_GET", "(", "String", "serviceName", ",", "OvhStatsPeriodEnum", "period", ",", "OvhStatsTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cdn/webstorage/{serviceNam...
Return stats about bandwidth consumption REST: GET /cdn/webstorage/{serviceName}/statistics @param type [required] @param period [required] @param serviceName [required] The internal name of your CDN Static offer
[ "Return", "stats", "about", "bandwidth", "consumption" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cdnwebstorage/src/main/java/net/minidev/ovh/api/ApiOvhCdnwebstorage.java#L85-L92
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.mailingListLimits_GET
public OvhDomainMlLimits mailingListLimits_GET(Boolean moderatorMessage) throws IOException { String qPath = "/email/domain/mailingListLimits"; StringBuilder sb = path(qPath); query(sb, "moderatorMessage", moderatorMessage); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDomainMlLimits.class); }
java
public OvhDomainMlLimits mailingListLimits_GET(Boolean moderatorMessage) throws IOException { String qPath = "/email/domain/mailingListLimits"; StringBuilder sb = path(qPath); query(sb, "moderatorMessage", moderatorMessage); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDomainMlLimits.class); }
[ "public", "OvhDomainMlLimits", "mailingListLimits_GET", "(", "Boolean", "moderatorMessage", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/mailingListLimits\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(",...
Get limits of mailing list REST: GET /email/domain/mailingListLimits @param moderatorMessage [required] If true, messages are moderate
[ "Get", "limits", "of", "mailing", "list" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L73-L79
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.delegatedAccount_email_filter_POST
public OvhTaskFilter delegatedAccount_email_filter_POST(String email, OvhDomainFilterActionEnum action, String actionParam, Boolean active, String header, String name, OvhDomainFilterOperandEnum operand, Long priority, String value) throws IOException { String qPath = "/email/domain/delegatedAccount/{email}/filter"; StringBuilder sb = path(qPath, email); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "action", action); addBody(o, "actionParam", actionParam); addBody(o, "active", active); addBody(o, "header", header); addBody(o, "name", name); addBody(o, "operand", operand); addBody(o, "priority", priority); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskFilter.class); }
java
public OvhTaskFilter delegatedAccount_email_filter_POST(String email, OvhDomainFilterActionEnum action, String actionParam, Boolean active, String header, String name, OvhDomainFilterOperandEnum operand, Long priority, String value) throws IOException { String qPath = "/email/domain/delegatedAccount/{email}/filter"; StringBuilder sb = path(qPath, email); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "action", action); addBody(o, "actionParam", actionParam); addBody(o, "active", active); addBody(o, "header", header); addBody(o, "name", name); addBody(o, "operand", operand); addBody(o, "priority", priority); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskFilter.class); }
[ "public", "OvhTaskFilter", "delegatedAccount_email_filter_POST", "(", "String", "email", ",", "OvhDomainFilterActionEnum", "action", ",", "String", "actionParam", ",", "Boolean", "active", ",", "String", "header", ",", "String", "name", ",", "OvhDomainFilterOperandEnum", ...
Create new filter for account REST: POST /email/domain/delegatedAccount/{email}/filter @param value [required] Rule parameter of filter @param action [required] Action of filter @param actionParam [required] Action parameter of filter @param priority [required] Priority of filter @param operand [required] Rule of filter @param header [required] Header to be filtered @param active [required] If true filter is active @param name [required] Filter name @param email [required] Email
[ "Create", "new", "filter", "for", "account" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L120-L134
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_GET
public ArrayList<String> domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_GET(String domain, String accountName, String destinationServiceName, Long quota) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}/migrate/{destinationServiceName}/destinationEmailAddress"; StringBuilder sb = path(qPath, domain, accountName, destinationServiceName); query(sb, "quota", quota); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_GET(String domain, String accountName, String destinationServiceName, Long quota) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}/migrate/{destinationServiceName}/destinationEmailAddress"; StringBuilder sb = path(qPath, domain, accountName, destinationServiceName); query(sb, "quota", quota); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_GET", "(", "String", "domain", ",", "String", "accountName", ",", "String", "destinationServiceName", ",", "Long", "quota", ")", "throws", "IOExceptio...
List of email address available for migration REST: GET /email/domain/{domain}/account/{accountName}/migrate/{destinationServiceName}/destinationEmailAddress @param quota [required] Account maximum size @param domain [required] Name of your domain name @param accountName [required] Name of account @param destinationServiceName [required] Service name allowed as migration destination API beta
[ "List", "of", "email", "address", "available", "for", "migration" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L467-L473
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_destinationEmailAddress_checkMigrate_GET
public OvhMigrationCheckStruct domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_destinationEmailAddress_checkMigrate_GET(String domain, String accountName, String destinationServiceName, String destinationEmailAddress) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}/migrate/{destinationServiceName}/destinationEmailAddress/{destinationEmailAddress}/checkMigrate"; StringBuilder sb = path(qPath, domain, accountName, destinationServiceName, destinationEmailAddress); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhMigrationCheckStruct.class); }
java
public OvhMigrationCheckStruct domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_destinationEmailAddress_checkMigrate_GET(String domain, String accountName, String destinationServiceName, String destinationEmailAddress) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}/migrate/{destinationServiceName}/destinationEmailAddress/{destinationEmailAddress}/checkMigrate"; StringBuilder sb = path(qPath, domain, accountName, destinationServiceName, destinationEmailAddress); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhMigrationCheckStruct.class); }
[ "public", "OvhMigrationCheckStruct", "domain_account_accountName_migrate_destinationServiceName_destinationEmailAddress_destinationEmailAddress_checkMigrate_GET", "(", "String", "domain", ",", "String", "accountName", ",", "String", "destinationServiceName", ",", "String", "destinationEm...
Check if it's possible to migrate REST: GET /email/domain/{domain}/account/{accountName}/migrate/{destinationServiceName}/destinationEmailAddress/{destinationEmailAddress}/checkMigrate @param domain [required] Name of your domain name @param accountName [required] Name of account @param destinationServiceName [required] Service name allowed as migration destination @param destinationEmailAddress [required] Destination account name API beta
[ "Check", "if", "it", "s", "possible", "to", "migrate" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L507-L512
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_account_accountName_filter_name_rule_POST
public OvhTaskFilter domain_account_accountName_filter_name_rule_POST(String domain, String accountName, String name, String header, OvhDomainFilterOperandEnum operand, String value) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}/filter/{name}/rule"; StringBuilder sb = path(qPath, domain, accountName, name); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "header", header); addBody(o, "operand", operand); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskFilter.class); }
java
public OvhTaskFilter domain_account_accountName_filter_name_rule_POST(String domain, String accountName, String name, String header, OvhDomainFilterOperandEnum operand, String value) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}/filter/{name}/rule"; StringBuilder sb = path(qPath, domain, accountName, name); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "header", header); addBody(o, "operand", operand); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskFilter.class); }
[ "public", "OvhTaskFilter", "domain_account_accountName_filter_name_rule_POST", "(", "String", "domain", ",", "String", "accountName", ",", "String", "name", ",", "String", "header", ",", "OvhDomainFilterOperandEnum", "operand", ",", "String", "value", ")", "throws", "IO...
Create new rule for filter REST: POST /email/domain/{domain}/account/{accountName}/filter/{name}/rule @param value [required] Rule parameter of filter @param operand [required] Rule of filter @param header [required] Header to be filtered @param domain [required] Name of your domain name @param accountName [required] Name of account @param name [required] Filter name
[ "Create", "new", "rule", "for", "filter" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L703-L712
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_account_accountName_DELETE
public OvhTaskPop domain_account_accountName_DELETE(String domain, String accountName) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}"; StringBuilder sb = path(qPath, domain, accountName); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTaskPop.class); }
java
public OvhTaskPop domain_account_accountName_DELETE(String domain, String accountName) throws IOException { String qPath = "/email/domain/{domain}/account/{accountName}"; StringBuilder sb = path(qPath, domain, accountName); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTaskPop.class); }
[ "public", "OvhTaskPop", "domain_account_accountName_DELETE", "(", "String", "domain", ",", "String", "accountName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/account/{accountName}\"", ";", "StringBuilder", "sb", "=", "path", "(",...
Delete an existing mailbox in server REST: DELETE /email/domain/{domain}/account/{accountName} @param domain [required] Name of your domain name @param accountName [required] Name of account
[ "Delete", "an", "existing", "mailbox", "in", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L856-L861
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_account_POST
public OvhTaskPop domain_account_POST(String domain, String accountName, String description, String password, Long size) throws IOException { String qPath = "/email/domain/{domain}/account"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "accountName", accountName); addBody(o, "description", description); addBody(o, "password", password); addBody(o, "size", size); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskPop.class); }
java
public OvhTaskPop domain_account_POST(String domain, String accountName, String description, String password, Long size) throws IOException { String qPath = "/email/domain/{domain}/account"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "accountName", accountName); addBody(o, "description", description); addBody(o, "password", password); addBody(o, "size", size); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskPop.class); }
[ "public", "OvhTaskPop", "domain_account_POST", "(", "String", "domain", ",", "String", "accountName", ",", "String", "description", ",", "String", "password", ",", "Long", "size", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/a...
Create new mailbox in server REST: POST /email/domain/{domain}/account @param accountName [required] Account name @param password [required] Account password @param description [required] Description Account @param size [required] Account size in bytes (default : 5000000000) (possible values : /email/domain/{domain}/allowedAccountSize ) @param domain [required] Name of your domain name
[ "Create", "new", "mailbox", "in", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L890-L900
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_responder_POST
public OvhTaskSpecialAccount domain_responder_POST(String domain, String account, String content, Boolean copy, String copyTo, Date from, Date to) throws IOException { String qPath = "/email/domain/{domain}/responder"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "account", account); addBody(o, "content", content); addBody(o, "copy", copy); addBody(o, "copyTo", copyTo); addBody(o, "from", from); addBody(o, "to", to); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskSpecialAccount.class); }
java
public OvhTaskSpecialAccount domain_responder_POST(String domain, String account, String content, Boolean copy, String copyTo, Date from, Date to) throws IOException { String qPath = "/email/domain/{domain}/responder"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "account", account); addBody(o, "content", content); addBody(o, "copy", copy); addBody(o, "copyTo", copyTo); addBody(o, "from", from); addBody(o, "to", to); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskSpecialAccount.class); }
[ "public", "OvhTaskSpecialAccount", "domain_responder_POST", "(", "String", "domain", ",", "String", "account", ",", "String", "content", ",", "Boolean", "copy", ",", "String", "copyTo", ",", "Date", "from", ",", "Date", "to", ")", "throws", "IOException", "{", ...
Create new responder in server REST: POST /email/domain/{domain}/responder @param copyTo [required] Account where copy emails @param account [required] Account of domain @param from [required] Date of start responder @param content [required] Content of responder @param copy [required] If false, emails will be dropped. If true and copyTo field is empty, emails will be delivered to your mailbox. If true and copyTo is set with an address, emails will be delivered to this address @param to [required] Date of end responder @param domain [required] Name of your domain name
[ "Create", "new", "responder", "in", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L929-L941
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_dnsMXFilter_GET
public OvhDomainMXFilterEnum domain_dnsMXFilter_GET(String domain, String subDomain) throws IOException { String qPath = "/email/domain/{domain}/dnsMXFilter"; StringBuilder sb = path(qPath, domain); query(sb, "subDomain", subDomain); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDomainMXFilterEnum.class); }
java
public OvhDomainMXFilterEnum domain_dnsMXFilter_GET(String domain, String subDomain) throws IOException { String qPath = "/email/domain/{domain}/dnsMXFilter"; StringBuilder sb = path(qPath, domain); query(sb, "subDomain", subDomain); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDomainMXFilterEnum.class); }
[ "public", "OvhDomainMXFilterEnum", "domain_dnsMXFilter_GET", "(", "String", "domain", ",", "String", "subDomain", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/dnsMXFilter\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ...
Domain MX filter REST: GET /email/domain/{domain}/dnsMXFilter @param subDomain [required] Sub domain @param domain [required] Name of your domain name
[ "Domain", "MX", "filter" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L992-L998
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_redirection_id_DELETE
public OvhTaskSpecialAccount domain_redirection_id_DELETE(String domain, String id) throws IOException { String qPath = "/email/domain/{domain}/redirection/{id}"; StringBuilder sb = path(qPath, domain, id); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTaskSpecialAccount.class); }
java
public OvhTaskSpecialAccount domain_redirection_id_DELETE(String domain, String id) throws IOException { String qPath = "/email/domain/{domain}/redirection/{id}"; StringBuilder sb = path(qPath, domain, id); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTaskSpecialAccount.class); }
[ "public", "OvhTaskSpecialAccount", "domain_redirection_id_DELETE", "(", "String", "domain", ",", "String", "id", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/redirection/{id}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPat...
Delete an existing redirection in server REST: DELETE /email/domain/{domain}/redirection/{id} @param domain [required] Name of your domain name @param id [required]
[ "Delete", "an", "existing", "redirection", "in", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1038-L1043
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_redirection_POST
public OvhTaskSpecialAccount domain_redirection_POST(String domain, String from, Boolean localCopy, String to) throws IOException { String qPath = "/email/domain/{domain}/redirection"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "from", from); addBody(o, "localCopy", localCopy); addBody(o, "to", to); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskSpecialAccount.class); }
java
public OvhTaskSpecialAccount domain_redirection_POST(String domain, String from, Boolean localCopy, String to) throws IOException { String qPath = "/email/domain/{domain}/redirection"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "from", from); addBody(o, "localCopy", localCopy); addBody(o, "to", to); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTaskSpecialAccount.class); }
[ "public", "OvhTaskSpecialAccount", "domain_redirection_POST", "(", "String", "domain", ",", "String", "from", ",", "Boolean", "localCopy", ",", "String", "to", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/redirection\"", ";", "S...
Create new redirection in server REST: POST /email/domain/{domain}/redirection @param from [required] Name of redirection @param localCopy [required] If true keep a local copy @param to [required] Target of account @param domain [required] Name of your domain name
[ "Create", "new", "redirection", "in", "server" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1071-L1080
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_summary_GET
public OvhDomainSummary domain_summary_GET(String domain) throws IOException { String qPath = "/email/domain/{domain}/summary"; StringBuilder sb = path(qPath, domain); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDomainSummary.class); }
java
public OvhDomainSummary domain_summary_GET(String domain) throws IOException { String qPath = "/email/domain/{domain}/summary"; StringBuilder sb = path(qPath, domain); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDomainSummary.class); }
[ "public", "OvhDomainSummary", "domain_summary_GET", "(", "String", "domain", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/summary\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "domain", ")", ";", "String", ...
Summary for this domain REST: GET /email/domain/{domain}/summary @param domain [required] Name of your domain name
[ "Summary", "for", "this", "domain" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1088-L1093
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_migrateDelegationV3toV6_POST
public void domain_migrateDelegationV3toV6_POST(String domain) throws IOException { String qPath = "/email/domain/{domain}/migrateDelegationV3toV6"; StringBuilder sb = path(qPath, domain); exec(qPath, "POST", sb.toString(), null); }
java
public void domain_migrateDelegationV3toV6_POST(String domain) throws IOException { String qPath = "/email/domain/{domain}/migrateDelegationV3toV6"; StringBuilder sb = path(qPath, domain); exec(qPath, "POST", sb.toString(), null); }
[ "public", "void", "domain_migrateDelegationV3toV6_POST", "(", "String", "domain", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/migrateDelegationV3toV6\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "domain", ")", ...
Create delegation of domain with same nic than V3 REST: POST /email/domain/{domain}/migrateDelegationV3toV6 @param domain [required] Name of your domain name
[ "Create", "delegation", "of", "domain", "with", "same", "nic", "than", "V3" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1101-L1105
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_task_mailinglist_GET
public ArrayList<Long> domain_task_mailinglist_GET(String domain, String account) throws IOException { String qPath = "/email/domain/{domain}/task/mailinglist"; StringBuilder sb = path(qPath, domain); query(sb, "account", account); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
java
public ArrayList<Long> domain_task_mailinglist_GET(String domain, String account) throws IOException { String qPath = "/email/domain/{domain}/task/mailinglist"; StringBuilder sb = path(qPath, domain); query(sb, "account", account); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
[ "public", "ArrayList", "<", "Long", ">", "domain_task_mailinglist_GET", "(", "String", "domain", ",", "String", "account", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/task/mailinglist\"", ";", "StringBuilder", "sb", "=", "path"...
Get Mailing List tasks REST: GET /email/domain/{domain}/task/mailinglist @param account [required] Account name @param domain [required] Name of your domain name
[ "Get", "Mailing", "List", "tasks" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1114-L1120
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_confirmTermination_POST
public String domain_confirmTermination_POST(String domain, String commentary, OvhTerminationReasonEnum reason, String token) throws IOException { String qPath = "/email/domain/{domain}/confirmTermination"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "commentary", commentary); addBody(o, "reason", reason); addBody(o, "token", token); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, String.class); }
java
public String domain_confirmTermination_POST(String domain, String commentary, OvhTerminationReasonEnum reason, String token) throws IOException { String qPath = "/email/domain/{domain}/confirmTermination"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "commentary", commentary); addBody(o, "reason", reason); addBody(o, "token", token); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, String.class); }
[ "public", "String", "domain_confirmTermination_POST", "(", "String", "domain", ",", "String", "commentary", ",", "OvhTerminationReasonEnum", "reason", ",", "String", "token", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/confirmTermi...
Confirm termination of your email service REST: POST /email/domain/{domain}/confirmTermination @param reason [required] Reason of your termination request @param commentary [required] Commentary about your termination request @param token [required] The termination token sent by mail to the admin contact @param domain [required] Name of your domain name
[ "Confirm", "termination", "of", "your", "email", "service" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1261-L1270
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java
ApiOvhEmaildomain.domain_changeDnsMXFilter_POST
public void domain_changeDnsMXFilter_POST(String domain, String customTarget, OvhDomainMXFilterEnum mxFilter, String subDomain) throws IOException { String qPath = "/email/domain/{domain}/changeDnsMXFilter"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "customTarget", customTarget); addBody(o, "mxFilter", mxFilter); addBody(o, "subDomain", subDomain); exec(qPath, "POST", sb.toString(), o); }
java
public void domain_changeDnsMXFilter_POST(String domain, String customTarget, OvhDomainMXFilterEnum mxFilter, String subDomain) throws IOException { String qPath = "/email/domain/{domain}/changeDnsMXFilter"; StringBuilder sb = path(qPath, domain); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "customTarget", customTarget); addBody(o, "mxFilter", mxFilter); addBody(o, "subDomain", subDomain); exec(qPath, "POST", sb.toString(), o); }
[ "public", "void", "domain_changeDnsMXFilter_POST", "(", "String", "domain", ",", "String", "customTarget", ",", "OvhDomainMXFilterEnum", "mxFilter", ",", "String", "subDomain", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/domain/{domain}/changeDnsM...
Change MX filter, so change MX DNS records REST: POST /email/domain/{domain}/changeDnsMXFilter @param subDomain [required] Sub domain @param mxFilter [required] New MX filter @param customTarget [required] Target server for custom MX @param domain [required] Name of your domain name
[ "Change", "MX", "filter", "so", "change", "MX", "DNS", "records" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1398-L1406
train