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-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_snapshot_POST
public void project_serviceName_instance_instanceId_snapshot_POST(String serviceName, String instanceId, String snapshotName) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/snapshot"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "snapshotName", snapshotName); exec(qPath, "POST", sb.toString(), o); }
java
public void project_serviceName_instance_instanceId_snapshot_POST(String serviceName, String instanceId, String snapshotName) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/snapshot"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "snapshotName", snapshotName); exec(qPath, "POST", sb.toString(), o); }
[ "public", "void", "project_serviceName_instance_instanceId_snapshot_POST", "(", "String", "serviceName", ",", "String", "instanceId", ",", "String", "snapshotName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/{instanceId}/...
Snapshot an instance REST: POST /cloud/project/{serviceName}/instance/{instanceId}/snapshot @param instanceId [required] Instance id @param serviceName [required] Service name @param snapshotName [required] Snapshot name
[ "Snapshot", "an", "instance" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L1879-L1885
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_applicationAccess_POST
public OvhApplicationAccess project_serviceName_instance_instanceId_applicationAccess_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/applicationAccess"; StringBuilder sb = path(qPath, serviceName, instanceId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhApplicationAccess.class); }
java
public OvhApplicationAccess project_serviceName_instance_instanceId_applicationAccess_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/applicationAccess"; StringBuilder sb = path(qPath, serviceName, instanceId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhApplicationAccess.class); }
[ "public", "OvhApplicationAccess", "project_serviceName_instance_instanceId_applicationAccess_POST", "(", "String", "serviceName", ",", "String", "instanceId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/{instanceId}/applicationA...
Return initial credentials of applications installed from public image REST: POST /cloud/project/{serviceName}/instance/{instanceId}/applicationAccess @param instanceId [required] Instance id @param serviceName [required] Project id
[ "Return", "initial", "credentials", "of", "applications", "installed", "from", "public", "image" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L1894-L1899
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_reboot_POST
public void project_serviceName_instance_instanceId_reboot_POST(String serviceName, String instanceId, OvhRebootTypeEnum type) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/reboot"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "type", type); exec(qPath, "POST", sb.toString(), o); }
java
public void project_serviceName_instance_instanceId_reboot_POST(String serviceName, String instanceId, OvhRebootTypeEnum type) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/reboot"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "type", type); exec(qPath, "POST", sb.toString(), o); }
[ "public", "void", "project_serviceName_instance_instanceId_reboot_POST", "(", "String", "serviceName", ",", "String", "instanceId", ",", "OvhRebootTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/{instanceId}...
Reboot an instance REST: POST /cloud/project/{serviceName}/instance/{instanceId}/reboot @param instanceId [required] Instance id @param serviceName [required] Service name @param type [required] Reboot type (default soft)
[ "Reboot", "an", "instance" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L1909-L1915
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_interface_POST
public OvhInterface project_serviceName_instance_instanceId_interface_POST(String serviceName, String instanceId, String ip, String networkId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/interface"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ip", ip); addBody(o, "networkId", networkId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhInterface.class); }
java
public OvhInterface project_serviceName_instance_instanceId_interface_POST(String serviceName, String instanceId, String ip, String networkId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/interface"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "ip", ip); addBody(o, "networkId", networkId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhInterface.class); }
[ "public", "OvhInterface", "project_serviceName_instance_instanceId_interface_POST", "(", "String", "serviceName", ",", "String", "instanceId", ",", "String", "ip", ",", "String", "networkId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{se...
Create interface on an instance and attached it to a network REST: POST /cloud/project/{serviceName}/instance/{instanceId}/interface @param instanceId [required] Instance id @param ip [required] Static ip (Can only be defined for private networks) @param networkId [required] Network id @param serviceName [required] Service name
[ "Create", "interface", "on", "an", "instance", "and", "attached", "it", "to", "a", "network" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L1941-L1949
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_interface_interfaceId_DELETE
public void project_serviceName_instance_instanceId_interface_interfaceId_DELETE(String serviceName, String instanceId, String interfaceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/interface/{interfaceId}"; StringBuilder sb = path(qPath, serviceName, instanceId, interfaceId); exec(qPath, "DELETE", sb.toString(), null); }
java
public void project_serviceName_instance_instanceId_interface_interfaceId_DELETE(String serviceName, String instanceId, String interfaceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/interface/{interfaceId}"; StringBuilder sb = path(qPath, serviceName, instanceId, interfaceId); exec(qPath, "DELETE", sb.toString(), null); }
[ "public", "void", "project_serviceName_instance_instanceId_interface_interfaceId_DELETE", "(", "String", "serviceName", ",", "String", "instanceId", ",", "String", "interfaceId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance...
Delete an interface REST: DELETE /cloud/project/{serviceName}/instance/{instanceId}/interface/{interfaceId} @param instanceId [required] Instance id @param interfaceId [required] Interface id @param serviceName [required] Service name
[ "Delete", "an", "interface" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L1959-L1963
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_vnc_POST
public OvhInstanceVnc project_serviceName_instance_instanceId_vnc_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/vnc"; StringBuilder sb = path(qPath, serviceName, instanceId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhInstanceVnc.class); }
java
public OvhInstanceVnc project_serviceName_instance_instanceId_vnc_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/vnc"; StringBuilder sb = path(qPath, serviceName, instanceId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhInstanceVnc.class); }
[ "public", "OvhInstanceVnc", "project_serviceName_instance_instanceId_vnc_POST", "(", "String", "serviceName", ",", "String", "instanceId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/{instanceId}/vnc\"", ";", "StringBuilder"...
Get VNC access to your instance REST: POST /cloud/project/{serviceName}/instance/{instanceId}/vnc @param instanceId [required] Instance id @param serviceName [required] Project id
[ "Get", "VNC", "access", "to", "your", "instance" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L1987-L1992
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_resume_POST
public void project_serviceName_instance_instanceId_resume_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/resume"; StringBuilder sb = path(qPath, serviceName, instanceId); exec(qPath, "POST", sb.toString(), null); }
java
public void project_serviceName_instance_instanceId_resume_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/resume"; StringBuilder sb = path(qPath, serviceName, instanceId); exec(qPath, "POST", sb.toString(), null); }
[ "public", "void", "project_serviceName_instance_instanceId_resume_POST", "(", "String", "serviceName", ",", "String", "instanceId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/{instanceId}/resume\"", ";", "StringBuilder", ...
Resume a suspended instance REST: POST /cloud/project/{serviceName}/instance/{instanceId}/resume @param instanceId [required] Instance id @param serviceName [required] Service name
[ "Resume", "a", "suspended", "instance" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2001-L2005
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_resize_POST
public OvhInstanceDetail project_serviceName_instance_instanceId_resize_POST(String serviceName, String instanceId, String flavorId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/resize"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "flavorId", flavorId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhInstanceDetail.class); }
java
public OvhInstanceDetail project_serviceName_instance_instanceId_resize_POST(String serviceName, String instanceId, String flavorId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/resize"; StringBuilder sb = path(qPath, serviceName, instanceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "flavorId", flavorId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhInstanceDetail.class); }
[ "public", "OvhInstanceDetail", "project_serviceName_instance_instanceId_resize_POST", "(", "String", "serviceName", ",", "String", "instanceId", ",", "String", "flavorId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/{insta...
Migrate your instance to another flavor REST: POST /cloud/project/{serviceName}/instance/{instanceId}/resize @param flavorId [required] Flavor id @param instanceId [required] Instance id @param serviceName [required] Service name
[ "Migrate", "your", "instance", "to", "another", "flavor" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2015-L2022
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_instanceId_activeMonthlyBilling_POST
public OvhInstanceDetail project_serviceName_instance_instanceId_activeMonthlyBilling_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/activeMonthlyBilling"; StringBuilder sb = path(qPath, serviceName, instanceId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhInstanceDetail.class); }
java
public OvhInstanceDetail project_serviceName_instance_instanceId_activeMonthlyBilling_POST(String serviceName, String instanceId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/activeMonthlyBilling"; StringBuilder sb = path(qPath, serviceName, instanceId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhInstanceDetail.class); }
[ "public", "OvhInstanceDetail", "project_serviceName_instance_instanceId_activeMonthlyBilling_POST", "(", "String", "serviceName", ",", "String", "instanceId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/{instanceId}/activeMonthl...
Active monthly billing on instance REST: POST /cloud/project/{serviceName}/instance/{instanceId}/activeMonthlyBilling @param instanceId [required] Instance id @param serviceName [required] Service name
[ "Active", "monthly", "billing", "on", "instance" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2049-L2054
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_bulk_POST
public ArrayList<OvhInstance> project_serviceName_instance_bulk_POST(String serviceName, String flavorId, String groupId, String imageId, Boolean monthlyBilling, String name, OvhNetworkBulkParams[] networks, Long number, String region, String sshKeyId, String userData, String volumeId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/bulk"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "flavorId", flavorId); addBody(o, "groupId", groupId); addBody(o, "imageId", imageId); addBody(o, "monthlyBilling", monthlyBilling); addBody(o, "name", name); addBody(o, "networks", networks); addBody(o, "number", number); addBody(o, "region", region); addBody(o, "sshKeyId", sshKeyId); addBody(o, "userData", userData); addBody(o, "volumeId", volumeId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t21); }
java
public ArrayList<OvhInstance> project_serviceName_instance_bulk_POST(String serviceName, String flavorId, String groupId, String imageId, Boolean monthlyBilling, String name, OvhNetworkBulkParams[] networks, Long number, String region, String sshKeyId, String userData, String volumeId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/bulk"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "flavorId", flavorId); addBody(o, "groupId", groupId); addBody(o, "imageId", imageId); addBody(o, "monthlyBilling", monthlyBilling); addBody(o, "name", name); addBody(o, "networks", networks); addBody(o, "number", number); addBody(o, "region", region); addBody(o, "sshKeyId", sshKeyId); addBody(o, "userData", userData); addBody(o, "volumeId", volumeId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t21); }
[ "public", "ArrayList", "<", "OvhInstance", ">", "project_serviceName_instance_bulk_POST", "(", "String", "serviceName", ",", "String", "flavorId", ",", "String", "groupId", ",", "String", "imageId", ",", "Boolean", "monthlyBilling", ",", "String", "name", ",", "OvhN...
Create multiple instances REST: POST /cloud/project/{serviceName}/instance/bulk @param flavorId [required] Instance flavor id @param groupId [required] Start instance in group @param imageId [required] Instance image id @param monthlyBilling [required] Active monthly billing @param name [required] Instance name @param networks [required] Create network interfaces @param number [required] Number of instances you want to create @param region [required] Instance region @param serviceName [required] Project name @param sshKeyId [required] SSH keypair id @param userData [required] Configuration information or scripts to use upon launch @param volumeId [required] Specify a volume id to boot from it
[ "Create", "multiple", "instances" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2090-L2107
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_group_GET
public ArrayList<OvhInstanceGroup> project_serviceName_instance_group_GET(String serviceName, String region) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/group"; StringBuilder sb = path(qPath, serviceName); query(sb, "region", region); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t23); }
java
public ArrayList<OvhInstanceGroup> project_serviceName_instance_group_GET(String serviceName, String region) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/group"; StringBuilder sb = path(qPath, serviceName); query(sb, "region", region); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t23); }
[ "public", "ArrayList", "<", "OvhInstanceGroup", ">", "project_serviceName_instance_group_GET", "(", "String", "serviceName", ",", "String", "region", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/group\"", ";", "StringBu...
Get the detail of a group REST: GET /cloud/project/{serviceName}/instance/group @param region [required] Instance region @param serviceName [required] Project id
[ "Get", "the", "detail", "of", "a", "group" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2116-L2122
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_group_POST
public OvhInstanceGroup project_serviceName_instance_group_POST(String serviceName, String name, String region, OvhInstanceGroupTypeEnum type) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/group"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "name", name); addBody(o, "region", region); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhInstanceGroup.class); }
java
public OvhInstanceGroup project_serviceName_instance_group_POST(String serviceName, String name, String region, OvhInstanceGroupTypeEnum type) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/group"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "name", name); addBody(o, "region", region); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhInstanceGroup.class); }
[ "public", "OvhInstanceGroup", "project_serviceName_instance_group_POST", "(", "String", "serviceName", ",", "String", "name", ",", "String", "region", ",", "OvhInstanceGroupTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{se...
Create a group REST: POST /cloud/project/{serviceName}/instance/group @param name [required] instance group name @param region [required] Instance region @param serviceName [required] Project name @param type [required] Instance group type
[ "Create", "a", "group" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2134-L2143
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_instance_group_groupId_DELETE
public void project_serviceName_instance_group_groupId_DELETE(String serviceName, String groupId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/group/{groupId}"; StringBuilder sb = path(qPath, serviceName, groupId); exec(qPath, "DELETE", sb.toString(), null); }
java
public void project_serviceName_instance_group_groupId_DELETE(String serviceName, String groupId) throws IOException { String qPath = "/cloud/project/{serviceName}/instance/group/{groupId}"; StringBuilder sb = path(qPath, serviceName, groupId); exec(qPath, "DELETE", sb.toString(), null); }
[ "public", "void", "project_serviceName_instance_group_groupId_DELETE", "(", "String", "serviceName", ",", "String", "groupId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{serviceName}/instance/group/{groupId}\"", ";", "StringBuilder", "sb", "...
Delete a group REST: DELETE /cloud/project/{serviceName}/instance/group/{groupId} @param groupId [required] Group id @param serviceName [required] Project name
[ "Delete", "a", "group" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2152-L2156
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.project_serviceName_alerting_POST
public OvhAlerting project_serviceName_alerting_POST(String serviceName, OvhAlertingDelayEnum delay, String email, Long monthlyThreshold) throws IOException { String qPath = "/cloud/project/{serviceName}/alerting"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "delay", delay); addBody(o, "email", email); addBody(o, "monthlyThreshold", monthlyThreshold); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhAlerting.class); }
java
public OvhAlerting project_serviceName_alerting_POST(String serviceName, OvhAlertingDelayEnum delay, String email, Long monthlyThreshold) throws IOException { String qPath = "/cloud/project/{serviceName}/alerting"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "delay", delay); addBody(o, "email", email); addBody(o, "monthlyThreshold", monthlyThreshold); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhAlerting.class); }
[ "public", "OvhAlerting", "project_serviceName_alerting_POST", "(", "String", "serviceName", ",", "OvhAlertingDelayEnum", "delay", ",", "String", "email", ",", "Long", "monthlyThreshold", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/project/{service...
Add new alert REST: POST /cloud/project/{serviceName}/alerting @param monthlyThreshold [required] Monthly threshold for this alerting in currency @param email [required] Email to contact @param delay [required] Delay between alerts in seconds @param serviceName [required] The project id
[ "Add", "new", "alert" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2266-L2275
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.order_GET
public ArrayList<OvhOrder> order_GET(String planCode) throws IOException { String qPath = "/cloud/order"; StringBuilder sb = path(qPath); query(sb, "planCode", planCode); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t25); }
java
public ArrayList<OvhOrder> order_GET(String planCode) throws IOException { String qPath = "/cloud/order"; StringBuilder sb = path(qPath); query(sb, "planCode", planCode); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t25); }
[ "public", "ArrayList", "<", "OvhOrder", ">", "order_GET", "(", "String", "planCode", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/order\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(", "sb", ",", "\...
Get all cloud pending orders REST: GET /cloud/order @param planCode [required] Order plan code API beta
[ "Get", "all", "cloud", "pending", "orders" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2339-L2345
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.createProject_POST
public OvhNewProject createProject_POST(Long credit, String description, String voucher) throws IOException { String qPath = "/cloud/createProject"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "credit", credit); addBody(o, "description", description); addBody(o, "voucher", voucher); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhNewProject.class); }
java
public OvhNewProject createProject_POST(Long credit, String description, String voucher) throws IOException { String qPath = "/cloud/createProject"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "credit", credit); addBody(o, "description", description); addBody(o, "voucher", voucher); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhNewProject.class); }
[ "public", "OvhNewProject", "createProject_POST", "(", "Long", "credit", ",", "String", "description", ",", "String", "voucher", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/createProject\"", ";", "StringBuilder", "sb", "=", "path", "(", "qP...
Start a new cloud project REST: POST /cloud/createProject @param credit [required] Amount of cloud credit to purchase. Unit is base currency. @param description [required] Project description @param voucher [required] Voucher code
[ "Start", "a", "new", "cloud", "project" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2356-L2365
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.price_GET
public OvhPrice price_GET(String flavorId, String region) throws IOException { String qPath = "/cloud/price"; StringBuilder sb = path(qPath); query(sb, "flavorId", flavorId); query(sb, "region", region); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhPrice.class); }
java
public OvhPrice price_GET(String flavorId, String region) throws IOException { String qPath = "/cloud/price"; StringBuilder sb = path(qPath); query(sb, "flavorId", flavorId); query(sb, "region", region); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhPrice.class); }
[ "public", "OvhPrice", "price_GET", "(", "String", "flavorId", ",", "String", "region", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/price\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(", "sb", ",", ...
Get services prices REST: GET /cloud/price @param region [required] Region @param flavorId [required] OVH cloud flavor id @deprecated
[ "Get", "services", "prices" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2388-L2395
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.createProjectInfo_GET
public OvhNewProjectInfo createProjectInfo_GET(String voucher) throws IOException { String qPath = "/cloud/createProjectInfo"; StringBuilder sb = path(qPath); query(sb, "voucher", voucher); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhNewProjectInfo.class); }
java
public OvhNewProjectInfo createProjectInfo_GET(String voucher) throws IOException { String qPath = "/cloud/createProjectInfo"; StringBuilder sb = path(qPath); query(sb, "voucher", voucher); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhNewProjectInfo.class); }
[ "public", "OvhNewProjectInfo", "createProjectInfo_GET", "(", "String", "voucher", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/createProjectInfo\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(", "sb", ",", ...
Get information about a cloud project creation REST: GET /cloud/createProjectInfo @param voucher [required] Voucher code
[ "Get", "information", "about", "a", "cloud", "project", "creation" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2403-L2409
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.serviceName_pca_pcaServiceName_sessions_sessionId_restore_POST
public OvhTask serviceName_pca_pcaServiceName_sessions_sessionId_restore_POST(String serviceName, String pcaServiceName, String sessionId) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/restore"; StringBuilder sb = path(qPath, serviceName, pcaServiceName, sessionId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_pca_pcaServiceName_sessions_sessionId_restore_POST(String serviceName, String pcaServiceName, String sessionId) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/restore"; StringBuilder sb = path(qPath, serviceName, pcaServiceName, sessionId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_pca_pcaServiceName_sessions_sessionId_restore_POST", "(", "String", "serviceName", ",", "String", "pcaServiceName", ",", "String", "sessionId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/cloud/{serviceName}/pca/{pcaServiceNa...
Create a restore task for session REST: POST /cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/restore @param serviceName [required] The internal name of your public cloud passport @param pcaServiceName [required] The internal name of your PCA offer @param sessionId [required] Session ID @deprecated
[ "Create", "a", "restore", "task", "for", "session" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2450-L2455
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.serviceName_pca_pcaServiceName_sessions_sessionId_files_GET
public ArrayList<String> serviceName_pca_pcaServiceName_sessions_sessionId_files_GET(String serviceName, String pcaServiceName, String sessionId, String name) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/files"; StringBuilder sb = path(qPath, serviceName, pcaServiceName, sessionId); query(sb, "name", name); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> serviceName_pca_pcaServiceName_sessions_sessionId_files_GET(String serviceName, String pcaServiceName, String sessionId, String name) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/files"; StringBuilder sb = path(qPath, serviceName, pcaServiceName, sessionId); query(sb, "name", name); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "serviceName_pca_pcaServiceName_sessions_sessionId_files_GET", "(", "String", "serviceName", ",", "String", "pcaServiceName", ",", "String", "sessionId", ",", "String", "name", ")", "throws", "IOException", "{", "String", "qPat...
cloud archives files in session REST: GET /cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/files @param name [required] Filter the value of name property (like) @param serviceName [required] The internal name of your public cloud passport @param pcaServiceName [required] The internal name of your PCA offer @param sessionId [required] Session ID @deprecated
[ "cloud", "archives", "files", "in", "session" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2532-L2538
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.serviceName_pca_pcaServiceName_billing_GET
public ArrayList<Long> serviceName_pca_pcaServiceName_billing_GET(String serviceName, String pcaServiceName, Boolean billed, Date date_from, Date date_to) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/billing"; StringBuilder sb = path(qPath, serviceName, pcaServiceName); query(sb, "billed", billed); query(sb, "date.from", date_from); query(sb, "date.to", date_to); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
java
public ArrayList<Long> serviceName_pca_pcaServiceName_billing_GET(String serviceName, String pcaServiceName, Boolean billed, Date date_from, Date date_to) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/billing"; StringBuilder sb = path(qPath, serviceName, pcaServiceName); query(sb, "billed", billed); query(sb, "date.from", date_from); query(sb, "date.to", date_to); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
[ "public", "ArrayList", "<", "Long", ">", "serviceName_pca_pcaServiceName_billing_GET", "(", "String", "serviceName", ",", "String", "pcaServiceName", ",", "Boolean", "billed", ",", "Date", "date_from", ",", "Date", "date_to", ")", "throws", "IOException", "{", "Stri...
cloud Archives billing items REST: GET /cloud/{serviceName}/pca/{pcaServiceName}/billing @param date_to [required] Filter the value of date property (<=) @param billed [required] Filter the value of billed property (=) @param date_from [required] Filter the value of date property (>=) @param serviceName [required] The internal name of your public cloud passport @param pcaServiceName [required] The internal name of your PCA offer @deprecated
[ "cloud", "Archives", "billing", "items" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2599-L2607
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.serviceName_pca_pcaServiceName_tasks_GET
public ArrayList<String> serviceName_pca_pcaServiceName_tasks_GET(String serviceName, String pcaServiceName, OvhFunctionTypeEnum function, OvhTaskStateEnum status, Date todoDate_from, Date todoDate_to) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/tasks"; StringBuilder sb = path(qPath, serviceName, pcaServiceName); query(sb, "function", function); query(sb, "status", status); query(sb, "todoDate.from", todoDate_from); query(sb, "todoDate.to", todoDate_to); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> serviceName_pca_pcaServiceName_tasks_GET(String serviceName, String pcaServiceName, OvhFunctionTypeEnum function, OvhTaskStateEnum status, Date todoDate_from, Date todoDate_to) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/tasks"; StringBuilder sb = path(qPath, serviceName, pcaServiceName); query(sb, "function", function); query(sb, "status", status); query(sb, "todoDate.from", todoDate_from); query(sb, "todoDate.to", todoDate_to); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "serviceName_pca_pcaServiceName_tasks_GET", "(", "String", "serviceName", ",", "String", "pcaServiceName", ",", "OvhFunctionTypeEnum", "function", ",", "OvhTaskStateEnum", "status", ",", "Date", "todoDate_from", ",", "Date", "t...
cloud archives tasks for account REST: GET /cloud/{serviceName}/pca/{pcaServiceName}/tasks @param todoDate_to [required] Filter the value of todoDate property (<=) @param function [required] Filter the value of function property (=) @param todoDate_from [required] Filter the value of todoDate property (>=) @param status [required] Filter the value of status property (=) @param serviceName [required] The internal name of your public cloud passport @param pcaServiceName [required] The internal name of your PCA offer @deprecated
[ "cloud", "archives", "tasks", "for", "account" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2651-L2660
train
UrielCh/ovh-java-sdk
ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java
ApiOvhCloud.serviceName_pca_pcaServiceName_tasks_POST
public OvhTask serviceName_pca_pcaServiceName_tasks_POST(String serviceName, String pcaServiceName, String[] fileIds, String sessionId, OvhTaskTypeEnum taskFunction) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/tasks"; StringBuilder sb = path(qPath, serviceName, pcaServiceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "fileIds", fileIds); addBody(o, "sessionId", sessionId); addBody(o, "taskFunction", taskFunction); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_pca_pcaServiceName_tasks_POST(String serviceName, String pcaServiceName, String[] fileIds, String sessionId, OvhTaskTypeEnum taskFunction) throws IOException { String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/tasks"; StringBuilder sb = path(qPath, serviceName, pcaServiceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "fileIds", fileIds); addBody(o, "sessionId", sessionId); addBody(o, "taskFunction", taskFunction); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_pca_pcaServiceName_tasks_POST", "(", "String", "serviceName", ",", "String", "pcaServiceName", ",", "String", "[", "]", "fileIds", ",", "String", "sessionId", ",", "OvhTaskTypeEnum", "taskFunction", ")", "throws", "IOException", "{", ...
Create a cloud archives task REST: POST /cloud/{serviceName}/pca/{pcaServiceName}/tasks @param taskFunction [required] cloud archives task type @param fileIds [required] cloud archives file identifiers @param sessionId [required] cloud archives session identifier @param serviceName [required] The internal name of your public cloud passport @param pcaServiceName [required] The internal name of your PCA offer @deprecated
[ "Create", "a", "cloud", "archives", "task" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cloud/src/main/java/net/minidev/ovh/api/ApiOvhCloud.java#L2673-L2682
train
UrielCh/ovh-java-sdk
ovh-java-sdk-kube/src/main/java/net/minidev/ovh/api/ApiOvhKube.java
ApiOvhKube.serviceName_publiccloud_node_nodeId_DELETE
public void serviceName_publiccloud_node_nodeId_DELETE(String serviceName, String nodeId) throws IOException { String qPath = "/kube/{serviceName}/publiccloud/node/{nodeId}"; StringBuilder sb = path(qPath, serviceName, nodeId); exec(qPath, "DELETE", sb.toString(), null); }
java
public void serviceName_publiccloud_node_nodeId_DELETE(String serviceName, String nodeId) throws IOException { String qPath = "/kube/{serviceName}/publiccloud/node/{nodeId}"; StringBuilder sb = path(qPath, serviceName, nodeId); exec(qPath, "DELETE", sb.toString(), null); }
[ "public", "void", "serviceName_publiccloud_node_nodeId_DELETE", "(", "String", "serviceName", ",", "String", "nodeId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/kube/{serviceName}/publiccloud/node/{nodeId}\"", ";", "StringBuilder", "sb", "=", "path", ...
Delete a node on your cluster REST: DELETE /kube/{serviceName}/publiccloud/node/{nodeId} @param nodeId [required] Node ID @param serviceName [required] Cluster ID API beta
[ "Delete", "a", "node", "on", "your", "cluster" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-kube/src/main/java/net/minidev/ovh/api/ApiOvhKube.java#L218-L222
train
UrielCh/ovh-java-sdk
ovh-java-sdk-kube/src/main/java/net/minidev/ovh/api/ApiOvhKube.java
ApiOvhKube.serviceName_publiccloud_node_nodeId_GET
public OvhNode serviceName_publiccloud_node_nodeId_GET(String serviceName, String nodeId) throws IOException { String qPath = "/kube/{serviceName}/publiccloud/node/{nodeId}"; StringBuilder sb = path(qPath, serviceName, nodeId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhNode.class); }
java
public OvhNode serviceName_publiccloud_node_nodeId_GET(String serviceName, String nodeId) throws IOException { String qPath = "/kube/{serviceName}/publiccloud/node/{nodeId}"; StringBuilder sb = path(qPath, serviceName, nodeId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhNode.class); }
[ "public", "OvhNode", "serviceName_publiccloud_node_nodeId_GET", "(", "String", "serviceName", ",", "String", "nodeId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/kube/{serviceName}/publiccloud/node/{nodeId}\"", ";", "StringBuilder", "sb", "=", "path", ...
Get information on a specific node on your cluster REST: GET /kube/{serviceName}/publiccloud/node/{nodeId} @param nodeId [required] Node ID @param serviceName [required] Cluster ID API beta
[ "Get", "information", "on", "a", "specific", "node", "on", "your", "cluster" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-kube/src/main/java/net/minidev/ovh/api/ApiOvhKube.java#L233-L238
train
UrielCh/ovh-java-sdk
ovh-java-sdk-kube/src/main/java/net/minidev/ovh/api/ApiOvhKube.java
ApiOvhKube.serviceName_updatePolicy_PUT
public void serviceName_updatePolicy_PUT(String serviceName, OvhUpdatePolicy updatePolicy) throws IOException { String qPath = "/kube/{serviceName}/updatePolicy"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "updatePolicy", updatePolicy); exec(qPath, "PUT", sb.toString(), o); }
java
public void serviceName_updatePolicy_PUT(String serviceName, OvhUpdatePolicy updatePolicy) throws IOException { String qPath = "/kube/{serviceName}/updatePolicy"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "updatePolicy", updatePolicy); exec(qPath, "PUT", sb.toString(), o); }
[ "public", "void", "serviceName_updatePolicy_PUT", "(", "String", "serviceName", ",", "OvhUpdatePolicy", "updatePolicy", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/kube/{serviceName}/updatePolicy\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPat...
Change the update policy of your cluster REST: PUT /kube/{serviceName}/updatePolicy @param serviceName [required] Cluster ID @param updatePolicy [required] Update policy API beta
[ "Change", "the", "update", "policy", "of", "your", "cluster" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-kube/src/main/java/net/minidev/ovh/api/ApiOvhKube.java#L294-L300
train
JDBDT/jdbdt
src/main/java/org/jdbdt/DataSource.java
DataSource.getColumnName
public final String getColumnName(int index) { if (index < 0 || index >= columns.size()) { throw new InvalidOperationException("Invalid column index: " + index); } return columns.get(index); }
java
public final String getColumnName(int index) { if (index < 0 || index >= columns.size()) { throw new InvalidOperationException("Invalid column index: " + index); } return columns.get(index); }
[ "public", "final", "String", "getColumnName", "(", "int", "index", ")", "{", "if", "(", "index", "<", "0", "||", "index", ">=", "columns", ".", "size", "(", ")", ")", "{", "throw", "new", "InvalidOperationException", "(", "\"Invalid column index: \"", "+", ...
Get column name. @param index Column index between <code>0</code> and <code>getColumnCount() - 1</code> @return Name of column.
[ "Get", "column", "name", "." ]
7e32845ad41dfbc5d6fd0fd561e3613697186df4
https://github.com/JDBDT/jdbdt/blob/7e32845ad41dfbc5d6fd0fd561e3613697186df4/src/main/java/org/jdbdt/DataSource.java#L170-L175
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatednas/src/main/java/net/minidev/ovh/api/ApiOvhDedicatednas.java
ApiOvhDedicatednas.serviceName_partition_partitionName_quota_uid_DELETE
public OvhTask serviceName_partition_partitionName_quota_uid_DELETE(String serviceName, String partitionName, Long uid) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition/{partitionName}/quota/{uid}"; StringBuilder sb = path(qPath, serviceName, partitionName, uid); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_partition_partitionName_quota_uid_DELETE(String serviceName, String partitionName, Long uid) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition/{partitionName}/quota/{uid}"; StringBuilder sb = path(qPath, serviceName, partitionName, uid); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_partition_partitionName_quota_uid_DELETE", "(", "String", "serviceName", ",", "String", "partitionName", ",", "Long", "uid", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/nas/{serviceName}/partition/{partitionName}/qu...
Delete a given quota REST: DELETE /dedicated/nas/{serviceName}/partition/{partitionName}/quota/{uid} @param serviceName [required] The internal name of your storage @param partitionName [required] the given name of partition @param uid [required] the uid to set quota on
[ "Delete", "a", "given", "quota" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatednas/src/main/java/net/minidev/ovh/api/ApiOvhDedicatednas.java#L252-L257
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatednas/src/main/java/net/minidev/ovh/api/ApiOvhDedicatednas.java
ApiOvhDedicatednas.serviceName_partition_partitionName_quota_POST
public OvhTask serviceName_partition_partitionName_quota_POST(String serviceName, String partitionName, Long size, Long uid) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition/{partitionName}/quota"; StringBuilder sb = path(qPath, serviceName, partitionName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "size", size); addBody(o, "uid", uid); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_partition_partitionName_quota_POST(String serviceName, String partitionName, Long size, Long uid) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition/{partitionName}/quota"; StringBuilder sb = path(qPath, serviceName, partitionName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "size", size); addBody(o, "uid", uid); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_partition_partitionName_quota_POST", "(", "String", "serviceName", ",", "String", "partitionName", ",", "Long", "size", ",", "Long", "uid", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/nas/{serviceName}/partiti...
Set a new quota REST: POST /dedicated/nas/{serviceName}/partition/{partitionName}/quota @param uid [required] the uid to set quota on @param size [required] the size to set in MB @param serviceName [required] The internal name of your storage @param partitionName [required] the given name of partition
[ "Set", "a", "new", "quota" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatednas/src/main/java/net/minidev/ovh/api/ApiOvhDedicatednas.java#L282-L290
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dedicatednas/src/main/java/net/minidev/ovh/api/ApiOvhDedicatednas.java
ApiOvhDedicatednas.serviceName_partition_POST
public OvhTask serviceName_partition_POST(String serviceName, String partitionName, OvhProtocolEnum protocol, Long size) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "partitionName", partitionName); addBody(o, "protocol", protocol); addBody(o, "size", size); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_partition_POST(String serviceName, String partitionName, OvhProtocolEnum protocol, Long size) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "partitionName", partitionName); addBody(o, "protocol", protocol); addBody(o, "size", size); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_partition_POST", "(", "String", "serviceName", ",", "String", "partitionName", ",", "OvhProtocolEnum", "protocol", ",", "Long", "size", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dedicated/nas/{serviceName}/partition\"...
Create a new partition REST: POST /dedicated/nas/{serviceName}/partition @param partitionName [required] Partition name @param protocol [required] @param size [required] Partition size @param serviceName [required] The internal name of your storage
[ "Create", "a", "new", "partition" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dedicatednas/src/main/java/net/minidev/ovh/api/ApiOvhDedicatednas.java#L328-L337
train
UrielCh/ovh-java-sdk
ovh-java-sdk-core/src/main/java/net/minidev/ovh/core/OvhErrorMessage.java
OvhErrorMessage.isErrorCode
@JsonIgnore public boolean isErrorCode(String... codes) { for (String err : codes) if (errorCode.equals(err)) return true; return false; }
java
@JsonIgnore public boolean isErrorCode(String... codes) { for (String err : codes) if (errorCode.equals(err)) return true; return false; }
[ "@", "JsonIgnore", "public", "boolean", "isErrorCode", "(", "String", "...", "codes", ")", "{", "for", "(", "String", "err", ":", "codes", ")", "if", "(", "errorCode", ".", "equals", "(", "err", ")", ")", "return", "true", ";", "return", "false", ";", ...
this function will be deprecated and replace by an Enum;
[ "this", "function", "will", "be", "deprecated", "and", "replace", "by", "an", "Enum", ";" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-core/src/main/java/net/minidev/ovh/core/OvhErrorMessage.java#L29-L35
train
UrielCh/ovh-java-sdk
ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java
ApiOvhNewAccount.countries_GET
public ArrayList<OvhCountryEnum> countries_GET(OvhOvhCompanyEnum ovhCompany, OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/newAccount/countries"; StringBuilder sb = path(qPath); query(sb, "ovhCompany", ovhCompany); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
java
public ArrayList<OvhCountryEnum> countries_GET(OvhOvhCompanyEnum ovhCompany, OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/newAccount/countries"; StringBuilder sb = path(qPath); query(sb, "ovhCompany", ovhCompany); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "OvhCountryEnum", ">", "countries_GET", "(", "OvhOvhCompanyEnum", "ovhCompany", ",", "OvhOvhSubsidiaryEnum", "ovhSubsidiary", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/newAccount/countries\"", ";", "StringBuilder", "sb", ...
All available countries for an ovh company and an ovh subsidiary REST: GET /newAccount/countries @param ovhCompany [required] @param ovhSubsidiary [required]
[ "All", "available", "countries", "for", "an", "ovh", "company", "and", "an", "ovh", "subsidiary" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java#L53-L60
train
UrielCh/ovh-java-sdk
ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java
ApiOvhNewAccount.contracts_GET
public ArrayList<OvhContract> contracts_GET(OvhOvhCompanyEnum company, OvhOvhSubsidiaryEnum subsidiary) throws IOException { String qPath = "/newAccount/contracts"; StringBuilder sb = path(qPath); query(sb, "company", company); query(sb, "subsidiary", subsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
java
public ArrayList<OvhContract> contracts_GET(OvhOvhCompanyEnum company, OvhOvhSubsidiaryEnum subsidiary) throws IOException { String qPath = "/newAccount/contracts"; StringBuilder sb = path(qPath); query(sb, "company", company); query(sb, "subsidiary", subsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
[ "public", "ArrayList", "<", "OvhContract", ">", "contracts_GET", "(", "OvhOvhCompanyEnum", "company", ",", "OvhOvhSubsidiaryEnum", "subsidiary", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/newAccount/contracts\"", ";", "StringBuilder", "sb", "=", "p...
Returns the contracts that governs the creation of an OVH identifier REST: GET /newAccount/contracts @param subsidiary [required] @param company [required]
[ "Returns", "the", "contracts", "that", "governs", "the", "creation", "of", "an", "OVH", "identifier" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java#L70-L77
train
UrielCh/ovh-java-sdk
ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java
ApiOvhNewAccount.rules_POST
public ArrayList<OvhCreationRule> rules_POST(OvhCreationRulesActionEnum action, String address, String area, String birthCity, String birthDay, String city, String companyNationalIdentificationNumber, String corporationType, OvhCountryEnum country, String email, String fax, String firstname, OvhLanguageEnum language, OvhLegalFormEnum legalform, String name, String nationalIdentificationNumber, String organisation, OvhOvhCompanyEnum ovhCompany, OvhOvhSubsidiaryEnum ovhSubsidiary, String phone, OvhCountryEnum phoneCountry, OvhGenderEnum sex, String spareEmail, String vat, String zip) throws IOException { String qPath = "/newAccount/rules"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "action", action); addBody(o, "address", address); addBody(o, "area", area); addBody(o, "birthCity", birthCity); addBody(o, "birthDay", birthDay); addBody(o, "city", city); addBody(o, "companyNationalIdentificationNumber", companyNationalIdentificationNumber); addBody(o, "corporationType", corporationType); addBody(o, "country", country); addBody(o, "email", email); addBody(o, "fax", fax); addBody(o, "firstname", firstname); addBody(o, "language", language); addBody(o, "legalform", legalform); addBody(o, "name", name); addBody(o, "nationalIdentificationNumber", nationalIdentificationNumber); addBody(o, "organisation", organisation); addBody(o, "ovhCompany", ovhCompany); addBody(o, "ovhSubsidiary", ovhSubsidiary); addBody(o, "phone", phone); addBody(o, "phoneCountry", phoneCountry); addBody(o, "sex", sex); addBody(o, "spareEmail", spareEmail); addBody(o, "vat", vat); addBody(o, "zip", zip); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, t4); }
java
public ArrayList<OvhCreationRule> rules_POST(OvhCreationRulesActionEnum action, String address, String area, String birthCity, String birthDay, String city, String companyNationalIdentificationNumber, String corporationType, OvhCountryEnum country, String email, String fax, String firstname, OvhLanguageEnum language, OvhLegalFormEnum legalform, String name, String nationalIdentificationNumber, String organisation, OvhOvhCompanyEnum ovhCompany, OvhOvhSubsidiaryEnum ovhSubsidiary, String phone, OvhCountryEnum phoneCountry, OvhGenderEnum sex, String spareEmail, String vat, String zip) throws IOException { String qPath = "/newAccount/rules"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "action", action); addBody(o, "address", address); addBody(o, "area", area); addBody(o, "birthCity", birthCity); addBody(o, "birthDay", birthDay); addBody(o, "city", city); addBody(o, "companyNationalIdentificationNumber", companyNationalIdentificationNumber); addBody(o, "corporationType", corporationType); addBody(o, "country", country); addBody(o, "email", email); addBody(o, "fax", fax); addBody(o, "firstname", firstname); addBody(o, "language", language); addBody(o, "legalform", legalform); addBody(o, "name", name); addBody(o, "nationalIdentificationNumber", nationalIdentificationNumber); addBody(o, "organisation", organisation); addBody(o, "ovhCompany", ovhCompany); addBody(o, "ovhSubsidiary", ovhSubsidiary); addBody(o, "phone", phone); addBody(o, "phoneCountry", phoneCountry); addBody(o, "sex", sex); addBody(o, "spareEmail", spareEmail); addBody(o, "vat", vat); addBody(o, "zip", zip); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, t4); }
[ "public", "ArrayList", "<", "OvhCreationRule", ">", "rules_POST", "(", "OvhCreationRulesActionEnum", "action", ",", "String", "address", ",", "String", "area", ",", "String", "birthCity", ",", "String", "birthDay", ",", "String", "city", ",", "String", "companyNat...
Give all the rules to follow in order to create and update an OVH identifier REST: POST /newAccount/rules @param ovhSubsidiary [required] @param phone [required] @param phoneCountry [required] @param country [required] @param fax [required] @param organisation [required] @param nationalIdentificationNumber [required] @param vat [required] @param spareEmail [required] @param action [required] @param area [required] @param zip [required] @param address [required] @param legalform [required] @param sex [required] @param name [required] @param corporationType [required] @param birthCity [required] @param email [required] @param city [required] @param birthDay [required] @param companyNationalIdentificationNumber [required] @param firstname [required] @param language [required] @param ovhCompany [required]
[ "Give", "all", "the", "rules", "to", "follow", "in", "order", "to", "create", "and", "update", "an", "OVH", "identifier" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java#L110-L141
train
UrielCh/ovh-java-sdk
ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java
ApiOvhNewAccount.area_GET
public ArrayList<String> area_GET(OvhCountryEnum country) throws IOException { String qPath = "/newAccount/area"; StringBuilder sb = path(qPath); query(sb, "country", country); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> area_GET(OvhCountryEnum country) throws IOException { String qPath = "/newAccount/area"; StringBuilder sb = path(qPath); query(sb, "country", country); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "area_GET", "(", "OvhCountryEnum", "country", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/newAccount/area\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(", "sb", "...
All available areas for a given country REST: GET /newAccount/area @param country [required]
[ "All", "available", "areas", "for", "a", "given", "country" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java#L150-L156
train
UrielCh/ovh-java-sdk
ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java
ApiOvhNewAccount.creationRules_GET
public OvhCreationRules creationRules_GET(OvhCountryEnum country, OvhLegalFormEnum legalform, OvhOvhCompanyEnum ovhCompany, OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/newAccount/creationRules"; StringBuilder sb = path(qPath); query(sb, "country", country); query(sb, "legalform", legalform); query(sb, "ovhCompany", ovhCompany); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhCreationRules.class); }
java
public OvhCreationRules creationRules_GET(OvhCountryEnum country, OvhLegalFormEnum legalform, OvhOvhCompanyEnum ovhCompany, OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/newAccount/creationRules"; StringBuilder sb = path(qPath); query(sb, "country", country); query(sb, "legalform", legalform); query(sb, "ovhCompany", ovhCompany); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhCreationRules.class); }
[ "public", "OvhCreationRules", "creationRules_GET", "(", "OvhCountryEnum", "country", ",", "OvhLegalFormEnum", "legalform", ",", "OvhOvhCompanyEnum", "ovhCompany", ",", "OvhOvhSubsidiaryEnum", "ovhSubsidiary", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/...
Give all the rules to follow in order to create an OVH identifier REST: GET /newAccount/creationRules @param legalform [required] @param ovhCompany [required] @param ovhSubsidiary [required] @param country [required]
[ "Give", "all", "the", "rules", "to", "follow", "in", "order", "to", "create", "an", "OVH", "identifier" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-newAccount/src/main/java/net/minidev/ovh/api/ApiOvhNewAccount.java#L167-L176
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_accessPoint_accessPointId_changeSessionTimeout_POST
public OvhTask serviceName_accessPoint_accessPointId_changeSessionTimeout_POST(String serviceName, Long accessPointId, Long expiration, OvhAccessPointTypeEnum onSingleAP) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint/{accessPointId}/changeSessionTimeout"; StringBuilder sb = path(qPath, serviceName, accessPointId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "expiration", expiration); addBody(o, "onSingleAP", onSingleAP); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_accessPoint_accessPointId_changeSessionTimeout_POST(String serviceName, Long accessPointId, Long expiration, OvhAccessPointTypeEnum onSingleAP) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint/{accessPointId}/changeSessionTimeout"; StringBuilder sb = path(qPath, serviceName, accessPointId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "expiration", expiration); addBody(o, "onSingleAP", onSingleAP); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_accessPoint_accessPointId_changeSessionTimeout_POST", "(", "String", "serviceName", ",", "Long", "accessPointId", ",", "Long", "expiration", ",", "OvhAccessPointTypeEnum", "onSingleAP", ")", "throws", "IOException", "{", "String", "qPath", ...
Manage your session Timeout on Unified Access Gateway REST: POST /horizonView/{serviceName}/accessPoint/{accessPointId}/changeSessionTimeout @param onSingleAP [required] Update timeout session on a single Unified Access Gateway (only for hybrid Pool) @param expiration [required] Timeout (in hour) @param serviceName [required] Domain of the service @param accessPointId [required] Pool id
[ "Manage", "your", "session", "Timeout", "on", "Unified", "Access", "Gateway" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L57-L65
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_accessPoint_accessPointId_disableTwoFA_POST
public OvhTask serviceName_accessPoint_accessPointId_disableTwoFA_POST(String serviceName, Long accessPointId) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint/{accessPointId}/disableTwoFA"; StringBuilder sb = path(qPath, serviceName, accessPointId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_accessPoint_accessPointId_disableTwoFA_POST(String serviceName, Long accessPointId) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint/{accessPointId}/disableTwoFA"; StringBuilder sb = path(qPath, serviceName, accessPointId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_accessPoint_accessPointId_disableTwoFA_POST", "(", "String", "serviceName", ",", "Long", "accessPointId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/horizonView/{serviceName}/accessPoint/{accessPointId}/disableTwoFA\"", ";", "...
Disable two factor authentication on your pool REST: POST /horizonView/{serviceName}/accessPoint/{accessPointId}/disableTwoFA @param serviceName [required] Domain of the service @param accessPointId [required] Pool id
[ "Disable", "two", "factor", "authentication", "on", "your", "pool" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L74-L79
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_accessPoint_POST
public ArrayList<OvhTask> serviceName_accessPoint_POST(String serviceName, OvhPoolType poolType, String privateBlock, Long privateVlan, String vrouterPoolPublicIp) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "poolType", poolType); addBody(o, "privateBlock", privateBlock); addBody(o, "privateVlan", privateVlan); addBody(o, "vrouterPoolPublicIp", vrouterPoolPublicIp); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
java
public ArrayList<OvhTask> serviceName_accessPoint_POST(String serviceName, OvhPoolType poolType, String privateBlock, Long privateVlan, String vrouterPoolPublicIp) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "poolType", poolType); addBody(o, "privateBlock", privateBlock); addBody(o, "privateVlan", privateVlan); addBody(o, "vrouterPoolPublicIp", vrouterPoolPublicIp); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "OvhTask", ">", "serviceName_accessPoint_POST", "(", "String", "serviceName", ",", "OvhPoolType", "poolType", ",", "String", "privateBlock", ",", "Long", "privateVlan", ",", "String", "vrouterPoolPublicIp", ")", "throws", "IOException", "{"...
Add new access point to create a new network REST: POST /horizonView/{serviceName}/accessPoint @param privateVlan [required] You can customize your pool by choosing its private Vlan ID. (smaller than 4095) @param privateBlock [required] You can customize your pool by choosing the private network (Ex : 10.0.0.0/16) @param vrouterPoolPublicIp [required] You need to use a public Ip if you want to deploy a public pool. @param poolType [required] The type of pool you want to deploy. @param serviceName [required] Domain of the service
[ "Add", "new", "access", "point", "to", "create", "a", "new", "network" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L250-L260
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_domainTrust_domainTrustId_addChildDomain_POST
public OvhTask serviceName_domainTrust_domainTrustId_addChildDomain_POST(String serviceName, Long domainTrustId, String activeDirectoryIP, String domain, String passphrase, String serviceAccountPassword) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addChildDomain"; StringBuilder sb = path(qPath, serviceName, domainTrustId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "activeDirectoryIP", activeDirectoryIP); addBody(o, "domain", domain); addBody(o, "passphrase", passphrase); addBody(o, "serviceAccountPassword", serviceAccountPassword); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_domainTrust_domainTrustId_addChildDomain_POST(String serviceName, Long domainTrustId, String activeDirectoryIP, String domain, String passphrase, String serviceAccountPassword) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addChildDomain"; StringBuilder sb = path(qPath, serviceName, domainTrustId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "activeDirectoryIP", activeDirectoryIP); addBody(o, "domain", domain); addBody(o, "passphrase", passphrase); addBody(o, "serviceAccountPassword", serviceAccountPassword); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_domainTrust_domainTrustId_addChildDomain_POST", "(", "String", "serviceName", ",", "Long", "domainTrustId", ",", "String", "activeDirectoryIP", ",", "String", "domain", ",", "String", "passphrase", ",", "String", "serviceAccountPassword", "...
Add a child domain for this domain. REST: POST /horizonView/{serviceName}/domainTrust/{domainTrustId}/addChildDomain @param domain [required] Name of your private domain @param serviceAccountPassword [required] Password of the horizonUI service account @param activeDirectoryIP [required] IP of your Active Directory @param passphrase [required] Shared passphrase to create the Active Directory trust @param serviceName [required] Domain of the service @param domainTrustId [required] Domain trust id
[ "Add", "a", "child", "domain", "for", "this", "domain", "." ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L273-L283
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_domainTrust_domainTrustId_addDomainUserOnComposer_POST
public OvhTask serviceName_domainTrust_domainTrustId_addDomainUserOnComposer_POST(String serviceName, Long domainTrustId, String domain, String password, String username) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainUserOnComposer"; StringBuilder sb = path(qPath, serviceName, domainTrustId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "password", password); addBody(o, "username", username); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_domainTrust_domainTrustId_addDomainUserOnComposer_POST(String serviceName, Long domainTrustId, String domain, String password, String username) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainUserOnComposer"; StringBuilder sb = path(qPath, serviceName, domainTrustId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "password", password); addBody(o, "username", username); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_domainTrust_domainTrustId_addDomainUserOnComposer_POST", "(", "String", "serviceName", ",", "Long", "domainTrustId", ",", "String", "domain", ",", "String", "password", ",", "String", "username", ")", "throws", "IOException", "{", "String...
Add a domain user to add your desktop in your Active Directory REST: POST /horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainUserOnComposer @param password [required] Password of the user @param domain [required] Name of your Domain (example : domain.local) @param username [required] Name of the User who is going to add the Desktop in your Active Directory @param serviceName [required] Domain of the service @param domainTrustId [required] Domain trust id
[ "Add", "a", "domain", "user", "to", "add", "your", "desktop", "in", "your", "Active", "Directory" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L314-L323
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_domainTrust_domainTrustId_addDomainController_POST
public OvhTask serviceName_domainTrust_domainTrustId_addDomainController_POST(String serviceName, Long domainTrustId, String domain, String domainControllerIp) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainController"; StringBuilder sb = path(qPath, serviceName, domainTrustId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "domainControllerIp", domainControllerIp); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask serviceName_domainTrust_domainTrustId_addDomainController_POST(String serviceName, Long domainTrustId, String domain, String domainControllerIp) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainController"; StringBuilder sb = path(qPath, serviceName, domainTrustId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "domain", domain); addBody(o, "domainControllerIp", domainControllerIp); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "serviceName_domainTrust_domainTrustId_addDomainController_POST", "(", "String", "serviceName", ",", "Long", "domainTrustId", ",", "String", "domain", ",", "String", "domainControllerIp", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/...
Add a Domain Controller for this domain. REST: POST /horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainController @param domainControllerIp [required] IP of your Domain Controller @param domain [required] Name of your Domain Controller (example : domain.local) @param serviceName [required] Domain of the service @param domainTrustId [required] Domain trust id
[ "Add", "a", "Domain", "Controller", "for", "this", "domain", "." ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L334-L342
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_domainTrust_POST
public ArrayList<OvhTask> serviceName_domainTrust_POST(String serviceName, String activeDirectoryIP, String dns1, String dns2, String domain) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "activeDirectoryIP", activeDirectoryIP); addBody(o, "dns1", dns1); addBody(o, "dns2", dns2); addBody(o, "domain", domain); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
java
public ArrayList<OvhTask> serviceName_domainTrust_POST(String serviceName, String activeDirectoryIP, String dns1, String dns2, String domain) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "activeDirectoryIP", activeDirectoryIP); addBody(o, "dns1", dns1); addBody(o, "dns2", dns2); addBody(o, "domain", domain); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "OvhTask", ">", "serviceName_domainTrust_POST", "(", "String", "serviceName", ",", "String", "activeDirectoryIP", ",", "String", "dns1", ",", "String", "dns2", ",", "String", "domain", ")", "throws", "IOException", "{", "String", "qPath...
Link your Active Directory to your CDI Active Directory REST: POST /horizonView/{serviceName}/domainTrust @param activeDirectoryIP [required] IP of your Active Directory @param domain [required] Domain of your active directory (for example domain.local) @param dns2 [required] IP of your second DNS @param dns1 [required] IP of your first DNS @param serviceName [required] Domain of the service
[ "Link", "your", "Active", "Directory", "to", "your", "CDI", "Active", "Directory" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L381-L391
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_customerNetwork_customerNetworkId_DELETE
public ArrayList<OvhTask> serviceName_customerNetwork_customerNetworkId_DELETE(String serviceName, Long customerNetworkId) throws IOException { String qPath = "/horizonView/{serviceName}/customerNetwork/{customerNetworkId}"; StringBuilder sb = path(qPath, serviceName, customerNetworkId); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, t2); }
java
public ArrayList<OvhTask> serviceName_customerNetwork_customerNetworkId_DELETE(String serviceName, Long customerNetworkId) throws IOException { String qPath = "/horizonView/{serviceName}/customerNetwork/{customerNetworkId}"; StringBuilder sb = path(qPath, serviceName, customerNetworkId); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "OvhTask", ">", "serviceName_customerNetwork_customerNetworkId_DELETE", "(", "String", "serviceName", ",", "Long", "customerNetworkId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/horizonView/{serviceName}/customerNetwork/{customer...
Delete this Customer Network REST: DELETE /horizonView/{serviceName}/customerNetwork/{customerNetworkId} @param serviceName [required] Domain of the service @param customerNetworkId [required] Customer Network id
[ "Delete", "this", "Customer", "Network" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L445-L450
train
UrielCh/ovh-java-sdk
ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java
ApiOvhHorizonView.serviceName_dedicatedHorizon_customerUser_POST
public ArrayList<OvhTask> serviceName_dedicatedHorizon_customerUser_POST(String serviceName, String email, String password, String username) throws IOException { String qPath = "/horizonView/{serviceName}/dedicatedHorizon/customerUser"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "email", email); addBody(o, "password", password); addBody(o, "username", username); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
java
public ArrayList<OvhTask> serviceName_dedicatedHorizon_customerUser_POST(String serviceName, String email, String password, String username) throws IOException { String qPath = "/horizonView/{serviceName}/dedicatedHorizon/customerUser"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "email", email); addBody(o, "password", password); addBody(o, "username", username); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "OvhTask", ">", "serviceName_dedicatedHorizon_customerUser_POST", "(", "String", "serviceName", ",", "String", "email", ",", "String", "password", ",", "String", "username", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/h...
Create a new customer user REST: POST /horizonView/{serviceName}/dedicatedHorizon/customerUser @param email [required] Email for your new user in Active diRectory. @param username [required] Username for your new user in Active Directory. @param password [required] New password for this Horizon View user. It must fits your HaaS password policy. If this field is empty, a random password will be generated and sent to your email. @param serviceName [required] Domain of the service
[ "Create", "a", "new", "customer", "user" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-horizonView/src/main/java/net/minidev/ovh/api/ApiOvhHorizonView.java#L520-L529
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emailpro/src/main/java/net/minidev/ovh/api/ApiOvhEmailpro.java
ApiOvhEmailpro.service_account_email_fullAccess_POST
public OvhTask service_account_email_fullAccess_POST(String service, String email, Long allowedAccountId) throws IOException { String qPath = "/email/pro/{service}/account/{email}/fullAccess"; StringBuilder sb = path(qPath, service, email); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "allowedAccountId", allowedAccountId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask service_account_email_fullAccess_POST(String service, String email, Long allowedAccountId) throws IOException { String qPath = "/email/pro/{service}/account/{email}/fullAccess"; StringBuilder sb = path(qPath, service, email); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "allowedAccountId", allowedAccountId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "service_account_email_fullAccess_POST", "(", "String", "service", ",", "String", "email", ",", "Long", "allowedAccountId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/pro/{service}/account/{email}/fullAccess\"", ";", "StringBui...
Allow full access to a user REST: POST /email/pro/{service}/account/{email}/fullAccess @param allowedAccountId [required] User to give full access @param service [required] The internal name of your pro organization @param email [required] Default email for this mailbox API beta
[ "Allow", "full", "access", "to", "a", "user" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emailpro/src/main/java/net/minidev/ovh/api/ApiOvhEmailpro.java#L318-L325
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emailpro/src/main/java/net/minidev/ovh/api/ApiOvhEmailpro.java
ApiOvhEmailpro.service_account_email_fullAccess_allowedAccountId_DELETE
public OvhTask service_account_email_fullAccess_allowedAccountId_DELETE(String service, String email, Long allowedAccountId) throws IOException { String qPath = "/email/pro/{service}/account/{email}/fullAccess/{allowedAccountId}"; StringBuilder sb = path(qPath, service, email, allowedAccountId); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTask.class); }
java
public OvhTask service_account_email_fullAccess_allowedAccountId_DELETE(String service, String email, Long allowedAccountId) throws IOException { String qPath = "/email/pro/{service}/account/{email}/fullAccess/{allowedAccountId}"; StringBuilder sb = path(qPath, service, email, allowedAccountId); String resp = exec(qPath, "DELETE", sb.toString(), null); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "service_account_email_fullAccess_allowedAccountId_DELETE", "(", "String", "service", ",", "String", "email", ",", "Long", "allowedAccountId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/email/pro/{service}/account/{email}/fullAccess/{all...
Revoke full access REST: DELETE /email/pro/{service}/account/{email}/fullAccess/{allowedAccountId} @param service [required] The internal name of your pro organization @param email [required] Default email for this mailbox @param allowedAccountId [required] Account id to give full access API beta
[ "Revoke", "full", "access" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emailpro/src/main/java/net/minidev/ovh/api/ApiOvhEmailpro.java#L354-L359
train
UrielCh/ovh-java-sdk
ovh-java-sdk-emailpro/src/main/java/net/minidev/ovh/api/ApiOvhEmailpro.java
ApiOvhEmailpro.service_domain_POST
public OvhTask service_domain_POST(String service, Boolean configureAutodiscover, Boolean configureMx, String mxRelay, String name, OvhDomainTypeEnum type) throws IOException { String qPath = "/email/pro/{service}/domain"; StringBuilder sb = path(qPath, service); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "configureAutodiscover", configureAutodiscover); addBody(o, "configureMx", configureMx); addBody(o, "mxRelay", mxRelay); addBody(o, "name", name); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
java
public OvhTask service_domain_POST(String service, Boolean configureAutodiscover, Boolean configureMx, String mxRelay, String name, OvhDomainTypeEnum type) throws IOException { String qPath = "/email/pro/{service}/domain"; StringBuilder sb = path(qPath, service); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "configureAutodiscover", configureAutodiscover); addBody(o, "configureMx", configureMx); addBody(o, "mxRelay", mxRelay); addBody(o, "name", name); addBody(o, "type", type); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhTask.class); }
[ "public", "OvhTask", "service_domain_POST", "(", "String", "service", ",", "Boolean", "configureAutodiscover", ",", "Boolean", "configureMx", ",", "String", "mxRelay", ",", "String", "name", ",", "OvhDomainTypeEnum", "type", ")", "throws", "IOException", "{", "Strin...
Create new domain in pro services REST: POST /email/pro/{service}/domain @param mxRelay [required] If specified, emails to not existing address will be redirected to that domain @param configureAutodiscover [required] If you host domain in OVH we can configure autodiscover record automatically @param configureMx [required] If you host domain in OVH we can configure mx record automatically @param name [required] Domain to install on server @param type [required] Type of domain that You want to install @param service [required] The internal name of your pro organization API beta
[ "Create", "new", "domain", "in", "pro", "services" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emailpro/src/main/java/net/minidev/ovh/api/ApiOvhEmailpro.java#L749-L760
train
UrielCh/ovh-java-sdk
ovh-java-sdk-service/src/main/java/net/minidev/ovh/api/ApiOvhService.java
ApiOvhService.serviceId_renew_GET
public ArrayList<OvhRenewDescription> serviceId_renew_GET(String serviceId, Boolean includeOptions) throws IOException { String qPath = "/service/{serviceId}/renew"; StringBuilder sb = path(qPath, serviceId); query(sb, "includeOptions", includeOptions); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
java
public ArrayList<OvhRenewDescription> serviceId_renew_GET(String serviceId, Boolean includeOptions) throws IOException { String qPath = "/service/{serviceId}/renew"; StringBuilder sb = path(qPath, serviceId); query(sb, "includeOptions", includeOptions); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t2); }
[ "public", "ArrayList", "<", "OvhRenewDescription", ">", "serviceId_renew_GET", "(", "String", "serviceId", ",", "Boolean", "includeOptions", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/service/{serviceId}/renew\"", ";", "StringBuilder", "sb", "=", "...
List possible renews for this service REST: GET /service/{serviceId}/renew @param serviceId [required] Service Id @param includeOptions [required] Include service's option(s) API beta
[ "List", "possible", "renews", "for", "this", "service" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-service/src/main/java/net/minidev/ovh/api/ApiOvhService.java#L91-L97
train
UrielCh/ovh-java-sdk
ovh-java-sdk-service/src/main/java/net/minidev/ovh/api/ApiOvhService.java
ApiOvhService.serviceId_renew_POST
public OvhRenewOrder serviceId_renew_POST(String serviceId, Boolean dryRun, String duration, Long[] services) throws IOException { String qPath = "/service/{serviceId}/renew"; StringBuilder sb = path(qPath, serviceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "dryRun", dryRun); addBody(o, "duration", duration); addBody(o, "services", services); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhRenewOrder.class); }
java
public OvhRenewOrder serviceId_renew_POST(String serviceId, Boolean dryRun, String duration, Long[] services) throws IOException { String qPath = "/service/{serviceId}/renew"; StringBuilder sb = path(qPath, serviceId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "dryRun", dryRun); addBody(o, "duration", duration); addBody(o, "services", services); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhRenewOrder.class); }
[ "public", "OvhRenewOrder", "serviceId_renew_POST", "(", "String", "serviceId", ",", "Boolean", "dryRun", ",", "String", "duration", ",", "Long", "[", "]", "services", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/service/{serviceId}/renew\"", ";", ...
Create a renew order REST: POST /service/{serviceId}/renew @param serviceId [required] Service Id @param dryRun [required] Indicates if renew order is generated @param duration [required] Renew duration @param services [required] List of services to renew API beta
[ "Create", "a", "renew", "order" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-service/src/main/java/net/minidev/ovh/api/ApiOvhService.java#L111-L120
train
UrielCh/ovh-java-sdk
ovh-java-sdk-service/src/main/java/net/minidev/ovh/api/ApiOvhService.java
ApiOvhService.serviceId_suspend_POST
public void serviceId_suspend_POST(Long serviceId) throws IOException { String qPath = "/service/{serviceId}/suspend"; StringBuilder sb = path(qPath, serviceId); exec(qPath, "POST", sb.toString(), null); }
java
public void serviceId_suspend_POST(Long serviceId) throws IOException { String qPath = "/service/{serviceId}/suspend"; StringBuilder sb = path(qPath, serviceId); exec(qPath, "POST", sb.toString(), null); }
[ "public", "void", "serviceId_suspend_POST", "(", "Long", "serviceId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/service/{serviceId}/suspend\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "serviceId", ")", ";", "exec", "(", "...
Suspend the service. The service won't be accessible, but you will still be charged for it REST: POST /service/{serviceId}/suspend @param serviceId [required] The internal ID of your service API beta
[ "Suspend", "the", "service", ".", "The", "service", "won", "t", "be", "accessible", "but", "you", "will", "still", "be", "charged", "for", "it" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-service/src/main/java/net/minidev/ovh/api/ApiOvhService.java#L130-L134
train
JDBDT/jdbdt
src/main/java/org/jdbdt/QueryBuilder.java
QueryBuilder.arguments
@SafeVarargs public final QueryBuilder arguments(Object...args) { set(Param.QUERY_ARGS, ""); queryArgs = args.clone(); return this; }
java
@SafeVarargs public final QueryBuilder arguments(Object...args) { set(Param.QUERY_ARGS, ""); queryArgs = args.clone(); return this; }
[ "@", "SafeVarargs", "public", "final", "QueryBuilder", "arguments", "(", "Object", "...", "args", ")", "{", "set", "(", "Param", ".", "QUERY_ARGS", ",", "\"\"", ")", ";", "queryArgs", "=", "args", ".", "clone", "(", ")", ";", "return", "this", ";", "}"...
Set arguments for query. @param args Arguments. @return The query builder instance for chained calls.
[ "Set", "arguments", "for", "query", "." ]
7e32845ad41dfbc5d6fd0fd561e3613697186df4
https://github.com/JDBDT/jdbdt/blob/7e32845ad41dfbc5d6fd0fd561e3613697186df4/src/main/java/org/jdbdt/QueryBuilder.java#L225-L230
train
JDBDT/jdbdt
src/main/java/org/jdbdt/QueryBuilder.java
QueryBuilder.build
public final Query build(DB db) { return new Query(CallInfo.create(), db, toSQL(), queryArgs); }
java
public final Query build(DB db) { return new Query(CallInfo.create(), db, toSQL(), queryArgs); }
[ "public", "final", "Query", "build", "(", "DB", "db", ")", "{", "return", "new", "Query", "(", "CallInfo", ".", "create", "(", ")", ",", "db", ",", "toSQL", "(", ")", ",", "queryArgs", ")", ";", "}" ]
Build the query. @param db Database handle. @return A new query instance.
[ "Build", "the", "query", "." ]
7e32845ad41dfbc5d6fd0fd561e3613697186df4
https://github.com/JDBDT/jdbdt/blob/7e32845ad41dfbc5d6fd0fd561e3613697186df4/src/main/java/org/jdbdt/QueryBuilder.java#L238-L240
train
UrielCh/ovh-java-sdk
ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java
ApiOvhOverTheBox.serviceName_device_restoreBackup_POST
public ArrayList<OvhDeviceAction> serviceName_device_restoreBackup_POST(String serviceName, String backupId) throws IOException { String qPath = "/overTheBox/{serviceName}/device/restoreBackup"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "backupId", backupId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t4); }
java
public ArrayList<OvhDeviceAction> serviceName_device_restoreBackup_POST(String serviceName, String backupId) throws IOException { String qPath = "/overTheBox/{serviceName}/device/restoreBackup"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "backupId", backupId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, t4); }
[ "public", "ArrayList", "<", "OvhDeviceAction", ">", "serviceName_device_restoreBackup_POST", "(", "String", "serviceName", ",", "String", "backupId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/overTheBox/{serviceName}/device/restoreBackup\"", ";", "Strin...
Create a group of actions to restore a given backup REST: POST /overTheBox/{serviceName}/device/restoreBackup @param backupId [required] The id of the backup to restore @param serviceName [required] The internal name of your overTheBox offer API beta
[ "Create", "a", "group", "of", "actions", "to", "restore", "a", "given", "backup" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java#L173-L180
train
UrielCh/ovh-java-sdk
ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java
ApiOvhOverTheBox.serviceName_remoteAccesses_POST
public OvhRemoteAccess serviceName_remoteAccesses_POST(String serviceName, String allowedIp, Date expirationDate, Long exposedPort, String publicKey) throws IOException { String qPath = "/overTheBox/{serviceName}/remoteAccesses"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "allowedIp", allowedIp); addBody(o, "expirationDate", expirationDate); addBody(o, "exposedPort", exposedPort); addBody(o, "publicKey", publicKey); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhRemoteAccess.class); }
java
public OvhRemoteAccess serviceName_remoteAccesses_POST(String serviceName, String allowedIp, Date expirationDate, Long exposedPort, String publicKey) throws IOException { String qPath = "/overTheBox/{serviceName}/remoteAccesses"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "allowedIp", allowedIp); addBody(o, "expirationDate", expirationDate); addBody(o, "exposedPort", exposedPort); addBody(o, "publicKey", publicKey); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhRemoteAccess.class); }
[ "public", "OvhRemoteAccess", "serviceName_remoteAccesses_POST", "(", "String", "serviceName", ",", "String", "allowedIp", ",", "Date", "expirationDate", ",", "Long", "exposedPort", ",", "String", "publicKey", ")", "throws", "IOException", "{", "String", "qPath", "=", ...
Create a new remote access for the service REST: POST /overTheBox/{serviceName}/remoteAccesses @param exposedPort [required] The port that the device will expose @param publicKey [required] The remote user public key authorized on the device (for SSH purpose) @param allowedIp [required] IP block from which the remote access will be allowed (the default value is the IP from which the call is made) @param expirationDate [required] The expirationDate of the remote access (default 1 day) @param serviceName [required] The internal name of your overTheBox offer
[ "Create", "a", "new", "remote", "access", "for", "the", "service" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java#L262-L272
train
UrielCh/ovh-java-sdk
ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java
ApiOvhOverTheBox.serviceName_remoteAccesses_remoteAccessId_DELETE
public void serviceName_remoteAccesses_remoteAccessId_DELETE(String serviceName, String remoteAccessId) throws IOException { String qPath = "/overTheBox/{serviceName}/remoteAccesses/{remoteAccessId}"; StringBuilder sb = path(qPath, serviceName, remoteAccessId); exec(qPath, "DELETE", sb.toString(), null); }
java
public void serviceName_remoteAccesses_remoteAccessId_DELETE(String serviceName, String remoteAccessId) throws IOException { String qPath = "/overTheBox/{serviceName}/remoteAccesses/{remoteAccessId}"; StringBuilder sb = path(qPath, serviceName, remoteAccessId); exec(qPath, "DELETE", sb.toString(), null); }
[ "public", "void", "serviceName_remoteAccesses_remoteAccessId_DELETE", "(", "String", "serviceName", ",", "String", "remoteAccessId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/overTheBox/{serviceName}/remoteAccesses/{remoteAccessId}\"", ";", "StringBuilder", ...
Delete a remote access REST: DELETE /overTheBox/{serviceName}/remoteAccesses/{remoteAccessId} @param serviceName [required] The internal name of your overTheBox offer @param remoteAccessId [required] The id of the remote access
[ "Delete", "a", "remote", "access" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java#L295-L299
train
UrielCh/ovh-java-sdk
ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java
ApiOvhOverTheBox.serviceName_linkDevice_POST
public void serviceName_linkDevice_POST(String serviceName, String deviceId) throws IOException { String qPath = "/overTheBox/{serviceName}/linkDevice"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "deviceId", deviceId); exec(qPath, "POST", sb.toString(), o); }
java
public void serviceName_linkDevice_POST(String serviceName, String deviceId) throws IOException { String qPath = "/overTheBox/{serviceName}/linkDevice"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "deviceId", deviceId); exec(qPath, "POST", sb.toString(), o); }
[ "public", "void", "serviceName_linkDevice_POST", "(", "String", "serviceName", ",", "String", "deviceId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/overTheBox/{serviceName}/linkDevice\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",",...
Link a device to this service REST: POST /overTheBox/{serviceName}/linkDevice @param deviceId [required] The id of the device @param serviceName [required] The internal name of your overTheBox offer
[ "Link", "a", "device", "to", "this", "service" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java#L321-L327
train
UrielCh/ovh-java-sdk
ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java
ApiOvhOverTheBox.serviceName_migration_offers_GET
public ArrayList<OvhAvailableMigrationOffer> serviceName_migration_offers_GET(String serviceName) throws IOException { String qPath = "/overTheBox/{serviceName}/migration/offers"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public ArrayList<OvhAvailableMigrationOffer> serviceName_migration_offers_GET(String serviceName) throws IOException { String qPath = "/overTheBox/{serviceName}/migration/offers"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "ArrayList", "<", "OvhAvailableMigrationOffer", ">", "serviceName_migration_offers_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/overTheBox/{serviceName}/migration/offers\"", ";", "StringBuilder", "sb", "=", "pa...
List all available offers one can migrate to REST: GET /overTheBox/{serviceName}/migration/offers @param serviceName [required] The internal name of your overTheBox offer API beta
[ "List", "all", "available", "offers", "one", "can", "migrate", "to" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-overTheBox/src/main/java/net/minidev/ovh/api/ApiOvhOverTheBox.java#L363-L368
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cartServiceOption_domain_GET
public ArrayList<String> cartServiceOption_domain_GET(String whoisOwner) throws IOException { String qPath = "/order/cartServiceOption/domain"; StringBuilder sb = path(qPath); query(sb, "whoisOwner", whoisOwner); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> cartServiceOption_domain_GET(String whoisOwner) throws IOException { String qPath = "/order/cartServiceOption/domain"; StringBuilder sb = path(qPath); query(sb, "whoisOwner", whoisOwner); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "cartServiceOption_domain_GET", "(", "String", "whoisOwner", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cartServiceOption/domain\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";",...
List available services REST: GET /order/cartServiceOption/domain @param whoisOwner Filter the value of whoisOwner property (=)
[ "List", "available", "services" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L247-L253
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicated_server_serviceName_feature_GET
public ArrayList<String> dedicated_server_serviceName_feature_GET(String serviceName, OvhOrderableSysFeatureEnum feature) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/feature"; StringBuilder sb = path(qPath, serviceName); query(sb, "feature", feature); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicated_server_serviceName_feature_GET(String serviceName, OvhOrderableSysFeatureEnum feature) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/feature"; StringBuilder sb = path(qPath, serviceName); query(sb, "feature", feature); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicated_server_serviceName_feature_GET", "(", "String", "serviceName", ",", "OvhOrderableSysFeatureEnum", "feature", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicated/server/{serviceName}/feature\"", "...
Get allowed durations for 'feature' option REST: GET /order/dedicated/server/{serviceName}/feature @param feature [required] the feature @param serviceName [required] The internal name of your dedicated server
[ "Get", "allowed", "durations", "for", "feature", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L2193-L2199
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicated_server_serviceName_traffic_GET
public ArrayList<String> dedicated_server_serviceName_traffic_GET(String serviceName, OvhTrafficOrderEnum traffic) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/traffic"; StringBuilder sb = path(qPath, serviceName); query(sb, "traffic", traffic); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicated_server_serviceName_traffic_GET(String serviceName, OvhTrafficOrderEnum traffic) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/traffic"; StringBuilder sb = path(qPath, serviceName); query(sb, "traffic", traffic); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicated_server_serviceName_traffic_GET", "(", "String", "serviceName", ",", "OvhTrafficOrderEnum", "traffic", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicated/server/{serviceName}/traffic\"", ";", "...
Get allowed durations for 'traffic' option REST: GET /order/dedicated/server/{serviceName}/traffic @param traffic [required] amount of traffic to allocate @param serviceName [required] The internal name of your dedicated server
[ "Get", "allowed", "durations", "for", "traffic", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L2241-L2247
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicated_server_serviceName_staticIP_GET
public ArrayList<String> dedicated_server_serviceName_staticIP_GET(String serviceName, OvhIpStaticCountryEnum country) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/staticIP"; StringBuilder sb = path(qPath, serviceName); query(sb, "country", country); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicated_server_serviceName_staticIP_GET(String serviceName, OvhIpStaticCountryEnum country) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/staticIP"; StringBuilder sb = path(qPath, serviceName); query(sb, "country", country); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicated_server_serviceName_staticIP_GET", "(", "String", "serviceName", ",", "OvhIpStaticCountryEnum", "country", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicated/server/{serviceName}/staticIP\"", ";"...
Get allowed durations for 'staticIP' option REST: GET /order/dedicated/server/{serviceName}/staticIP @param country [required] Ip localization @param serviceName [required] The internal name of your dedicated server
[ "Get", "allowed", "durations", "for", "staticIP", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L2322-L2328
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicated_server_serviceName_backupStorage_GET
public ArrayList<String> dedicated_server_serviceName_backupStorage_GET(String serviceName, OvhBackupStorageCapacityEnum capacity) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/backupStorage"; StringBuilder sb = path(qPath, serviceName); query(sb, "capacity", capacity); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicated_server_serviceName_backupStorage_GET(String serviceName, OvhBackupStorageCapacityEnum capacity) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/backupStorage"; StringBuilder sb = path(qPath, serviceName); query(sb, "capacity", capacity); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicated_server_serviceName_backupStorage_GET", "(", "String", "serviceName", ",", "OvhBackupStorageCapacityEnum", "capacity", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicated/server/{serviceName}/backup...
Get allowed durations for 'backupStorage' option REST: GET /order/dedicated/server/{serviceName}/backupStorage @param capacity [required] The capacity in gigabytes of your backup storage @param serviceName [required] The internal name of your dedicated server
[ "Get", "allowed", "durations", "for", "backupStorage", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L2484-L2490
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicated_server_serviceName_bandwidth_GET
public ArrayList<String> dedicated_server_serviceName_bandwidth_GET(String serviceName, OvhBandwidthOrderEnum bandwidth, OvhBandwidthOrderTypeEnum type) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/bandwidth"; StringBuilder sb = path(qPath, serviceName); query(sb, "bandwidth", bandwidth); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicated_server_serviceName_bandwidth_GET(String serviceName, OvhBandwidthOrderEnum bandwidth, OvhBandwidthOrderTypeEnum type) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/bandwidth"; StringBuilder sb = path(qPath, serviceName); query(sb, "bandwidth", bandwidth); query(sb, "type", type); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicated_server_serviceName_bandwidth_GET", "(", "String", "serviceName", ",", "OvhBandwidthOrderEnum", "bandwidth", ",", "OvhBandwidthOrderTypeEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order...
Get allowed durations for 'bandwidth' option REST: GET /order/dedicated/server/{serviceName}/bandwidth @param bandwidth [required] Bandwidth to allocate @param type [required] bandwidth type @param serviceName [required] The internal name of your dedicated server
[ "Get", "allowed", "durations", "for", "bandwidth", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L2537-L2544
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicated_server_serviceName_ipMigration_GET
public ArrayList<String> dedicated_server_serviceName_ipMigration_GET(String serviceName, String ip, String token) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/ipMigration"; StringBuilder sb = path(qPath, serviceName); query(sb, "ip", ip); query(sb, "token", token); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicated_server_serviceName_ipMigration_GET(String serviceName, String ip, String token) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/ipMigration"; StringBuilder sb = path(qPath, serviceName); query(sb, "ip", ip); query(sb, "token", token); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicated_server_serviceName_ipMigration_GET", "(", "String", "serviceName", ",", "String", "ip", ",", "String", "token", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicated/server/{serviceName}/ipMigr...
Get allowed durations for 'ipMigration' option REST: GET /order/dedicated/server/{serviceName}/ipMigration @param ip [required] The IP to move to this server @param token [required] IP migration token @param serviceName [required] The internal name of your dedicated server
[ "Get", "allowed", "durations", "for", "ipMigration", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L2554-L2561
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicated_server_serviceName_firewall_GET
public ArrayList<String> dedicated_server_serviceName_firewall_GET(String serviceName, OvhFirewallModelEnum firewallModel) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/firewall"; StringBuilder sb = path(qPath, serviceName); query(sb, "firewallModel", firewallModel); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicated_server_serviceName_firewall_GET(String serviceName, OvhFirewallModelEnum firewallModel) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/firewall"; StringBuilder sb = path(qPath, serviceName); query(sb, "firewallModel", firewallModel); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicated_server_serviceName_firewall_GET", "(", "String", "serviceName", ",", "OvhFirewallModelEnum", "firewallModel", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicated/server/{serviceName}/firewall\"", ...
Get allowed durations for 'firewall' option REST: GET /order/dedicated/server/{serviceName}/firewall @param firewallModel [required] Firewall type @param serviceName [required] The internal name of your dedicated server
[ "Get", "allowed", "durations", "for", "firewall", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L2818-L2824
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.vps_serviceName_plesk_GET
public ArrayList<String> vps_serviceName_plesk_GET(String serviceName, OvhPleskLicenseDomainNumberEnum domainNumber) throws IOException { String qPath = "/order/vps/{serviceName}/plesk"; StringBuilder sb = path(qPath, serviceName); query(sb, "domainNumber", domainNumber); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> vps_serviceName_plesk_GET(String serviceName, OvhPleskLicenseDomainNumberEnum domainNumber) throws IOException { String qPath = "/order/vps/{serviceName}/plesk"; StringBuilder sb = path(qPath, serviceName); query(sb, "domainNumber", domainNumber); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "vps_serviceName_plesk_GET", "(", "String", "serviceName", ",", "OvhPleskLicenseDomainNumberEnum", "domainNumber", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/vps/{serviceName}/plesk\"", ";", "StringBuilder...
Get allowed durations for 'plesk' option REST: GET /order/vps/{serviceName}/plesk @param domainNumber [required] Domain number you want to order a licence for @param serviceName [required] The internal name of your VPS offer @deprecated
[ "Get", "allowed", "durations", "for", "plesk", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L3308-L3314
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.vps_serviceName_additionalDisk_GET
public ArrayList<String> vps_serviceName_additionalDisk_GET(String serviceName, OvhAdditionalDiskSizeEnum additionalDiskSize) throws IOException { String qPath = "/order/vps/{serviceName}/additionalDisk"; StringBuilder sb = path(qPath, serviceName); query(sb, "additionalDiskSize", additionalDiskSize); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> vps_serviceName_additionalDisk_GET(String serviceName, OvhAdditionalDiskSizeEnum additionalDiskSize) throws IOException { String qPath = "/order/vps/{serviceName}/additionalDisk"; StringBuilder sb = path(qPath, serviceName); query(sb, "additionalDiskSize", additionalDiskSize); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "vps_serviceName_additionalDisk_GET", "(", "String", "serviceName", ",", "OvhAdditionalDiskSizeEnum", "additionalDiskSize", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/vps/{serviceName}/additionalDisk\"", ";"...
Get allowed durations for 'additionalDisk' option REST: GET /order/vps/{serviceName}/additionalDisk @param additionalDiskSize [required] Size of the additional disk @param serviceName [required] The internal name of your VPS offer
[ "Get", "allowed", "durations", "for", "additionalDisk", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L3586-L3592
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.email_exchange_organizationName_service_exchangeService_outlook_GET
public ArrayList<String> email_exchange_organizationName_service_exchangeService_outlook_GET(String organizationName, String exchangeService, OvhOutlookVersionEnum licence, String primaryEmailAddress) throws IOException { String qPath = "/order/email/exchange/{organizationName}/service/{exchangeService}/outlook"; StringBuilder sb = path(qPath, organizationName, exchangeService); query(sb, "licence", licence); query(sb, "primaryEmailAddress", primaryEmailAddress); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> email_exchange_organizationName_service_exchangeService_outlook_GET(String organizationName, String exchangeService, OvhOutlookVersionEnum licence, String primaryEmailAddress) throws IOException { String qPath = "/order/email/exchange/{organizationName}/service/{exchangeService}/outlook"; StringBuilder sb = path(qPath, organizationName, exchangeService); query(sb, "licence", licence); query(sb, "primaryEmailAddress", primaryEmailAddress); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "email_exchange_organizationName_service_exchangeService_outlook_GET", "(", "String", "organizationName", ",", "String", "exchangeService", ",", "OvhOutlookVersionEnum", "licence", ",", "String", "primaryEmailAddress", ")", "throws", ...
Get allowed durations for 'outlook' option REST: GET /order/email/exchange/{organizationName}/service/{exchangeService}/outlook @param licence [required] Outlook version @param primaryEmailAddress [required] Primary email address for account which You want to buy an outlook @param organizationName [required] The internal name of your exchange organization @param exchangeService [required] The internal name of your exchange service
[ "Get", "allowed", "durations", "for", "outlook", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L3870-L3877
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.email_exchange_organizationName_service_exchangeService_accountUpgrade_GET
public ArrayList<String> email_exchange_organizationName_service_exchangeService_accountUpgrade_GET(String organizationName, String exchangeService, OvhAccountQuotaEnum newQuota, String primaryEmailAddress) throws IOException { String qPath = "/order/email/exchange/{organizationName}/service/{exchangeService}/accountUpgrade"; StringBuilder sb = path(qPath, organizationName, exchangeService); query(sb, "newQuota", newQuota); query(sb, "primaryEmailAddress", primaryEmailAddress); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> email_exchange_organizationName_service_exchangeService_accountUpgrade_GET(String organizationName, String exchangeService, OvhAccountQuotaEnum newQuota, String primaryEmailAddress) throws IOException { String qPath = "/order/email/exchange/{organizationName}/service/{exchangeService}/accountUpgrade"; StringBuilder sb = path(qPath, organizationName, exchangeService); query(sb, "newQuota", newQuota); query(sb, "primaryEmailAddress", primaryEmailAddress); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "email_exchange_organizationName_service_exchangeService_accountUpgrade_GET", "(", "String", "organizationName", ",", "String", "exchangeService", ",", "OvhAccountQuotaEnum", "newQuota", ",", "String", "primaryEmailAddress", ")", "thro...
Get allowed durations for 'accountUpgrade' option REST: GET /order/email/exchange/{organizationName}/service/{exchangeService}/accountUpgrade @param newQuota [required] New storage quota for that account @param primaryEmailAddress [required] The account you wish to upgrade @param organizationName [required] The internal name of your exchange organization @param exchangeService [required] The internal name of your exchange service
[ "Get", "allowed", "durations", "for", "accountUpgrade", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L3965-L3972
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.upgrade_sslGateway_serviceName_planCode_POST
public OvhOrderUpgradeOperationAndOrder upgrade_sslGateway_serviceName_planCode_POST(String serviceName, String planCode, Boolean autoPayWithPreferredPaymentMethod, Long quantity) throws IOException { String qPath = "/order/upgrade/sslGateway/{serviceName}/{planCode}"; StringBuilder sb = path(qPath, serviceName, planCode); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "autoPayWithPreferredPaymentMethod", autoPayWithPreferredPaymentMethod); addBody(o, "quantity", quantity); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOrderUpgradeOperationAndOrder.class); }
java
public OvhOrderUpgradeOperationAndOrder upgrade_sslGateway_serviceName_planCode_POST(String serviceName, String planCode, Boolean autoPayWithPreferredPaymentMethod, Long quantity) throws IOException { String qPath = "/order/upgrade/sslGateway/{serviceName}/{planCode}"; StringBuilder sb = path(qPath, serviceName, planCode); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "autoPayWithPreferredPaymentMethod", autoPayWithPreferredPaymentMethod); addBody(o, "quantity", quantity); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOrderUpgradeOperationAndOrder.class); }
[ "public", "OvhOrderUpgradeOperationAndOrder", "upgrade_sslGateway_serviceName_planCode_POST", "(", "String", "serviceName", ",", "String", "planCode", ",", "Boolean", "autoPayWithPreferredPaymentMethod", ",", "Long", "quantity", ")", "throws", "IOException", "{", "String", "q...
Perform the requested upgrade of your service REST: POST /order/upgrade/sslGateway/{serviceName}/{planCode} @param planCode [required] Plan code of the offer you want to upgrade to @param autoPayWithPreferredPaymentMethod [required] Indicates that order will be automatically paid with preferred payment method @param quantity [required] Quantity you want to upgrade to @param serviceName [required] The internal ID of SSL Gateway service API beta
[ "Perform", "the", "requested", "upgrade", "of", "your", "service" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L4319-L4327
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.upgrade_privateCloud_serviceName_planCode_GET
public OvhOrderUpgradeOperationAndOrder upgrade_privateCloud_serviceName_planCode_GET(String serviceName, String planCode, Long quantity) throws IOException { String qPath = "/order/upgrade/privateCloud/{serviceName}/{planCode}"; StringBuilder sb = path(qPath, serviceName, planCode); query(sb, "quantity", quantity); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhOrderUpgradeOperationAndOrder.class); }
java
public OvhOrderUpgradeOperationAndOrder upgrade_privateCloud_serviceName_planCode_GET(String serviceName, String planCode, Long quantity) throws IOException { String qPath = "/order/upgrade/privateCloud/{serviceName}/{planCode}"; StringBuilder sb = path(qPath, serviceName, planCode); query(sb, "quantity", quantity); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhOrderUpgradeOperationAndOrder.class); }
[ "public", "OvhOrderUpgradeOperationAndOrder", "upgrade_privateCloud_serviceName_planCode_GET", "(", "String", "serviceName", ",", "String", "planCode", ",", "Long", "quantity", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/upgrade/privateCloud/{serviceNam...
Get a provisional order for the selected upgrade of your service REST: GET /order/upgrade/privateCloud/{serviceName}/{planCode} @param planCode [required] Plan code of the offer you want to upgrade to @param quantity [required] Quantity you want to upgrade to @param serviceName [required] The private cloud service name API beta
[ "Get", "a", "provisional", "order", "for", "the", "selected", "upgrade", "of", "your", "service" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L4368-L4374
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.hosting_privateDatabase_serviceName_ram_GET
public ArrayList<String> hosting_privateDatabase_serviceName_ram_GET(String serviceName, OvhAvailableRamSizeEnum ram) throws IOException { String qPath = "/order/hosting/privateDatabase/{serviceName}/ram"; StringBuilder sb = path(qPath, serviceName); query(sb, "ram", ram); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> hosting_privateDatabase_serviceName_ram_GET(String serviceName, OvhAvailableRamSizeEnum ram) throws IOException { String qPath = "/order/hosting/privateDatabase/{serviceName}/ram"; StringBuilder sb = path(qPath, serviceName); query(sb, "ram", ram); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "hosting_privateDatabase_serviceName_ram_GET", "(", "String", "serviceName", ",", "OvhAvailableRamSizeEnum", "ram", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/hosting/privateDatabase/{serviceName}/ram\"", ";...
Get allowed durations for 'ram' option REST: GET /order/hosting/privateDatabase/{serviceName}/ram @param ram [required] Private database ram size @param serviceName [required] The internal name of your private database
[ "Get", "allowed", "durations", "for", "ram", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5200-L5206
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cdn_dedicated_serviceName_backend_GET
public ArrayList<String> cdn_dedicated_serviceName_backend_GET(String serviceName, Long backend) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/backend"; StringBuilder sb = path(qPath, serviceName); query(sb, "backend", backend); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> cdn_dedicated_serviceName_backend_GET(String serviceName, Long backend) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/backend"; StringBuilder sb = path(qPath, serviceName); query(sb, "backend", backend); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "cdn_dedicated_serviceName_backend_GET", "(", "String", "serviceName", ",", "Long", "backend", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cdn/dedicated/{serviceName}/backend\"", ";", "StringBuilder", "sb...
Get allowed durations for 'backend' option REST: GET /order/cdn/dedicated/{serviceName}/backend @param backend [required] Backend number that will be ordered @param serviceName [required] The internal name of your CDN offer
[ "Get", "allowed", "durations", "for", "backend", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5261-L5267
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cdn_dedicated_serviceName_cacheRule_GET
public ArrayList<String> cdn_dedicated_serviceName_cacheRule_GET(String serviceName, OvhOrderCacheRuleEnum cacheRule) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/cacheRule"; StringBuilder sb = path(qPath, serviceName); query(sb, "cacheRule", cacheRule); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> cdn_dedicated_serviceName_cacheRule_GET(String serviceName, OvhOrderCacheRuleEnum cacheRule) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/cacheRule"; StringBuilder sb = path(qPath, serviceName); query(sb, "cacheRule", cacheRule); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "cdn_dedicated_serviceName_cacheRule_GET", "(", "String", "serviceName", ",", "OvhOrderCacheRuleEnum", "cacheRule", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cdn/dedicated/{serviceName}/cacheRule\"", ";", ...
Get allowed durations for 'cacheRule' option REST: GET /order/cdn/dedicated/{serviceName}/cacheRule @param cacheRule [required] cache rule upgrade option to 100 or 1000 @param serviceName [required] The internal name of your CDN offer
[ "Get", "allowed", "durations", "for", "cacheRule", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5309-L5315
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cdn_dedicated_serviceName_quota_GET
public ArrayList<String> cdn_dedicated_serviceName_quota_GET(String serviceName, OvhOrderQuotaEnum quota) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/quota"; StringBuilder sb = path(qPath, serviceName); query(sb, "quota", quota); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> cdn_dedicated_serviceName_quota_GET(String serviceName, OvhOrderQuotaEnum quota) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/quota"; StringBuilder sb = path(qPath, serviceName); query(sb, "quota", quota); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "cdn_dedicated_serviceName_quota_GET", "(", "String", "serviceName", ",", "OvhOrderQuotaEnum", "quota", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cdn/dedicated/{serviceName}/quota\"", ";", "StringBuilder"...
Get allowed durations for 'quota' option REST: GET /order/cdn/dedicated/{serviceName}/quota @param quota [required] quota number in TB that will be added to the CDN service @param serviceName [required] The internal name of your CDN offer
[ "Get", "allowed", "durations", "for", "quota", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5337-L5343
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cdn_webstorage_serviceName_storage_GET
public ArrayList<String> cdn_webstorage_serviceName_storage_GET(String serviceName, OvhOrderStorageEnum storage) throws IOException { String qPath = "/order/cdn/webstorage/{serviceName}/storage"; StringBuilder sb = path(qPath, serviceName); query(sb, "storage", storage); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> cdn_webstorage_serviceName_storage_GET(String serviceName, OvhOrderStorageEnum storage) throws IOException { String qPath = "/order/cdn/webstorage/{serviceName}/storage"; StringBuilder sb = path(qPath, serviceName); query(sb, "storage", storage); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "cdn_webstorage_serviceName_storage_GET", "(", "String", "serviceName", ",", "OvhOrderStorageEnum", "storage", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cdn/webstorage/{serviceName}/storage\"", ";", "Stri...
Get allowed durations for 'storage' option REST: GET /order/cdn/webstorage/{serviceName}/storage @param storage [required] Storage option that will be ordered @param serviceName [required] The internal name of your CDN Static offer
[ "Get", "allowed", "durations", "for", "storage", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5466-L5472
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicatedCloud_serviceName_filer_GET
public ArrayList<String> dedicatedCloud_serviceName_filer_GET(String serviceName, Long datacenterId, String name, Long quantity) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/filer"; StringBuilder sb = path(qPath, serviceName); query(sb, "datacenterId", datacenterId); query(sb, "name", name); query(sb, "quantity", quantity); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicatedCloud_serviceName_filer_GET(String serviceName, Long datacenterId, String name, Long quantity) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/filer"; StringBuilder sb = path(qPath, serviceName); query(sb, "datacenterId", datacenterId); query(sb, "name", name); query(sb, "quantity", quantity); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicatedCloud_serviceName_filer_GET", "(", "String", "serviceName", ",", "Long", "datacenterId", ",", "String", "name", ",", "Long", "quantity", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicat...
Get allowed durations for 'filer' option REST: GET /order/dedicatedCloud/{serviceName}/filer @param name [required] Filer profile you want to order ("name" field in a profile returned by /dedicatedCloud/{serviceName}/datacenter/{datacenterId}/orderableFilerProfiles) @param quantity [required] Quantity of filer you want to order (default 1) @param datacenterId [required] Datacenter where the filer will be mounted (if not precised, will be mounted in each Datacenter of this Private Cloud) @param serviceName [required]
[ "Get", "allowed", "durations", "for", "filer", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5541-L5549
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicatedCloud_serviceName_additionalBandwidth_GET
public ArrayList<String> dedicatedCloud_serviceName_additionalBandwidth_GET(String serviceName, OvhAdditionalBandwidthEnum bandwidth) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/additionalBandwidth"; StringBuilder sb = path(qPath, serviceName); query(sb, "bandwidth", bandwidth); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicatedCloud_serviceName_additionalBandwidth_GET(String serviceName, OvhAdditionalBandwidthEnum bandwidth) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/additionalBandwidth"; StringBuilder sb = path(qPath, serviceName); query(sb, "bandwidth", bandwidth); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicatedCloud_serviceName_additionalBandwidth_GET", "(", "String", "serviceName", ",", "OvhAdditionalBandwidthEnum", "bandwidth", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/dedicatedCloud/{serviceName}/addit...
Get allowed durations for 'additionalBandwidth' option REST: GET /order/dedicatedCloud/{serviceName}/additionalBandwidth @param bandwidth [required] How much additional bandwidth do you want ? @param serviceName [required]
[ "Get", "allowed", "durations", "for", "additionalBandwidth", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5718-L5724
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.dedicatedCloud_serviceName_upgradeRessource_GET
public ArrayList<String> dedicatedCloud_serviceName_upgradeRessource_GET(String serviceName, OvhUpgradeTypeEnum upgradeType, Long upgradedRessourceId, OvhUpgradeRessourceTypeEnum upgradedRessourceType) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/upgradeRessource"; StringBuilder sb = path(qPath, serviceName); query(sb, "upgradeType", upgradeType); query(sb, "upgradedRessourceId", upgradedRessourceId); query(sb, "upgradedRessourceType", upgradedRessourceType); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> dedicatedCloud_serviceName_upgradeRessource_GET(String serviceName, OvhUpgradeTypeEnum upgradeType, Long upgradedRessourceId, OvhUpgradeRessourceTypeEnum upgradedRessourceType) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/upgradeRessource"; StringBuilder sb = path(qPath, serviceName); query(sb, "upgradeType", upgradeType); query(sb, "upgradedRessourceId", upgradedRessourceId); query(sb, "upgradedRessourceType", upgradedRessourceType); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "dedicatedCloud_serviceName_upgradeRessource_GET", "(", "String", "serviceName", ",", "OvhUpgradeTypeEnum", "upgradeType", ",", "Long", "upgradedRessourceId", ",", "OvhUpgradeRessourceTypeEnum", "upgradedRessourceType", ")", "throws", ...
Get allowed durations for 'upgradeRessource' option REST: GET /order/dedicatedCloud/{serviceName}/upgradeRessource @param upgradedRessourceType [required] The type of ressource you want to upgrade. @param upgradedRessourceId [required] The id of a particular ressource you want to upgrade in your Private Cloud (useless for "all" UpgradeRessourceTypeEnum) @param upgradeType [required] The type of upgrade you want to process on the ressource(s) @param serviceName [required]
[ "Get", "allowed", "durations", "for", "upgradeRessource", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L5735-L5743
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.catalog_formatted_cloud_GET
public OvhCatalog catalog_formatted_cloud_GET(OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/catalog/formatted/cloud"; StringBuilder sb = path(qPath); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhCatalog.class); }
java
public OvhCatalog catalog_formatted_cloud_GET(OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/catalog/formatted/cloud"; StringBuilder sb = path(qPath); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhCatalog.class); }
[ "public", "OvhCatalog", "catalog_formatted_cloud_GET", "(", "OvhOvhSubsidiaryEnum", "ovhSubsidiary", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/catalog/formatted/cloud\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query"...
Retrieve information of Public Cloud catalog REST: GET /order/catalog/formatted/cloud @param ovhSubsidiary [required] Subsidiary of the country you want to consult catalog API beta
[ "Retrieve", "information", "of", "Public", "Cloud", "catalog" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7006-L7012
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.catalog_formatted_privateCloudReseller_GET
public net.minidev.ovh.api.order.catalog.pcc.OvhCatalog catalog_formatted_privateCloudReseller_GET(OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/catalog/formatted/privateCloudReseller"; StringBuilder sb = path(qPath); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, net.minidev.ovh.api.order.catalog.pcc.OvhCatalog.class); }
java
public net.minidev.ovh.api.order.catalog.pcc.OvhCatalog catalog_formatted_privateCloudReseller_GET(OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/catalog/formatted/privateCloudReseller"; StringBuilder sb = path(qPath); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, net.minidev.ovh.api.order.catalog.pcc.OvhCatalog.class); }
[ "public", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "order", ".", "catalog", ".", "pcc", ".", "OvhCatalog", "catalog_formatted_privateCloudReseller_GET", "(", "OvhOvhSubsidiaryEnum", "ovhSubsidiary", ")", "throws", "IOException", "{", "String", "qPath", ...
Retrieve information of Private Cloud Reseller catalog REST: GET /order/catalog/formatted/privateCloudReseller @param ovhSubsidiary [required] Subsidiary of the country you want to consult catalog
[ "Retrieve", "information", "of", "Private", "Cloud", "Reseller", "catalog" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7205-L7211
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.catalog_formatted_privateCloudDC_GET
public net.minidev.ovh.api.order.catalog.privatecloud.OvhCatalog catalog_formatted_privateCloudDC_GET(OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/catalog/formatted/privateCloudDC"; StringBuilder sb = path(qPath); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, net.minidev.ovh.api.order.catalog.privatecloud.OvhCatalog.class); }
java
public net.minidev.ovh.api.order.catalog.privatecloud.OvhCatalog catalog_formatted_privateCloudDC_GET(OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/catalog/formatted/privateCloudDC"; StringBuilder sb = path(qPath); query(sb, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, net.minidev.ovh.api.order.catalog.privatecloud.OvhCatalog.class); }
[ "public", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "order", ".", "catalog", ".", "privatecloud", ".", "OvhCatalog", "catalog_formatted_privateCloudDC_GET", "(", "OvhOvhSubsidiaryEnum", "ovhSubsidiary", ")", "throws", "IOException", "{", "String", "qPath",...
Retrieve information of Private Cloud Dedicated Cloud catalog REST: GET /order/catalog/formatted/privateCloudDC @param ovhSubsidiary [required] Subsidiary of the country you want to consult catalog API beta
[ "Retrieve", "information", "of", "Private", "Cloud", "Dedicated", "Cloud", "catalog" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7331-L7337
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_GET
public ArrayList<String> cart_GET(String description) throws IOException { String qPath = "/order/cart"; StringBuilder sb = path(qPath); query(sb, "description", description); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
java
public ArrayList<String> cart_GET(String description) throws IOException { String qPath = "/order/cart"; StringBuilder sb = path(qPath); query(sb, "description", description); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "cart_GET", "(", "String", "description", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(", "sb", ",", "\"...
List of your OVH order carts REST: GET /order/cart @param description [required] Filter the value of description property (=)
[ "List", "of", "your", "OVH", "order", "carts" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7345-L7351
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_POST
public OvhCart cart_POST(String description, Date expire, OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/cart"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "expire", expire); addBody(o, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhCart.class); }
java
public OvhCart cart_POST(String description, Date expire, OvhOvhSubsidiaryEnum ovhSubsidiary) throws IOException { String qPath = "/order/cart"; StringBuilder sb = path(qPath); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "expire", expire); addBody(o, "ovhSubsidiary", ovhSubsidiary); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhCart.class); }
[ "public", "OvhCart", "cart_POST", "(", "String", "description", ",", "Date", "expire", ",", "OvhOvhSubsidiaryEnum", "ovhSubsidiary", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath"...
Create a new OVH order cart REST: POST /order/cart @param description [required] Description of your cart @param expire [required] Time of expiration of the cart @param ovhSubsidiary [required] OVH Subsidiary where you want to order
[ "Create", "a", "new", "OVH", "order", "cart" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7361-L7370
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_dedicatedReseller_GET
public ArrayList<OvhGenericProductDefinition> cart_cartId_dedicatedReseller_GET(String cartId, String family, String planCode) throws IOException { String qPath = "/order/cart/{cartId}/dedicatedReseller"; StringBuilder sb = path(qPath, cartId); query(sb, "family", family); query(sb, "planCode", planCode); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
java
public ArrayList<OvhGenericProductDefinition> cart_cartId_dedicatedReseller_GET(String cartId, String family, String planCode) throws IOException { String qPath = "/order/cart/{cartId}/dedicatedReseller"; StringBuilder sb = path(qPath, cartId); query(sb, "family", family); query(sb, "planCode", planCode); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
[ "public", "ArrayList", "<", "OvhGenericProductDefinition", ">", "cart_cartId_dedicatedReseller_GET", "(", "String", "cartId", ",", "String", "family", ",", "String", "planCode", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/dedicatedRe...
Get informations about a dedicated server for US Reseller REST: GET /order/cart/{cartId}/dedicatedReseller @param cartId [required] Cart identifier @param planCode [required] Filter the value of planCode property (=) @param family [required] Filter the value of family property (=)
[ "Get", "informations", "about", "a", "dedicated", "server", "for", "US", "Reseller" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7639-L7646
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_webHosting_GET
public ArrayList<OvhWebHostingProductInformation> cart_cartId_webHosting_GET(String cartId) throws IOException { String qPath = "/order/cart/{cartId}/webHosting"; StringBuilder sb = path(qPath, cartId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
java
public ArrayList<OvhWebHostingProductInformation> cart_cartId_webHosting_GET(String cartId) throws IOException { String qPath = "/order/cart/{cartId}/webHosting"; StringBuilder sb = path(qPath, cartId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t4); }
[ "public", "ArrayList", "<", "OvhWebHostingProductInformation", ">", "cart_cartId_webHosting_GET", "(", "String", "cartId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/webHosting\"", ";", "StringBuilder", "sb", "=", "path", "(", "qP...
Get informations about webHosting offers REST: GET /order/cart/{cartId}/webHosting @param cartId [required] Cart identifier
[ "Get", "informations", "about", "webHosting", "offers" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7750-L7755
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_dns_POST
public OvhItem cart_cartId_dns_POST(String cartId, String duration, String planCode, String pricingMode, Long quantity) throws IOException { String qPath = "/order/cart/{cartId}/dns"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "duration", duration); addBody(o, "planCode", planCode); addBody(o, "pricingMode", pricingMode); addBody(o, "quantity", quantity); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhItem.class); }
java
public OvhItem cart_cartId_dns_POST(String cartId, String duration, String planCode, String pricingMode, Long quantity) throws IOException { String qPath = "/order/cart/{cartId}/dns"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "duration", duration); addBody(o, "planCode", planCode); addBody(o, "pricingMode", pricingMode); addBody(o, "quantity", quantity); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhItem.class); }
[ "public", "OvhItem", "cart_cartId_dns_POST", "(", "String", "cartId", ",", "String", "duration", ",", "String", "planCode", ",", "String", "pricingMode", ",", "Long", "quantity", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/dns\...
Post a new DNS zone item in your cart REST: POST /order/cart/{cartId}/dns @param cartId [required] Cart identifier @param planCode [required] Identifier of a DNS zone offer @param duration [required] Duration selected for the purchase of the product @param pricingMode [required] Pricing mode selected for the purchase of the product @param quantity [required] Quantity of product desired
[ "Post", "a", "new", "DNS", "zone", "item", "in", "your", "cart" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L7916-L7926
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_item_itemId_GET
public OvhItem cart_cartId_item_itemId_GET(String cartId, Long itemId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}"; StringBuilder sb = path(qPath, cartId, itemId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhItem.class); }
java
public OvhItem cart_cartId_item_itemId_GET(String cartId, Long itemId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}"; StringBuilder sb = path(qPath, cartId, itemId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhItem.class); }
[ "public", "OvhItem", "cart_cartId_item_itemId_GET", "(", "String", "cartId", ",", "Long", "itemId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/item/{itemId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "cart...
Retrieve information about a specific item of a cart REST: GET /order/cart/{cartId}/item/{itemId} @param cartId [required] Cart identifier @param itemId [required] Product item identifier
[ "Retrieve", "information", "about", "a", "specific", "item", "of", "a", "cart" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8005-L8010
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_item_itemId_configuration_GET
public ArrayList<Long> cart_cartId_item_itemId_configuration_GET(String cartId, Long itemId, String label) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration"; StringBuilder sb = path(qPath, cartId, itemId); query(sb, "label", label); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public ArrayList<Long> cart_cartId_item_itemId_configuration_GET(String cartId, Long itemId, String label) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration"; StringBuilder sb = path(qPath, cartId, itemId); query(sb, "label", label); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "ArrayList", "<", "Long", ">", "cart_cartId_item_itemId_configuration_GET", "(", "String", "cartId", ",", "Long", "itemId", ",", "String", "label", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/item/{itemId}/configuration\"",...
Retrieve all configuration item of the cart item REST: GET /order/cart/{cartId}/item/{itemId}/configuration @param cartId [required] Cart identifier @param itemId [required] Product item identifier @param label [required] Filter the value of label property (=)
[ "Retrieve", "all", "configuration", "item", "of", "the", "cart", "item" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8052-L8058
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_item_itemId_configuration_POST
public OvhConfigurationItem cart_cartId_item_itemId_configuration_POST(String cartId, Long itemId, String label, String value) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration"; StringBuilder sb = path(qPath, cartId, itemId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "label", label); addBody(o, "value", value); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhConfigurationItem.class); }
java
public OvhConfigurationItem cart_cartId_item_itemId_configuration_POST(String cartId, Long itemId, String label, String value) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration"; StringBuilder sb = path(qPath, cartId, itemId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "label", label); addBody(o, "value", value); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhConfigurationItem.class); }
[ "public", "OvhConfigurationItem", "cart_cartId_item_itemId_configuration_POST", "(", "String", "cartId", ",", "Long", "itemId", ",", "String", "label", ",", "String", "value", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/item/{itemId}...
Setup configuration item for the product REST: POST /order/cart/{cartId}/item/{itemId}/configuration @param cartId [required] Cart identifier @param itemId [required] Product item identifier @param label [required] Label for your configuration item @param value [required] Value or resource URL on API.OVH.COM of your configuration item
[ "Setup", "configuration", "item", "for", "the", "product" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8070-L8078
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_item_itemId_configuration_configurationId_GET
public OvhConfigurationItem cart_cartId_item_itemId_configuration_configurationId_GET(String cartId, Long itemId, Long configurationId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration/{configurationId}"; StringBuilder sb = path(qPath, cartId, itemId, configurationId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhConfigurationItem.class); }
java
public OvhConfigurationItem cart_cartId_item_itemId_configuration_configurationId_GET(String cartId, Long itemId, Long configurationId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration/{configurationId}"; StringBuilder sb = path(qPath, cartId, itemId, configurationId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhConfigurationItem.class); }
[ "public", "OvhConfigurationItem", "cart_cartId_item_itemId_configuration_configurationId_GET", "(", "String", "cartId", ",", "Long", "itemId", ",", "Long", "configurationId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/item/{itemId}/config...
Retrieve configuration item REST: GET /order/cart/{cartId}/item/{itemId}/configuration/{configurationId} @param cartId [required] Cart identifier @param itemId [required] Product item identifier @param configurationId [required] Configuration item identifier
[ "Retrieve", "configuration", "item" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8088-L8093
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_item_itemId_configuration_configurationId_DELETE
public void cart_cartId_item_itemId_configuration_configurationId_DELETE(String cartId, Long itemId, Long configurationId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration/{configurationId}"; StringBuilder sb = path(qPath, cartId, itemId, configurationId); execN(qPath, "DELETE", sb.toString(), null); }
java
public void cart_cartId_item_itemId_configuration_configurationId_DELETE(String cartId, Long itemId, Long configurationId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration/{configurationId}"; StringBuilder sb = path(qPath, cartId, itemId, configurationId); execN(qPath, "DELETE", sb.toString(), null); }
[ "public", "void", "cart_cartId_item_itemId_configuration_configurationId_DELETE", "(", "String", "cartId", ",", "Long", "itemId", ",", "Long", "configurationId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/item/{itemId}/configuration/{conf...
Delete configuration item REST: DELETE /order/cart/{cartId}/item/{itemId}/configuration/{configurationId} @param cartId [required] Cart identifier @param itemId [required] Product item identifier @param configurationId [required] Configuration item identifier
[ "Delete", "configuration", "item" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8103-L8107
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_item_itemId_requiredConfiguration_GET
public ArrayList<OvhConfigurationRequirements> cart_cartId_item_itemId_requiredConfiguration_GET(String cartId, Long itemId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/requiredConfiguration"; StringBuilder sb = path(qPath, cartId, itemId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
java
public ArrayList<OvhConfigurationRequirements> cart_cartId_item_itemId_requiredConfiguration_GET(String cartId, Long itemId) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/requiredConfiguration"; StringBuilder sb = path(qPath, cartId, itemId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
[ "public", "ArrayList", "<", "OvhConfigurationRequirements", ">", "cart_cartId_item_itemId_requiredConfiguration_GET", "(", "String", "cartId", ",", "Long", "itemId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/item/{itemId}/requiredConfigu...
Retrieve all required configuration item of the cart item REST: GET /order/cart/{cartId}/item/{itemId}/requiredConfiguration @param cartId [required] Cart identifier @param itemId [required] Product item identifier
[ "Retrieve", "all", "required", "configuration", "item", "of", "the", "cart", "item" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8116-L8121
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_item_GET
public ArrayList<Long> cart_cartId_item_GET(String cartId) throws IOException { String qPath = "/order/cart/{cartId}/item"; StringBuilder sb = path(qPath, cartId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public ArrayList<Long> cart_cartId_item_GET(String cartId) throws IOException { String qPath = "/order/cart/{cartId}/item"; StringBuilder sb = path(qPath, cartId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "ArrayList", "<", "Long", ">", "cart_cartId_item_GET", "(", "String", "cartId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/item\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "cartId", ")", ";", ...
List all the items of a cart REST: GET /order/cart/{cartId}/item @param cartId [required] Cart identifier
[ "List", "all", "the", "items", "of", "a", "cart" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8130-L8135
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_GET
public OvhCart cart_cartId_GET(String cartId) throws IOException { String qPath = "/order/cart/{cartId}"; StringBuilder sb = path(qPath, cartId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhCart.class); }
java
public OvhCart cart_cartId_GET(String cartId) throws IOException { String qPath = "/order/cart/{cartId}"; StringBuilder sb = path(qPath, cartId); String resp = execN(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhCart.class); }
[ "public", "OvhCart", "cart_cartId_GET", "(", "String", "cartId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "cartId", ")", ";", "String", "resp", "=", "exec...
Retrieve information about a specific cart REST: GET /order/cart/{cartId} @param cartId [required] Cart identifier
[ "Retrieve", "information", "about", "a", "specific", "cart" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8841-L8846
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_PUT
public OvhCart cart_cartId_PUT(String cartId, String description, Date expire) throws IOException { String qPath = "/order/cart/{cartId}"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "expire", expire); String resp = execN(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhCart.class); }
java
public OvhCart cart_cartId_PUT(String cartId, String description, Date expire) throws IOException { String qPath = "/order/cart/{cartId}"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "expire", expire); String resp = execN(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhCart.class); }
[ "public", "OvhCart", "cart_cartId_PUT", "(", "String", "cartId", ",", "String", "description", ",", "Date", "expire", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",...
Modify information about a specific cart REST: PUT /order/cart/{cartId} @param cartId [required] Cart identifier @param description [required] Description of your cart @param expire [required] Time of expiration of the cart
[ "Modify", "information", "about", "a", "specific", "cart" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L8856-L8864
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_checkout_POST
public OvhOrder cart_cartId_checkout_POST(String cartId, Boolean autoPayWithPreferredPaymentMethod, Boolean waiveRetractationPeriod) throws IOException { String qPath = "/order/cart/{cartId}/checkout"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "autoPayWithPreferredPaymentMethod", autoPayWithPreferredPaymentMethod); addBody(o, "waiveRetractationPeriod", waiveRetractationPeriod); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOrder.class); }
java
public OvhOrder cart_cartId_checkout_POST(String cartId, Boolean autoPayWithPreferredPaymentMethod, Boolean waiveRetractationPeriod) throws IOException { String qPath = "/order/cart/{cartId}/checkout"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "autoPayWithPreferredPaymentMethod", autoPayWithPreferredPaymentMethod); addBody(o, "waiveRetractationPeriod", waiveRetractationPeriod); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOrder.class); }
[ "public", "OvhOrder", "cart_cartId_checkout_POST", "(", "String", "cartId", ",", "Boolean", "autoPayWithPreferredPaymentMethod", ",", "Boolean", "waiveRetractationPeriod", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/checkout\"", ";", "...
Validate your shopping and create order REST: POST /order/cart/{cartId}/checkout @param cartId [required] Cart identifier @param autoPayWithPreferredPaymentMethod [required] Indicates that order will be automatically paid with preferred payment method @param waiveRetractationPeriod [required] Indicates that order will be processed with waiving retractation period
[ "Validate", "your", "shopping", "and", "create", "order" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L9195-L9203
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_assign_POST
public void cart_cartId_assign_POST(String cartId) throws IOException { String qPath = "/order/cart/{cartId}/assign"; StringBuilder sb = path(qPath, cartId); exec(qPath, "POST", sb.toString(), null); }
java
public void cart_cartId_assign_POST(String cartId) throws IOException { String qPath = "/order/cart/{cartId}/assign"; StringBuilder sb = path(qPath, cartId); exec(qPath, "POST", sb.toString(), null); }
[ "public", "void", "cart_cartId_assign_POST", "(", "String", "cartId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/assign\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "cartId", ")", ";", "exec", "(", "qPat...
Assign a shopping cart to an loggedin client REST: POST /order/cart/{cartId}/assign @param cartId [required] Cart identifier
[ "Assign", "a", "shopping", "cart", "to", "an", "loggedin", "client" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L9285-L9289
train
UrielCh/ovh-java-sdk
ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java
ApiOvhOrder.cart_cartId_coupon_POST
public ArrayList<String> cart_cartId_coupon_POST(String cartId, String coupon) throws IOException { String qPath = "/order/cart/{cartId}/coupon"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "coupon", coupon); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, t1); }
java
public ArrayList<String> cart_cartId_coupon_POST(String cartId, String coupon) throws IOException { String qPath = "/order/cart/{cartId}/coupon"; StringBuilder sb = path(qPath, cartId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "coupon", coupon); String resp = execN(qPath, "POST", sb.toString(), o); return convertTo(resp, t1); }
[ "public", "ArrayList", "<", "String", ">", "cart_cartId_coupon_POST", "(", "String", "cartId", ",", "String", "coupon", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/order/cart/{cartId}/coupon\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPa...
Add a new coupon to cart REST: POST /order/cart/{cartId}/coupon @param cartId [required] Cart identifier @param coupon [required] Coupon identifier
[ "Add", "a", "new", "coupon", "to", "cart" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-order/src/main/java/net/minidev/ovh/api/ApiOvhOrder.java#L10002-L10009
train