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-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_changeVersion_POST | public OvhTask serviceName_changeVersion_POST(String serviceName, OvhAvailableVersionEnum version) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/changeVersion";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "version", version);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_changeVersion_POST(String serviceName, OvhAvailableVersionEnum version) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/changeVersion";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "version", version);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_changeVersion_POST",
"(",
"String",
"serviceName",
",",
"OvhAvailableVersionEnum",
"version",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/{serviceName}/changeVersion\"",
";",
"StringBuilder",
"sb",
"... | Change the private database engine version
REST: POST /hosting/privateDatabase/{serviceName}/changeVersion
@param version [required] Private database versions
@param serviceName [required] The internal name of your private database | [
"Change",
"the",
"private",
"database",
"engine",
"version"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L90-L97 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_user_userName_grant_databaseName_update_POST | public OvhTask serviceName_user_userName_grant_databaseName_update_POST(String serviceName, String userName, String databaseName, OvhGrantEnum grant) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/user/{userName}/grant/{databaseName}/update";
StringBuilder sb = path(qPath, serviceName, userName, databaseName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "grant", grant);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_user_userName_grant_databaseName_update_POST(String serviceName, String userName, String databaseName, OvhGrantEnum grant) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/user/{userName}/grant/{databaseName}/update";
StringBuilder sb = path(qPath, serviceName, userName, databaseName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "grant", grant);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_user_userName_grant_databaseName_update_POST",
"(",
"String",
"serviceName",
",",
"String",
"userName",
",",
"String",
"databaseName",
",",
"OvhGrantEnum",
"grant",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/pr... | Update user grant
REST: POST /hosting/privateDatabase/{serviceName}/user/{userName}/grant/{databaseName}/update
@param grant [required] Grant you want set on the database for this user
@param serviceName [required] The internal name of your private database
@param userName [required] User name used to connect to your databases
@param databaseName [required] Database name where grant is set | [
"Update",
"user",
"grant"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L277-L284 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_database_databaseName_extension_GET | public ArrayList<String> serviceName_database_databaseName_extension_GET(String serviceName, String databaseName, String extensionName, OvhStatus status) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/database/{databaseName}/extension";
StringBuilder sb = path(qPath, serviceName, databaseName);
query(sb, "extensionName", extensionName);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<String> serviceName_database_databaseName_extension_GET(String serviceName, String databaseName, String extensionName, OvhStatus status) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/database/{databaseName}/extension";
StringBuilder sb = path(qPath, serviceName, databaseName);
query(sb, "extensionName", extensionName);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"serviceName_database_databaseName_extension_GET",
"(",
"String",
"serviceName",
",",
"String",
"databaseName",
",",
"String",
"extensionName",
",",
"OvhStatus",
"status",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
... | Extensions linked to your database
REST: GET /hosting/privateDatabase/{serviceName}/database/{databaseName}/extension
@param extensionName [required] Filter the value of extensionName property (like)
@param status [required] Filter the value of status property (=)
@param serviceName [required] The internal name of your private database
@param databaseName [required] Database name | [
"Extensions",
"linked",
"to",
"your",
"database"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L461-L468 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_dump_GET | public ArrayList<Long> serviceName_dump_GET(String serviceName, String databaseName, Boolean orphan) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/dump";
StringBuilder sb = path(qPath, serviceName);
query(sb, "databaseName", databaseName);
query(sb, "orphan", orphan);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | java | public ArrayList<Long> serviceName_dump_GET(String serviceName, String databaseName, Boolean orphan) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/dump";
StringBuilder sb = path(qPath, serviceName);
query(sb, "databaseName", databaseName);
query(sb, "orphan", orphan);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"serviceName_dump_GET",
"(",
"String",
"serviceName",
",",
"String",
"databaseName",
",",
"Boolean",
"orphan",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/{serviceName}/dump\"",
";",
"... | Dumps available for your private database service
REST: GET /hosting/privateDatabase/{serviceName}/dump
@param databaseName [required] Filter the value of databaseName property (like)
@param orphan [required] Filter the value of orphan property (=)
@param serviceName [required] The internal name of your private database | [
"Dumps",
"available",
"for",
"your",
"private",
"database",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L655-L662 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_dump_dumpId_DELETE | public OvhTask serviceName_dump_dumpId_DELETE(String serviceName, Long dumpId) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/dump/{dumpId}";
StringBuilder sb = path(qPath, serviceName, dumpId);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_dump_dumpId_DELETE(String serviceName, Long dumpId) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/dump/{dumpId}";
StringBuilder sb = path(qPath, serviceName, dumpId);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_dump_dumpId_DELETE",
"(",
"String",
"serviceName",
",",
"Long",
"dumpId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/{serviceName}/dump/{dumpId}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",... | Delete dump before expiration date
REST: DELETE /hosting/privateDatabase/{serviceName}/dump/{dumpId}
@param serviceName [required] The internal name of your private database
@param dumpId [required] Dump id | [
"Delete",
"dump",
"before",
"expiration",
"date"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L685-L690 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_config_update_POST | public OvhConfiguration serviceName_config_update_POST(String serviceName, OvhSafeKeyValue<String>[] parameters) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/config/update";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "parameters", parameters);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhConfiguration.class);
} | java | public OvhConfiguration serviceName_config_update_POST(String serviceName, OvhSafeKeyValue<String>[] parameters) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/config/update";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "parameters", parameters);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhConfiguration.class);
} | [
"public",
"OvhConfiguration",
"serviceName_config_update_POST",
"(",
"String",
"serviceName",
",",
"OvhSafeKeyValue",
"<",
"String",
">",
"[",
"]",
"parameters",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/{serviceName}/config/upda... | Update the configuration
REST: POST /hosting/privateDatabase/{serviceName}/config/update
@param parameters [required] Array of instance configuration parameters
@param serviceName [required] The internal name of your private database | [
"Update",
"the",
"configuration"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L716-L723 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_whitelist_GET | public ArrayList<String> serviceName_whitelist_GET(String serviceName, String ip, Boolean service, Boolean sftp) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/whitelist";
StringBuilder sb = path(qPath, serviceName);
query(sb, "ip", ip);
query(sb, "service", service);
query(sb, "sftp", sftp);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<String> serviceName_whitelist_GET(String serviceName, String ip, Boolean service, Boolean sftp) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/whitelist";
StringBuilder sb = path(qPath, serviceName);
query(sb, "ip", ip);
query(sb, "service", service);
query(sb, "sftp", sftp);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"serviceName_whitelist_GET",
"(",
"String",
"serviceName",
",",
"String",
"ip",
",",
"Boolean",
"service",
",",
"Boolean",
"sftp",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/{serv... | Whitelist allowed on your privatesql
REST: GET /hosting/privateDatabase/{serviceName}/whitelist
@param ip [required] Filter the value of ip property (contains or equals)
@param service [required] Filter the value of service property (=)
@param sftp [required] Filter the value of sftp property (=)
@param serviceName [required] The internal name of your private database | [
"Whitelist",
"allowed",
"on",
"your",
"privatesql"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L848-L856 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_whitelist_POST | public OvhTask serviceName_whitelist_POST(String serviceName, String ip, String name, Boolean service, Boolean sftp) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/whitelist";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ip", ip);
addBody(o, "name", name);
addBody(o, "service", service);
addBody(o, "sftp", sftp);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_whitelist_POST(String serviceName, String ip, String name, Boolean service, Boolean sftp) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/whitelist";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ip", ip);
addBody(o, "name", name);
addBody(o, "service", service);
addBody(o, "sftp", sftp);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_whitelist_POST",
"(",
"String",
"serviceName",
",",
"String",
"ip",
",",
"String",
"name",
",",
"Boolean",
"service",
",",
"Boolean",
"sftp",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/{se... | Create a new IP whitelist
REST: POST /hosting/privateDatabase/{serviceName}/whitelist
@param name [required] Custom name for your Whitelisted IP
@param sftp [required] Authorize this IP to access sftp port
@param ip [required] The IP to whitelist in your instance
@param service [required] Authorize this IP to access service port
@param serviceName [required] The internal name of your private database | [
"Create",
"a",
"new",
"IP",
"whitelist"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L868-L878 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.serviceName_availableVersions_GET | public ArrayList<OvhAvailableVersionEnum> serviceName_availableVersions_GET(String serviceName) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/availableVersions";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhAvailableVersionEnum> serviceName_availableVersions_GET(String serviceName) throws IOException {
String qPath = "/hosting/privateDatabase/{serviceName}/availableVersions";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhAvailableVersionEnum",
">",
"serviceName_availableVersions_GET",
"(",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/{serviceName}/availableVersions\"",
";",
"StringBuilder",
"sb",
... | Get the availables versions for this private database
REST: GET /hosting/privateDatabase/{serviceName}/availableVersions
@param serviceName [required] The internal name of your private database | [
"Get",
"the",
"availables",
"versions",
"for",
"this",
"private",
"database"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L886-L891 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java | ApiOvhHostingprivateDatabase.availableOrderCapacities_GET | public OvhAvailableOrderCapacities availableOrderCapacities_GET(OvhOfferEnum offer) throws IOException {
String qPath = "/hosting/privateDatabase/availableOrderCapacities";
StringBuilder sb = path(qPath);
query(sb, "offer", offer);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhAvailableOrderCapacities.class);
} | java | public OvhAvailableOrderCapacities availableOrderCapacities_GET(OvhOfferEnum offer) throws IOException {
String qPath = "/hosting/privateDatabase/availableOrderCapacities";
StringBuilder sb = path(qPath);
query(sb, "offer", offer);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhAvailableOrderCapacities.class);
} | [
"public",
"OvhAvailableOrderCapacities",
"availableOrderCapacities_GET",
"(",
"OvhOfferEnum",
"offer",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/hosting/privateDatabase/availableOrderCapacities\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
... | Get available order capacitie
REST: GET /hosting/privateDatabase/availableOrderCapacities
@param offer [required] Offer available order capacities to choose | [
"Get",
"available",
"order",
"capacitie"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hostingprivateDatabase/src/main/java/net/minidev/ovh/api/ApiOvhHostingprivateDatabase.java#L913-L919 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-licensedirectadmin/src/main/java/net/minidev/ovh/api/ApiOvhLicensedirectadmin.java | ApiOvhLicensedirectadmin.orderableVersions_GET | public ArrayList<OvhDirectAdminOrderConfiguration> orderableVersions_GET(String ip) throws IOException {
String qPath = "/license/directadmin/orderableVersions";
StringBuilder sb = path(qPath);
query(sb, "ip", ip);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<OvhDirectAdminOrderConfiguration> orderableVersions_GET(String ip) throws IOException {
String qPath = "/license/directadmin/orderableVersions";
StringBuilder sb = path(qPath);
query(sb, "ip", ip);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"OvhDirectAdminOrderConfiguration",
">",
"orderableVersions_GET",
"(",
"String",
"ip",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/license/directadmin/orderableVersions\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPa... | Get the orderable DirectAdmin versions
REST: GET /license/directadmin/orderableVersions
@param ip [required] Your license Ip | [
"Get",
"the",
"orderable",
"DirectAdmin",
"versions"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licensedirectadmin/src/main/java/net/minidev/ovh/api/ApiOvhLicensedirectadmin.java#L36-L42 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-licensedirectadmin/src/main/java/net/minidev/ovh/api/ApiOvhLicensedirectadmin.java | ApiOvhLicensedirectadmin.serviceName_confirmTermination_POST | public String serviceName_confirmTermination_POST(String serviceName, String commentary, OvhTerminationFutureUseEnum futureUse, OvhTerminationReasonEnum reason, String token) throws IOException {
String qPath = "/license/directadmin/{serviceName}/confirmTermination";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "commentary", commentary);
addBody(o, "futureUse", futureUse);
addBody(o, "reason", reason);
addBody(o, "token", token);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | java | public String serviceName_confirmTermination_POST(String serviceName, String commentary, OvhTerminationFutureUseEnum futureUse, OvhTerminationReasonEnum reason, String token) throws IOException {
String qPath = "/license/directadmin/{serviceName}/confirmTermination";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "commentary", commentary);
addBody(o, "futureUse", futureUse);
addBody(o, "reason", reason);
addBody(o, "token", token);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | [
"public",
"String",
"serviceName_confirmTermination_POST",
"(",
"String",
"serviceName",
",",
"String",
"commentary",
",",
"OvhTerminationFutureUseEnum",
"futureUse",
",",
"OvhTerminationReasonEnum",
"reason",
",",
"String",
"token",
")",
"throws",
"IOException",
"{",
"St... | Confirm termination of your service
REST: POST /license/directadmin/{serviceName}/confirmTermination
@param futureUse What next after your termination request
@param reason Reason of your termination request
@param commentary Commentary about your termination request
@param token [required] The termination token sent by mail to the admin contact
@param serviceName [required] The name of your DirectAdmin license | [
"Confirm",
"termination",
"of",
"your",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licensedirectadmin/src/main/java/net/minidev/ovh/api/ApiOvhLicensedirectadmin.java#L68-L78 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-licensedirectadmin/src/main/java/net/minidev/ovh/api/ApiOvhLicensedirectadmin.java | ApiOvhLicensedirectadmin.serviceName_changeOs_POST | public OvhTask serviceName_changeOs_POST(String serviceName, OvhDirectAdminOsEnum os) throws IOException {
String qPath = "/license/directadmin/{serviceName}/changeOs";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "os", os);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_changeOs_POST(String serviceName, OvhDirectAdminOsEnum os) throws IOException {
String qPath = "/license/directadmin/{serviceName}/changeOs";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "os", os);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_changeOs_POST",
"(",
"String",
"serviceName",
",",
"OvhDirectAdminOsEnum",
"os",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/license/directadmin/{serviceName}/changeOs\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
... | Change the Operating System for a license
REST: POST /license/directadmin/{serviceName}/changeOs
@param os [required] The operating system you want for this license
@param serviceName [required] The name of your DirectAdmin license | [
"Change",
"the",
"Operating",
"System",
"for",
"a",
"license"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-licensedirectadmin/src/main/java/net/minidev/ovh/api/ApiOvhLicensedirectadmin.java#L157-L164 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java | ApiOvhConnectivity.eligibility_search_buildings_POST | public OvhAsyncTaskArray<OvhBuilding> eligibility_search_buildings_POST(String streetCode, String streetNumber) throws IOException {
String qPath = "/connectivity/eligibility/search/buildings";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "streetCode", streetCode);
addBody(o, "streetNumber", streetNumber);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t1);
} | java | public OvhAsyncTaskArray<OvhBuilding> eligibility_search_buildings_POST(String streetCode, String streetNumber) throws IOException {
String qPath = "/connectivity/eligibility/search/buildings";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "streetCode", streetCode);
addBody(o, "streetNumber", streetNumber);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t1);
} | [
"public",
"OvhAsyncTaskArray",
"<",
"OvhBuilding",
">",
"eligibility_search_buildings_POST",
"(",
"String",
"streetCode",
",",
"String",
"streetNumber",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/connectivity/eligibility/search/buildings\"",
";",
"String... | Get all buildings for a specific address
REST: POST /connectivity/eligibility/search/buildings
@param streetNumber [required] Street number
@param streetCode [required] Unique identifier of the street (you can get it with POST /connectivity/eligibility/search/streets) | [
"Get",
"all",
"buildings",
"for",
"a",
"specific",
"address"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java#L35-L43 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java | ApiOvhConnectivity.eligibility_search_lines_POST | public OvhAsyncTaskArray<OvhLine> eligibility_search_lines_POST(String ownerName, String streetCode, String streetNumber) throws IOException {
String qPath = "/connectivity/eligibility/search/lines";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ownerName", ownerName);
addBody(o, "streetCode", streetCode);
addBody(o, "streetNumber", streetNumber);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t2);
} | java | public OvhAsyncTaskArray<OvhLine> eligibility_search_lines_POST(String ownerName, String streetCode, String streetNumber) throws IOException {
String qPath = "/connectivity/eligibility/search/lines";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ownerName", ownerName);
addBody(o, "streetCode", streetCode);
addBody(o, "streetNumber", streetNumber);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t2);
} | [
"public",
"OvhAsyncTaskArray",
"<",
"OvhLine",
">",
"eligibility_search_lines_POST",
"(",
"String",
"ownerName",
",",
"String",
"streetCode",
",",
"String",
"streetNumber",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/connectivity/eligibility/search/line... | Search for active and inactive lines at an address. It will search for active lines only if the owner name is specified
REST: POST /connectivity/eligibility/search/lines
@param ownerName [required] Owner name, at least the first three chars
@param streetNumber [required] Street number, that can be found using /connectivity/eligibility/search/streetNumbers method
@param streetCode [required] Street code, that can be found using /connectivity/eligibility/search/streets method | [
"Search",
"for",
"active",
"and",
"inactive",
"lines",
"at",
"an",
"address",
".",
"It",
"will",
"search",
"for",
"active",
"lines",
"only",
"if",
"the",
"owner",
"name",
"is",
"specified"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java#L54-L63 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java | ApiOvhConnectivity.eligibility_search_cities_POST | public OvhAsyncTaskArray<OvhCity> eligibility_search_cities_POST(String zipCode) throws IOException {
String qPath = "/connectivity/eligibility/search/cities";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "zipCode", zipCode);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t4);
} | java | public OvhAsyncTaskArray<OvhCity> eligibility_search_cities_POST(String zipCode) throws IOException {
String qPath = "/connectivity/eligibility/search/cities";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "zipCode", zipCode);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t4);
} | [
"public",
"OvhAsyncTaskArray",
"<",
"OvhCity",
">",
"eligibility_search_cities_POST",
"(",
"String",
"zipCode",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/connectivity/eligibility/search/cities\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath... | Get all localities linked to a zip code
REST: POST /connectivity/eligibility/search/cities
@param zipCode [required] Zip code | [
"Get",
"all",
"localities",
"linked",
"to",
"a",
"zip",
"code"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java#L88-L95 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java | ApiOvhConnectivity.eligibility_search_buildingDetails_POST | public OvhAsyncTask<OvhBuilding> eligibility_search_buildingDetails_POST(String building) throws IOException {
String qPath = "/connectivity/eligibility/search/buildingDetails";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "building", building);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t5);
} | java | public OvhAsyncTask<OvhBuilding> eligibility_search_buildingDetails_POST(String building) throws IOException {
String qPath = "/connectivity/eligibility/search/buildingDetails";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "building", building);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t5);
} | [
"public",
"OvhAsyncTask",
"<",
"OvhBuilding",
">",
"eligibility_search_buildingDetails_POST",
"(",
"String",
"building",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/connectivity/eligibility/search/buildingDetails\"",
";",
"StringBuilder",
"sb",
"=",
"path... | Get the details for a building
REST: POST /connectivity/eligibility/search/buildingDetails
@param building [required] Building identifier, that can be found using /connectivity/eligibility/search/building* methods | [
"Get",
"the",
"details",
"for",
"a",
"building"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java#L104-L111 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java | ApiOvhConnectivity.eligibility_search_meetings_POST | public OvhAsyncTask<OvhMeetings> eligibility_search_meetings_POST(String eligibilityReference, String productCode) throws IOException {
String qPath = "/connectivity/eligibility/search/meetings";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "eligibilityReference", eligibilityReference);
addBody(o, "productCode", productCode);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t6);
} | java | public OvhAsyncTask<OvhMeetings> eligibility_search_meetings_POST(String eligibilityReference, String productCode) throws IOException {
String qPath = "/connectivity/eligibility/search/meetings";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "eligibilityReference", eligibilityReference);
addBody(o, "productCode", productCode);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t6);
} | [
"public",
"OvhAsyncTask",
"<",
"OvhMeetings",
">",
"eligibility_search_meetings_POST",
"(",
"String",
"eligibilityReference",
",",
"String",
"productCode",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/connectivity/eligibility/search/meetings\"",
";",
"Stri... | Search for available line creation meeting time slots, for copper only
REST: POST /connectivity/eligibility/search/meetings
@param productCode [required] Choosen offer product code
@param eligibilityReference [required] Eligibility test reference | [
"Search",
"for",
"available",
"line",
"creation",
"meeting",
"time",
"slots",
"for",
"copper",
"only"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java#L121-L129 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java | ApiOvhConnectivity.eligibility_search_buildingsByLine_POST | public OvhAsyncTaskArray<OvhBuilding> eligibility_search_buildingsByLine_POST(String lineNumber, OvhLineStatusEnum status) throws IOException {
String qPath = "/connectivity/eligibility/search/buildingsByLine";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "lineNumber", lineNumber);
addBody(o, "status", status);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t1);
} | java | public OvhAsyncTaskArray<OvhBuilding> eligibility_search_buildingsByLine_POST(String lineNumber, OvhLineStatusEnum status) throws IOException {
String qPath = "/connectivity/eligibility/search/buildingsByLine";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "lineNumber", lineNumber);
addBody(o, "status", status);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, t1);
} | [
"public",
"OvhAsyncTaskArray",
"<",
"OvhBuilding",
">",
"eligibility_search_buildingsByLine_POST",
"(",
"String",
"lineNumber",
",",
"OvhLineStatusEnum",
"status",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/connectivity/eligibility/search/buildingsByLine\"",... | Get building references from a given line number
REST: POST /connectivity/eligibility/search/buildingsByLine
@param lineNumber [required] Line number
@param status [required] Status of the line number | [
"Get",
"building",
"references",
"from",
"a",
"given",
"line",
"number"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-connectivity/src/main/java/net/minidev/ovh/api/ApiOvhConnectivity.java#L139-L147 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-cdnwebsite/src/main/java/net/minidev/ovh/api/ApiOvhCdnwebsite.java | ApiOvhCdnwebsite.serviceName_zone_domains_POST | public OvhDomain serviceName_zone_domains_POST(String serviceName, String domain) throws IOException {
String qPath = "/cdn/website/{serviceName}/zone/domains";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "domain", domain);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhDomain.class);
} | java | public OvhDomain serviceName_zone_domains_POST(String serviceName, String domain) throws IOException {
String qPath = "/cdn/website/{serviceName}/zone/domains";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "domain", domain);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhDomain.class);
} | [
"public",
"OvhDomain",
"serviceName_zone_domains_POST",
"(",
"String",
"serviceName",
",",
"String",
"domain",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/cdn/website/{serviceName}/zone/domains\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath"... | Configure a domain on CDN
REST: POST /cdn/website/{serviceName}/zone/domains
@param domain [required] domain to add on CDN
@param serviceName [required] The internal name of your CDN Website offer | [
"Configure",
"a",
"domain",
"on",
"CDN"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-cdnwebsite/src/main/java/net/minidev/ovh/api/ApiOvhCdnwebsite.java#L325-L332 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_resiliationFollowUp_GET | public OvhResiliationFollowUpDetail packName_resiliationFollowUp_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/resiliationFollowUp";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhResiliationFollowUpDetail.class);
} | java | public OvhResiliationFollowUpDetail packName_resiliationFollowUp_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/resiliationFollowUp";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhResiliationFollowUpDetail.class);
} | [
"public",
"OvhResiliationFollowUpDetail",
"packName_resiliationFollowUp_GET",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/resiliationFollowUp\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
... | Get information about the ongoing resiliation
REST: GET /pack/xdsl/{packName}/resiliationFollowUp
@param packName [required] The internal name of your pack | [
"Get",
"information",
"about",
"the",
"ongoing",
"resiliation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L72-L77 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_domain_services_POST | public OvhTask packName_domain_services_POST(String packName, OvhDomainActionEnum action, String authInfo, String domain, String tld) throws IOException {
String qPath = "/pack/xdsl/{packName}/domain/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "action", action);
addBody(o, "authInfo", authInfo);
addBody(o, "domain", domain);
addBody(o, "tld", tld);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask packName_domain_services_POST(String packName, OvhDomainActionEnum action, String authInfo, String domain, String tld) throws IOException {
String qPath = "/pack/xdsl/{packName}/domain/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "action", action);
addBody(o, "authInfo", authInfo);
addBody(o, "domain", domain);
addBody(o, "tld", tld);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"packName_domain_services_POST",
"(",
"String",
"packName",
",",
"OvhDomainActionEnum",
"action",
",",
"String",
"authInfo",
",",
"String",
"domain",
",",
"String",
"tld",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/... | Activate a domain service
REST: POST /pack/xdsl/{packName}/domain/services
@param domain [required] Domain name
@param authInfo [required] Needed for transfer from another registrar
@param tld [required] TLD of the domain
@param action [required] Domain action
@param packName [required] The internal name of your pack | [
"Activate",
"a",
"domain",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L102-L112 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_services_GET | public ArrayList<OvhServiceInformation> packName_services_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/services";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<OvhServiceInformation> packName_services_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/services";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"OvhServiceInformation",
">",
"packName_services_GET",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/services\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
... | Informations about the services included in the pack
REST: GET /pack/xdsl/{packName}/services
@param packName [required] The internal name of your pack | [
"Informations",
"about",
"the",
"services",
"included",
"in",
"the",
"pack"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L133-L138 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_emailPro_services_POST | public OvhTask packName_emailPro_services_POST(String packName, String email, String password) throws IOException {
String qPath = "/pack/xdsl/{packName}/emailPro/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "email", email);
addBody(o, "password", password);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask packName_emailPro_services_POST(String packName, String email, String password) throws IOException {
String qPath = "/pack/xdsl/{packName}/emailPro/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "email", email);
addBody(o, "password", password);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"packName_emailPro_services_POST",
"(",
"String",
"packName",
",",
"String",
"email",
",",
"String",
"password",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/emailPro/services\"",
";",
"StringBuilder",
"sb",
"=... | Activate an Email Pro service
REST: POST /pack/xdsl/{packName}/emailPro/services
@param email [required] The email address
@param password [required] The password
@param packName [required] The internal name of your pack | [
"Activate",
"an",
"Email",
"Pro",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L190-L198 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_voipLine_services_POST | public OvhVoIPLineOrder packName_voipLine_services_POST(String packName, String[] hardwareNames, String mondialRelayId, String shippingId) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "hardwareNames", hardwareNames);
addBody(o, "mondialRelayId", mondialRelayId);
addBody(o, "shippingId", shippingId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhVoIPLineOrder.class);
} | java | public OvhVoIPLineOrder packName_voipLine_services_POST(String packName, String[] hardwareNames, String mondialRelayId, String shippingId) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "hardwareNames", hardwareNames);
addBody(o, "mondialRelayId", mondialRelayId);
addBody(o, "shippingId", shippingId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhVoIPLineOrder.class);
} | [
"public",
"OvhVoIPLineOrder",
"packName_voipLine_services_POST",
"(",
"String",
"packName",
",",
"String",
"[",
"]",
"hardwareNames",
",",
"String",
"mondialRelayId",
",",
"String",
"shippingId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl... | Activate a voip line service
REST: POST /pack/xdsl/{packName}/voipLine/services
@param mondialRelayId [required] Mondial relay ID
@param hardwareNames [required] List of names from hardwares call
@param shippingId [required] Shipping ID for the order
@param packName [required] The internal name of your pack | [
"Activate",
"a",
"voip",
"line",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L256-L265 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_voipLine_options_shippingAddresses_GET | public ArrayList<OvhShippingAddress> packName_voipLine_options_shippingAddresses_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/options/shippingAddresses";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhShippingAddress> packName_voipLine_options_shippingAddresses_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/options/shippingAddresses";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhShippingAddress",
">",
"packName_voipLine_options_shippingAddresses_GET",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/voipLine/options/shippingAddresses\"",
";",
"StringBuilder",
... | Get available shipping addresses
REST: GET /pack/xdsl/{packName}/voipLine/options/shippingAddresses
@param packName [required] The internal name of your pack | [
"Get",
"available",
"shipping",
"addresses"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L287-L292 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_voipLine_options_hardwares_GET | public ArrayList<OvhVoIPHardware> packName_voipLine_options_hardwares_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/options/hardwares";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | java | public ArrayList<OvhVoIPHardware> packName_voipLine_options_hardwares_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/options/hardwares";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | [
"public",
"ArrayList",
"<",
"OvhVoIPHardware",
">",
"packName_voipLine_options_hardwares_GET",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/voipLine/options/hardwares\"",
";",
"StringBuilder",
"sb",
"=",
"pat... | Get available hardwares
REST: GET /pack/xdsl/{packName}/voipLine/options/hardwares
@param packName [required] The internal name of your pack | [
"Get",
"available",
"hardwares"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L301-L306 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_voipLine_options_customShippingAddress_POST | public Long packName_voipLine_options_customShippingAddress_POST(String packName, String address, String cityName, String firstName, String lastName, String zipCode) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/options/customShippingAddress";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "address", address);
addBody(o, "cityName", cityName);
addBody(o, "firstName", firstName);
addBody(o, "lastName", lastName);
addBody(o, "zipCode", zipCode);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, Long.class);
} | java | public Long packName_voipLine_options_customShippingAddress_POST(String packName, String address, String cityName, String firstName, String lastName, String zipCode) throws IOException {
String qPath = "/pack/xdsl/{packName}/voipLine/options/customShippingAddress";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "address", address);
addBody(o, "cityName", cityName);
addBody(o, "firstName", firstName);
addBody(o, "lastName", lastName);
addBody(o, "zipCode", zipCode);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, Long.class);
} | [
"public",
"Long",
"packName_voipLine_options_customShippingAddress_POST",
"(",
"String",
"packName",
",",
"String",
"address",
",",
"String",
"cityName",
",",
"String",
"firstName",
",",
"String",
"lastName",
",",
"String",
"zipCode",
")",
"throws",
"IOException",
"{"... | Create a new shippingId to be used for voipLine service creation
REST: POST /pack/xdsl/{packName}/voipLine/options/customShippingAddress
@param address [required] Address, including street name
@param lastName [required] Last name
@param firstName [required] First name
@param cityName [required] City name
@param zipCode [required] Zip code
@param packName [required] The internal name of your pack | [
"Create",
"a",
"new",
"shippingId",
"to",
"be",
"used",
"for",
"voipLine",
"service",
"creation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L320-L331 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_addressMove_eligibility_POST | public OvhAsyncTask<OvhEligibility> packName_addressMove_eligibility_POST(String packName, OvhAddress address, String lineNumber) throws IOException {
String qPath = "/pack/xdsl/{packName}/addressMove/eligibility";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "address", address);
addBody(o, "lineNumber", lineNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t6);
} | java | public OvhAsyncTask<OvhEligibility> packName_addressMove_eligibility_POST(String packName, OvhAddress address, String lineNumber) throws IOException {
String qPath = "/pack/xdsl/{packName}/addressMove/eligibility";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "address", address);
addBody(o, "lineNumber", lineNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t6);
} | [
"public",
"OvhAsyncTask",
"<",
"OvhEligibility",
">",
"packName_addressMove_eligibility_POST",
"(",
"String",
"packName",
",",
"OvhAddress",
"address",
",",
"String",
"lineNumber",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/address... | Eligibility to move the access
REST: POST /pack/xdsl/{packName}/addressMove/eligibility
@param address [required] The address to test, if no lineNumber
@param lineNumber [required] The line number to test, if no address
@param packName [required] The internal name of your pack | [
"Eligibility",
"to",
"move",
"the",
"access"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L341-L349 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_addressMove_move_POST | public OvhAsyncTask<Long> packName_addressMove_move_POST(String packName, OvhCreation creation, Boolean keepCurrentNumber, OvhLandline landline, Date moveOutDate, String offerCode, OvhProviderEnum provider) throws IOException {
String qPath = "/pack/xdsl/{packName}/addressMove/move";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "creation", creation);
addBody(o, "keepCurrentNumber", keepCurrentNumber);
addBody(o, "landline", landline);
addBody(o, "moveOutDate", moveOutDate);
addBody(o, "offerCode", offerCode);
addBody(o, "provider", provider);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t7);
} | java | public OvhAsyncTask<Long> packName_addressMove_move_POST(String packName, OvhCreation creation, Boolean keepCurrentNumber, OvhLandline landline, Date moveOutDate, String offerCode, OvhProviderEnum provider) throws IOException {
String qPath = "/pack/xdsl/{packName}/addressMove/move";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "creation", creation);
addBody(o, "keepCurrentNumber", keepCurrentNumber);
addBody(o, "landline", landline);
addBody(o, "moveOutDate", moveOutDate);
addBody(o, "offerCode", offerCode);
addBody(o, "provider", provider);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t7);
} | [
"public",
"OvhAsyncTask",
"<",
"Long",
">",
"packName_addressMove_move_POST",
"(",
"String",
"packName",
",",
"OvhCreation",
"creation",
",",
"Boolean",
"keepCurrentNumber",
",",
"OvhLandline",
"landline",
",",
"Date",
"moveOutDate",
",",
"String",
"offerCode",
",",
... | Move the access to another address
REST: POST /pack/xdsl/{packName}/addressMove/move
@param moveOutDate [required] The date when the customer is no longer at the current address. Must be between now and +30 days
@param offerCode [required] The offerCode from addressMove/eligibility
@param keepCurrentNumber [required] Whether or not the current number should be kept
@param creation [required] The data to create a new line if lineNumber is not available
@param landline [required] Data identifying the landline at the new address, if available
@param provider [required] Provider of the new line
@param packName [required] The internal name of your pack | [
"Move",
"the",
"access",
"to",
"another",
"address"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L364-L376 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_siteBuilderStart_options_domains_GET | public ArrayList<OvhSiteBuilderDomain> packName_siteBuilderStart_options_domains_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/siteBuilderStart/options/domains";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t9);
} | java | public ArrayList<OvhSiteBuilderDomain> packName_siteBuilderStart_options_domains_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/siteBuilderStart/options/domains";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t9);
} | [
"public",
"ArrayList",
"<",
"OvhSiteBuilderDomain",
">",
"packName_siteBuilderStart_options_domains_GET",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/siteBuilderStart/options/domains\"",
";",
"StringBuilder",
"s... | Get the available domains
REST: GET /pack/xdsl/{packName}/siteBuilderStart/options/domains
@param packName [required] The internal name of your pack | [
"Get",
"the",
"available",
"domains"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L432-L437 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_siteBuilderFull_options_templates_GET | public ArrayList<OvhSiteBuilderTemplate> packName_siteBuilderFull_options_templates_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/siteBuilderFull/options/templates";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t8);
} | java | public ArrayList<OvhSiteBuilderTemplate> packName_siteBuilderFull_options_templates_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/siteBuilderFull/options/templates";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t8);
} | [
"public",
"ArrayList",
"<",
"OvhSiteBuilderTemplate",
">",
"packName_siteBuilderFull_options_templates_GET",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/siteBuilderFull/options/templates\"",
";",
"StringBuilder",
... | Get the available templates
REST: GET /pack/xdsl/{packName}/siteBuilderFull/options/templates
@param packName [required] The internal name of your pack | [
"Get",
"the",
"available",
"templates"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L524-L529 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_siteBuilderFull_services_POST | public OvhTask packName_siteBuilderFull_services_POST(String packName, String domain, String subdomain, Long templateId) throws IOException {
String qPath = "/pack/xdsl/{packName}/siteBuilderFull/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "domain", domain);
addBody(o, "subdomain", subdomain);
addBody(o, "templateId", templateId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask packName_siteBuilderFull_services_POST(String packName, String domain, String subdomain, Long templateId) throws IOException {
String qPath = "/pack/xdsl/{packName}/siteBuilderFull/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "domain", domain);
addBody(o, "subdomain", subdomain);
addBody(o, "templateId", templateId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"packName_siteBuilderFull_services_POST",
"(",
"String",
"packName",
",",
"String",
"domain",
",",
"String",
"subdomain",
",",
"Long",
"templateId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/siteBuilderFull/se... | Activate a sitebuilder full service
REST: POST /pack/xdsl/{packName}/siteBuilderFull/services
@param domain [required] Domain name
@param templateId [required] Template ID
@param subdomain [required] Subdomain
@param packName [required] The internal name of your pack | [
"Activate",
"a",
"sitebuilder",
"full",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L553-L562 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_resiliate_POST | public OvhResiliationFollowUpDetail packName_resiliate_POST(String packName, Date resiliationDate, OvhResiliationSurvey resiliationSurvey, Double[] servicesToKeep) throws IOException {
String qPath = "/pack/xdsl/{packName}/resiliate";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "resiliationDate", resiliationDate);
addBody(o, "resiliationSurvey", resiliationSurvey);
addBody(o, "servicesToKeep", servicesToKeep);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhResiliationFollowUpDetail.class);
} | java | public OvhResiliationFollowUpDetail packName_resiliate_POST(String packName, Date resiliationDate, OvhResiliationSurvey resiliationSurvey, Double[] servicesToKeep) throws IOException {
String qPath = "/pack/xdsl/{packName}/resiliate";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "resiliationDate", resiliationDate);
addBody(o, "resiliationSurvey", resiliationSurvey);
addBody(o, "servicesToKeep", servicesToKeep);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhResiliationFollowUpDetail.class);
} | [
"public",
"OvhResiliationFollowUpDetail",
"packName_resiliate_POST",
"(",
"String",
"packName",
",",
"Date",
"resiliationDate",
",",
"OvhResiliationSurvey",
"resiliationSurvey",
",",
"Double",
"[",
"]",
"servicesToKeep",
")",
"throws",
"IOException",
"{",
"String",
"qPath... | Resiliate the pack
REST: POST /pack/xdsl/{packName}/resiliate
@param resiliationSurvey [required] Comment about resiliation reasons
@param servicesToKeep [required] Ids of service you will keep on resiliation. (you can get it with /pack/xdsl/{packName}/subServices)
@param resiliationDate [required] Effective date of the resiliation
@param packName [required] The internal name of your pack | [
"Resiliate",
"the",
"pack"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L573-L582 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_exchangeLite_options_isEmailAvailable_GET | public Boolean packName_exchangeLite_options_isEmailAvailable_GET(String packName, String email) throws IOException {
String qPath = "/pack/xdsl/{packName}/exchangeLite/options/isEmailAvailable";
StringBuilder sb = path(qPath, packName);
query(sb, "email", email);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, Boolean.class);
} | java | public Boolean packName_exchangeLite_options_isEmailAvailable_GET(String packName, String email) throws IOException {
String qPath = "/pack/xdsl/{packName}/exchangeLite/options/isEmailAvailable";
StringBuilder sb = path(qPath, packName);
query(sb, "email", email);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, Boolean.class);
} | [
"public",
"Boolean",
"packName_exchangeLite_options_isEmailAvailable_GET",
"(",
"String",
"packName",
",",
"String",
"email",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/exchangeLite/options/isEmailAvailable\"",
";",
"StringBuilder",
"sb"... | Check if the email address is available for service creation
REST: GET /pack/xdsl/{packName}/exchangeLite/options/isEmailAvailable
@param email [required] Email
@param packName [required] The internal name of your pack | [
"Check",
"if",
"the",
"email",
"address",
"is",
"available",
"for",
"service",
"creation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L604-L610 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_exchangeLite_services_POST | public OvhTask packName_exchangeLite_services_POST(String packName, Boolean antispam, String displayName, String email, String firstName, String initials, String lastName, String password) throws IOException {
String qPath = "/pack/xdsl/{packName}/exchangeLite/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "antispam", antispam);
addBody(o, "displayName", displayName);
addBody(o, "email", email);
addBody(o, "firstName", firstName);
addBody(o, "initials", initials);
addBody(o, "lastName", lastName);
addBody(o, "password", password);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask packName_exchangeLite_services_POST(String packName, Boolean antispam, String displayName, String email, String firstName, String initials, String lastName, String password) throws IOException {
String qPath = "/pack/xdsl/{packName}/exchangeLite/services";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "antispam", antispam);
addBody(o, "displayName", displayName);
addBody(o, "email", email);
addBody(o, "firstName", firstName);
addBody(o, "initials", initials);
addBody(o, "lastName", lastName);
addBody(o, "password", password);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"packName_exchangeLite_services_POST",
"(",
"String",
"packName",
",",
"Boolean",
"antispam",
",",
"String",
"displayName",
",",
"String",
"email",
",",
"String",
"firstName",
",",
"String",
"initials",
",",
"String",
"lastName",
",",
"String",
... | Activate a exchange lite service
REST: POST /pack/xdsl/{packName}/exchangeLite/services
@param initials [required] Initials
@param antispam [required] [default=true] Antispam protection
@param firstName [required] First name
@param lastName [required] Last name
@param email [required] Email address
@param password [required] Password
@param displayName [required] Display name
@param packName [required] The internal name of your pack
@deprecated | [
"Activate",
"a",
"exchange",
"lite",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L653-L666 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_subServices_domain_keepServiceTerms_GET | public OvhUnpackTerms packName_subServices_domain_keepServiceTerms_GET(String packName, String domain) throws IOException {
String qPath = "/pack/xdsl/{packName}/subServices/{domain}/keepServiceTerms";
StringBuilder sb = path(qPath, packName, domain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhUnpackTerms.class);
} | java | public OvhUnpackTerms packName_subServices_domain_keepServiceTerms_GET(String packName, String domain) throws IOException {
String qPath = "/pack/xdsl/{packName}/subServices/{domain}/keepServiceTerms";
StringBuilder sb = path(qPath, packName, domain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhUnpackTerms.class);
} | [
"public",
"OvhUnpackTerms",
"packName_subServices_domain_keepServiceTerms_GET",
"(",
"String",
"packName",
",",
"String",
"domain",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/subServices/{domain}/keepServiceTerms\"",
";",
"StringBuilder",
... | Give the condition to unpack service from pack
REST: GET /pack/xdsl/{packName}/subServices/{domain}/keepServiceTerms
@param packName [required] The internal name of your pack
@param domain [required] | [
"Give",
"the",
"condition",
"to",
"unpack",
"service",
"from",
"pack"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L716-L721 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_tasks_GET | public ArrayList<Long> packName_tasks_GET(String packName, String function, OvhTaskStatusEnum status) throws IOException {
String qPath = "/pack/xdsl/{packName}/tasks";
StringBuilder sb = path(qPath, packName);
query(sb, "function", function);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | java | public ArrayList<Long> packName_tasks_GET(String packName, String function, OvhTaskStatusEnum status) throws IOException {
String qPath = "/pack/xdsl/{packName}/tasks";
StringBuilder sb = path(qPath, packName);
query(sb, "function", function);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"packName_tasks_GET",
"(",
"String",
"packName",
",",
"String",
"function",
",",
"OvhTaskStatusEnum",
"status",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/tasks\"",
";",
"StringBuilder",... | Tasks scheduled for this pack
REST: GET /pack/xdsl/{packName}/tasks
@param function [required] Filter the value of function property (=)
@param status [required] Filter the value of status property (=)
@param packName [required] The internal name of your pack | [
"Tasks",
"scheduled",
"for",
"this",
"pack"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L773-L780 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_promotionCode_capabilities_GET | public OvhCapabilities packName_promotionCode_capabilities_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/promotionCode/capabilities";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhCapabilities.class);
} | java | public OvhCapabilities packName_promotionCode_capabilities_GET(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/promotionCode/capabilities";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhCapabilities.class);
} | [
"public",
"OvhCapabilities",
"packName_promotionCode_capabilities_GET",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/promotionCode/capabilities\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
... | Get informations about the promotion code generation
REST: GET /pack/xdsl/{packName}/promotionCode/capabilities
@param packName [required] The internal name of your pack | [
"Get",
"informations",
"about",
"the",
"promotion",
"code",
"generation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L788-L793 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_promotionCode_generate_POST | public OvhTask packName_promotionCode_generate_POST(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/promotionCode/generate";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask packName_promotionCode_generate_POST(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/promotionCode/generate";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"packName_promotionCode_generate_POST",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/promotionCode/generate\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"packName",
... | Creates a task to generate a new promotion code
REST: POST /pack/xdsl/{packName}/promotionCode/generate
@param packName [required] The internal name of your pack | [
"Creates",
"a",
"task",
"to",
"generate",
"a",
"new",
"promotion",
"code"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L801-L806 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_migration_migrate_POST | public OvhTask packName_migration_migrate_POST(String packName, Boolean acceptContracts, String buildingReference, Long engageMonths, String floor, Long mondialRelayId, String nicShipping, String offerName, OvhOfferOption[] options, Boolean otp, String otpReference, String stair, OvhOfferServiceToDelete[] subServicesToDelete) throws IOException {
String qPath = "/pack/xdsl/{packName}/migration/migrate";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "acceptContracts", acceptContracts);
addBody(o, "buildingReference", buildingReference);
addBody(o, "engageMonths", engageMonths);
addBody(o, "floor", floor);
addBody(o, "mondialRelayId", mondialRelayId);
addBody(o, "nicShipping", nicShipping);
addBody(o, "offerName", offerName);
addBody(o, "options", options);
addBody(o, "otp", otp);
addBody(o, "otpReference", otpReference);
addBody(o, "stair", stair);
addBody(o, "subServicesToDelete", subServicesToDelete);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask packName_migration_migrate_POST(String packName, Boolean acceptContracts, String buildingReference, Long engageMonths, String floor, Long mondialRelayId, String nicShipping, String offerName, OvhOfferOption[] options, Boolean otp, String otpReference, String stair, OvhOfferServiceToDelete[] subServicesToDelete) throws IOException {
String qPath = "/pack/xdsl/{packName}/migration/migrate";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "acceptContracts", acceptContracts);
addBody(o, "buildingReference", buildingReference);
addBody(o, "engageMonths", engageMonths);
addBody(o, "floor", floor);
addBody(o, "mondialRelayId", mondialRelayId);
addBody(o, "nicShipping", nicShipping);
addBody(o, "offerName", offerName);
addBody(o, "options", options);
addBody(o, "otp", otp);
addBody(o, "otpReference", otpReference);
addBody(o, "stair", stair);
addBody(o, "subServicesToDelete", subServicesToDelete);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"packName_migration_migrate_POST",
"(",
"String",
"packName",
",",
"Boolean",
"acceptContracts",
",",
"String",
"buildingReference",
",",
"Long",
"engageMonths",
",",
"String",
"floor",
",",
"Long",
"mondialRelayId",
",",
"String",
"nicShipping",
... | Migrate to the selected offer
REST: POST /pack/xdsl/{packName}/migration/migrate
@param nicShipping [required] nicShipping if a shipping is needed
@param floor [required] Floor identifier, "_NA_" if no identifier is available
@param buildingReference [required] Building reference for FTTH offers
@param mondialRelayId [required] Mondial relay ID if a shipping is needed
@param otpReference [required] Reference of the Optical Termination Point
@param offerName [required] Reference of the new offer
@param options [required] Options wanted in the new offer
@param acceptContracts [required] You explicitly accept the terms of the contract corresponding to your new offer
@param stair [required] Stair identifier, "_NA_" if no identifier is available
@param engageMonths [required] Number of months of re-engagement
@param otp [required] Do you have an Optical Termination Point (Point de Terminaison Optique) at home ?
@param subServicesToDelete [required] List of domains of services to delete if needed
@param packName [required] The internal name of your pack | [
"Migrate",
"to",
"the",
"selected",
"offer"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L912-L930 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_migration_servicesToDelete_POST | public ArrayList<OvhSubServiceToDelete> packName_migration_servicesToDelete_POST(String packName, String offerName, OvhOfferOption[] options) throws IOException {
String qPath = "/pack/xdsl/{packName}/migration/servicesToDelete";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "offerName", offerName);
addBody(o, "options", options);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t10);
} | java | public ArrayList<OvhSubServiceToDelete> packName_migration_servicesToDelete_POST(String packName, String offerName, OvhOfferOption[] options) throws IOException {
String qPath = "/pack/xdsl/{packName}/migration/servicesToDelete";
StringBuilder sb = path(qPath, packName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "offerName", offerName);
addBody(o, "options", options);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t10);
} | [
"public",
"ArrayList",
"<",
"OvhSubServiceToDelete",
">",
"packName_migration_servicesToDelete_POST",
"(",
"String",
"packName",
",",
"String",
"offerName",
",",
"OvhOfferOption",
"[",
"]",
"options",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack... | Calculate services to delete with new offer and options
REST: POST /pack/xdsl/{packName}/migration/servicesToDelete
@param options [required] Options wanted in the new offer
@param offerName [required] Reference of the new offer
@param packName [required] The internal name of your pack | [
"Calculate",
"services",
"to",
"delete",
"with",
"new",
"offer",
"and",
"options"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L940-L948 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_migration_offers_POST | public OvhAsyncTask<OvhMigrationOfferResponse> packName_migration_offers_POST(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/migration/offers";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, t11);
} | java | public OvhAsyncTask<OvhMigrationOfferResponse> packName_migration_offers_POST(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/migration/offers";
StringBuilder sb = path(qPath, packName);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, t11);
} | [
"public",
"OvhAsyncTask",
"<",
"OvhMigrationOfferResponse",
">",
"packName_migration_offers_POST",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/migration/offers\"",
";",
"StringBuilder",
"sb",
"=",
"path",
... | Get the possibilities of migration offers available
REST: POST /pack/xdsl/{packName}/migration/offers
@param packName [required] The internal name of your pack | [
"Get",
"the",
"possibilities",
"of",
"migration",
"offers",
"available"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L957-L962 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_cancelResiliation_POST | public void packName_cancelResiliation_POST(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/cancelResiliation";
StringBuilder sb = path(qPath, packName);
exec(qPath, "POST", sb.toString(), null);
} | java | public void packName_cancelResiliation_POST(String packName) throws IOException {
String qPath = "/pack/xdsl/{packName}/cancelResiliation";
StringBuilder sb = path(qPath, packName);
exec(qPath, "POST", sb.toString(), null);
} | [
"public",
"void",
"packName_cancelResiliation_POST",
"(",
"String",
"packName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/cancelResiliation\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"packName",
")",
";",
... | Cancel the ongoing resiliation
REST: POST /pack/xdsl/{packName}/cancelResiliation
@param packName [required] The internal name of your pack | [
"Cancel",
"the",
"ongoing",
"resiliation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L971-L975 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_shippingAddresses_GET | public ArrayList<OvhShippingAddress> packName_shippingAddresses_GET(String packName, OvhShippingAddressContextEnum context) throws IOException {
String qPath = "/pack/xdsl/{packName}/shippingAddresses";
StringBuilder sb = path(qPath, packName);
query(sb, "context", context);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhShippingAddress> packName_shippingAddresses_GET(String packName, OvhShippingAddressContextEnum context) throws IOException {
String qPath = "/pack/xdsl/{packName}/shippingAddresses";
StringBuilder sb = path(qPath, packName);
query(sb, "context", context);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhShippingAddress",
">",
"packName_shippingAddresses_GET",
"(",
"String",
"packName",
",",
"OvhShippingAddressContextEnum",
"context",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/shippingAddresses\"",
";",
... | Allowed shipping addresses given a context
REST: GET /pack/xdsl/{packName}/shippingAddresses
@param context [required] Context
@param packName [required] The internal name of your pack | [
"Allowed",
"shipping",
"addresses",
"given",
"a",
"context"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L984-L990 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java | ApiOvhPackxdsl.packName_hubic_services_domain_details_GET | public OvhAsyncTask<OvhHubicDetailsResponse> packName_hubic_services_domain_details_GET(String packName, String domain) throws IOException {
String qPath = "/pack/xdsl/{packName}/hubic/services/{domain}/details";
StringBuilder sb = path(qPath, packName, domain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t12);
} | java | public OvhAsyncTask<OvhHubicDetailsResponse> packName_hubic_services_domain_details_GET(String packName, String domain) throws IOException {
String qPath = "/pack/xdsl/{packName}/hubic/services/{domain}/details";
StringBuilder sb = path(qPath, packName, domain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t12);
} | [
"public",
"OvhAsyncTask",
"<",
"OvhHubicDetailsResponse",
">",
"packName_hubic_services_domain_details_GET",
"(",
"String",
"packName",
",",
"String",
"domain",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/pack/xdsl/{packName}/hubic/services/{domain}/details\"... | Details associated to a voucher
REST: GET /pack/xdsl/{packName}/hubic/services/{domain}/details
@param packName [required] The internal name of your pack
@param domain [required] | [
"Details",
"associated",
"to",
"a",
"voucher"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-packxdsl/src/main/java/net/minidev/ovh/api/ApiOvhPackxdsl.java#L1083-L1088 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_portability_id_document_POST | public OvhPortabilityDocument billingAccount_portability_id_document_POST(String billingAccount, Long id, String description, String name) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/document";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "name", name);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhPortabilityDocument.class);
} | java | public OvhPortabilityDocument billingAccount_portability_id_document_POST(String billingAccount, Long id, String description, String name) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/document";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "name", name);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhPortabilityDocument.class);
} | [
"public",
"OvhPortabilityDocument",
"billingAccount_portability_id_document_POST",
"(",
"String",
"billingAccount",
",",
"Long",
"id",
",",
"String",
"description",
",",
"String",
"name",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAcc... | Create a portability document
REST: POST /telephony/{billingAccount}/portability/{id}/document
@param description [required] Description of the document
@param name [required] Document's name
@param billingAccount [required] The name of your billingAccount
@param id [required] The ID of the portability | [
"Create",
"a",
"portability",
"document"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L253-L261 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_portability_id_relaunch_POST | public void billingAccount_portability_id_relaunch_POST(String billingAccount, Long id, OvhSafeKeyValue<String>[] parameters) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/relaunch";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "parameters", parameters);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_portability_id_relaunch_POST(String billingAccount, Long id, OvhSafeKeyValue<String>[] parameters) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/relaunch";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "parameters", parameters);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_portability_id_relaunch_POST",
"(",
"String",
"billingAccount",
",",
"Long",
"id",
",",
"OvhSafeKeyValue",
"<",
"String",
">",
"[",
"]",
"parameters",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAc... | Fix error and relaunch portability
REST: POST /telephony/{billingAccount}/portability/{id}/relaunch
@param parameters [required] List of parameters to use to fix error
@param billingAccount [required] The name of your billingAccount
@param id [required] The ID of the portability | [
"Fix",
"error",
"and",
"relaunch",
"portability"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L315-L321 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_portability_id_relaunch_GET | public OvhPortabilityFixErrorPossibleParameters billingAccount_portability_id_relaunch_GET(String billingAccount, Long id) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/relaunch";
StringBuilder sb = path(qPath, billingAccount, id);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPortabilityFixErrorPossibleParameters.class);
} | java | public OvhPortabilityFixErrorPossibleParameters billingAccount_portability_id_relaunch_GET(String billingAccount, Long id) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/relaunch";
StringBuilder sb = path(qPath, billingAccount, id);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPortabilityFixErrorPossibleParameters.class);
} | [
"public",
"OvhPortabilityFixErrorPossibleParameters",
"billingAccount_portability_id_relaunch_GET",
"(",
"String",
"billingAccount",
",",
"Long",
"id",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/portability/{id}/relaunch\"",
";",
"St... | Indicates whether or not error can be fixed and portability can be relaunched
REST: GET /telephony/{billingAccount}/portability/{id}/relaunch
@param billingAccount [required] The name of your billingAccount
@param id [required] The ID of the portability | [
"Indicates",
"whether",
"or",
"not",
"error",
"can",
"be",
"fixed",
"and",
"portability",
"can",
"be",
"relaunched"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L330-L335 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_portability_id_cancel_POST | public void billingAccount_portability_id_cancel_POST(String billingAccount, Long id, String reason) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/cancel";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "reason", reason);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_portability_id_cancel_POST(String billingAccount, Long id, String reason) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/cancel";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "reason", reason);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_portability_id_cancel_POST",
"(",
"String",
"billingAccount",
",",
"Long",
"id",
",",
"String",
"reason",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/portability/{id}/cancel\"",
";",
"StringBuil... | Ask to cancel the portability
REST: POST /telephony/{billingAccount}/portability/{id}/cancel
@param reason [required] The cancellation reason
@param billingAccount [required] The name of your billingAccount
@param id [required] The ID of the portability | [
"Ask",
"to",
"cancel",
"the",
"portability"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L359-L365 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_portability_id_changeDate_POST | public void billingAccount_portability_id_changeDate_POST(String billingAccount, Long id, Date date) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/changeDate";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "date", date);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_portability_id_changeDate_POST(String billingAccount, Long id, Date date) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/changeDate";
StringBuilder sb = path(qPath, billingAccount, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "date", date);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_portability_id_changeDate_POST",
"(",
"String",
"billingAccount",
",",
"Long",
"id",
",",
"Date",
"date",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/portability/{id}/changeDate\"",
";",
"String... | Ask to change the portability date
REST: POST /telephony/{billingAccount}/portability/{id}/changeDate
@param date [required] The proposed portability due date
@param billingAccount [required] The name of your billingAccount
@param id [required] The ID of the portability | [
"Ask",
"to",
"change",
"the",
"portability",
"date"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L375-L381 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_portability_id_status_GET | public ArrayList<OvhPortabilityStep> billingAccount_portability_id_status_GET(String billingAccount, Long id) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/status";
StringBuilder sb = path(qPath, billingAccount, id);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | java | public ArrayList<OvhPortabilityStep> billingAccount_portability_id_status_GET(String billingAccount, Long id) throws IOException {
String qPath = "/telephony/{billingAccount}/portability/{id}/status";
StringBuilder sb = path(qPath, billingAccount, id);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | [
"public",
"ArrayList",
"<",
"OvhPortabilityStep",
">",
"billingAccount_portability_id_status_GET",
"(",
"String",
"billingAccount",
",",
"Long",
"id",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/portability/{id}/status\"",
";",
... | Indicates the current status of the portability, with a list of steps
REST: GET /telephony/{billingAccount}/portability/{id}/status
@param billingAccount [required] The name of your billingAccount
@param id [required] The ID of the portability | [
"Indicates",
"the",
"current",
"status",
"of",
"the",
"portability",
"with",
"a",
"list",
"of",
"steps"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L404-L409 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_canTransferSecurityDeposit_POST | public Boolean billingAccount_canTransferSecurityDeposit_POST(String billingAccount, String billingAccountDestination) throws IOException {
String qPath = "/telephony/{billingAccount}/canTransferSecurityDeposit";
StringBuilder sb = path(qPath, billingAccount);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "billingAccountDestination", billingAccountDestination);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, Boolean.class);
} | java | public Boolean billingAccount_canTransferSecurityDeposit_POST(String billingAccount, String billingAccountDestination) throws IOException {
String qPath = "/telephony/{billingAccount}/canTransferSecurityDeposit";
StringBuilder sb = path(qPath, billingAccount);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "billingAccountDestination", billingAccountDestination);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, Boolean.class);
} | [
"public",
"Boolean",
"billingAccount_canTransferSecurityDeposit_POST",
"(",
"String",
"billingAccount",
",",
"String",
"billingAccountDestination",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/canTransferSecurityDeposit\"",
";",
"Strin... | Check if security deposit transfer is possible between two billing accounts
REST: POST /telephony/{billingAccount}/canTransferSecurityDeposit
@param billingAccountDestination [required] The destination billing account
@param billingAccount [required] The name of your billingAccount | [
"Check",
"if",
"security",
"deposit",
"transfer",
"is",
"possible",
"between",
"two",
"billing",
"accounts"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L501-L508 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_scheduler_serviceName_events_GET | public ArrayList<String> billingAccount_scheduler_serviceName_events_GET(String billingAccount, String serviceName, OvhSchedulerCategoryEnum categories, Date dateEnd_from, Date dateEnd_to, Date dateStart_from, Date dateStart_to) throws IOException {
String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "categories", categories);
query(sb, "dateEnd.from", dateEnd_from);
query(sb, "dateEnd.to", dateEnd_to);
query(sb, "dateStart.from", dateStart_from);
query(sb, "dateStart.to", dateStart_to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<String> billingAccount_scheduler_serviceName_events_GET(String billingAccount, String serviceName, OvhSchedulerCategoryEnum categories, Date dateEnd_from, Date dateEnd_to, Date dateStart_from, Date dateStart_to) throws IOException {
String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "categories", categories);
query(sb, "dateEnd.from", dateEnd_from);
query(sb, "dateEnd.to", dateEnd_to);
query(sb, "dateStart.from", dateStart_from);
query(sb, "dateStart.to", dateStart_to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"billingAccount_scheduler_serviceName_events_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhSchedulerCategoryEnum",
"categories",
",",
"Date",
"dateEnd_from",
",",
"Date",
"dateEnd_to",
",",
"Date",... | Custom events scheduled
REST: GET /telephony/{billingAccount}/scheduler/{serviceName}/events
@param dateStart_to [required] Filter the value of dateStart property (<=)
@param dateEnd_to [required] Filter the value of dateEnd property (<=)
@param categories [required] Filter the value of categories property (=)
@param dateEnd_from [required] Filter the value of dateEnd property (>=)
@param dateStart_from [required] Filter the value of dateStart property (>=)
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Custom",
"events",
"scheduled"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L581-L591 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_scheduler_serviceName_events_POST | public void billingAccount_scheduler_serviceName_events_POST(String billingAccount, String serviceName, OvhSchedulerCategoryEnum category, Date dateEnd, Date dateStart, String description, String title, String uid) throws IOException {
String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "category", category);
addBody(o, "dateEnd", dateEnd);
addBody(o, "dateStart", dateStart);
addBody(o, "description", description);
addBody(o, "title", title);
addBody(o, "uid", uid);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_scheduler_serviceName_events_POST(String billingAccount, String serviceName, OvhSchedulerCategoryEnum category, Date dateEnd, Date dateStart, String description, String title, String uid) throws IOException {
String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "category", category);
addBody(o, "dateEnd", dateEnd);
addBody(o, "dateStart", dateStart);
addBody(o, "description", description);
addBody(o, "title", title);
addBody(o, "uid", uid);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_scheduler_serviceName_events_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhSchedulerCategoryEnum",
"category",
",",
"Date",
"dateEnd",
",",
"Date",
"dateStart",
",",
"String",
"description",
",",
"String",... | Add a scheduler event
REST: POST /telephony/{billingAccount}/scheduler/{serviceName}/events
@param dateEnd [required] The ending date of the event
@param category [required] The category of the event
@param title [required] The title of the event
@param uid [required] The unique ICS event identifier
@param dateStart [required] The beginning date of the event
@param description [required] The descritpion of the event
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Add",
"a",
"scheduler",
"event"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L606-L617 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_scheduler_serviceName_events_uid_DELETE | public void billingAccount_scheduler_serviceName_events_uid_DELETE(String billingAccount, String serviceName, String uid) throws IOException {
String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events/{uid}";
StringBuilder sb = path(qPath, billingAccount, serviceName, uid);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void billingAccount_scheduler_serviceName_events_uid_DELETE(String billingAccount, String serviceName, String uid) throws IOException {
String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events/{uid}";
StringBuilder sb = path(qPath, billingAccount, serviceName, uid);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_scheduler_serviceName_events_uid_DELETE",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"uid",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/scheduler/{serviceName}/eve... | Delete the given scheduler event
REST: DELETE /telephony/{billingAccount}/scheduler/{serviceName}/events/{uid}
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param uid [required] The unique ICS event identifier | [
"Delete",
"the",
"given",
"scheduler",
"event"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L657-L661 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_historyConsumption_date_file_GET | public OvhPcsFile billingAccount_historyConsumption_date_file_GET(String billingAccount, java.util.Date date, OvhBillDocument extension) throws IOException {
String qPath = "/telephony/{billingAccount}/historyConsumption/{date}/file";
StringBuilder sb = path(qPath, billingAccount, date);
query(sb, "extension", extension);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPcsFile.class);
} | java | public OvhPcsFile billingAccount_historyConsumption_date_file_GET(String billingAccount, java.util.Date date, OvhBillDocument extension) throws IOException {
String qPath = "/telephony/{billingAccount}/historyConsumption/{date}/file";
StringBuilder sb = path(qPath, billingAccount, date);
query(sb, "extension", extension);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPcsFile.class);
} | [
"public",
"OvhPcsFile",
"billingAccount_historyConsumption_date_file_GET",
"(",
"String",
"billingAccount",
",",
"java",
".",
"util",
".",
"Date",
"date",
",",
"OvhBillDocument",
"extension",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{bill... | Previous billed consumption files
REST: GET /telephony/{billingAccount}/historyConsumption/{date}/file
@param extension [required] Document suffix
@param billingAccount [required] The name of your billingAccount
@param date [required] | [
"Previous",
"billed",
"consumption",
"files"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L685-L691 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_cancelTermination_POST | public void billingAccount_cancelTermination_POST(String billingAccount) throws IOException {
String qPath = "/telephony/{billingAccount}/cancelTermination";
StringBuilder sb = path(qPath, billingAccount);
exec(qPath, "POST", sb.toString(), null);
} | java | public void billingAccount_cancelTermination_POST(String billingAccount) throws IOException {
String qPath = "/telephony/{billingAccount}/cancelTermination";
StringBuilder sb = path(qPath, billingAccount);
exec(qPath, "POST", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_cancelTermination_POST",
"(",
"String",
"billingAccount",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/cancelTermination\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"billing... | Cancel the billing account termination
REST: POST /telephony/{billingAccount}/cancelTermination
@param billingAccount [required] The name of your billingAccount | [
"Cancel",
"the",
"billing",
"account",
"termination"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L713-L717 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_listAssociablePhones_GET | public ArrayList<OvhLinePhoneAssociable> billingAccount_line_serviceName_listAssociablePhones_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/listAssociablePhones";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t6);
} | java | public ArrayList<OvhLinePhoneAssociable> billingAccount_line_serviceName_listAssociablePhones_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/listAssociablePhones";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t6);
} | [
"public",
"ArrayList",
"<",
"OvhLinePhoneAssociable",
">",
"billingAccount_line_serviceName_listAssociablePhones_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/line/{... | List phones with available slots where this line can be attached
REST: GET /telephony/{billingAccount}/line/{serviceName}/listAssociablePhones
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"List",
"phones",
"with",
"available",
"slots",
"where",
"this",
"line",
"can",
"be",
"attached"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L739-L744 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_trafficExtracts_POST | public OvhTrafficExtract billingAccount_line_serviceName_trafficExtracts_POST(String billingAccount, String serviceName, Date dateEnd, Date dateStart) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/trafficExtracts";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "dateEnd", dateEnd);
addBody(o, "dateStart", dateStart);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTrafficExtract.class);
} | java | public OvhTrafficExtract billingAccount_line_serviceName_trafficExtracts_POST(String billingAccount, String serviceName, Date dateEnd, Date dateStart) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/trafficExtracts";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "dateEnd", dateEnd);
addBody(o, "dateStart", dateStart);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTrafficExtract.class);
} | [
"public",
"OvhTrafficExtract",
"billingAccount_line_serviceName_trafficExtracts_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Date",
"dateEnd",
",",
"Date",
"dateStart",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony... | Launch a traffic extract on your line
REST: POST /telephony/{billingAccount}/line/{serviceName}/trafficExtracts
@param dateStart [required] The start date of the traffic extract
@param dateEnd [required] The end date of the traffic extract
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Launch",
"a",
"traffic",
"extract",
"on",
"your",
"line"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L799-L807 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_click2CallUser_id_changePassword_POST | public void billingAccount_line_serviceName_click2CallUser_id_changePassword_POST(String billingAccount, String serviceName, Long id, String password) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/click2CallUser/{id}/changePassword";
StringBuilder sb = path(qPath, billingAccount, serviceName, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "password", password);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_line_serviceName_click2CallUser_id_changePassword_POST(String billingAccount, String serviceName, Long id, String password) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/click2CallUser/{id}/changePassword";
StringBuilder sb = path(qPath, billingAccount, serviceName, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "password", password);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_line_serviceName_click2CallUser_id_changePassword_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"id",
",",
"String",
"password",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony... | Change the password of the click2call user
REST: POST /telephony/{billingAccount}/line/{serviceName}/click2CallUser/{id}/changePassword
@param password [required] The password
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param id [required] Id of the object | [
"Change",
"the",
"password",
"of",
"the",
"click2call",
"user"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L871-L877 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_phone_rma_POST | public OvhRmaReturn billingAccount_line_serviceName_phone_rma_POST(String billingAccount, String serviceName, String mondialRelayId, String newMerchandise, Long shippingContactId, OvhRmaPublicTypeEnum type) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/rma";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "mondialRelayId", mondialRelayId);
addBody(o, "newMerchandise", newMerchandise);
addBody(o, "shippingContactId", shippingContactId);
addBody(o, "type", type);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhRmaReturn.class);
} | java | public OvhRmaReturn billingAccount_line_serviceName_phone_rma_POST(String billingAccount, String serviceName, String mondialRelayId, String newMerchandise, Long shippingContactId, OvhRmaPublicTypeEnum type) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/rma";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "mondialRelayId", mondialRelayId);
addBody(o, "newMerchandise", newMerchandise);
addBody(o, "shippingContactId", shippingContactId);
addBody(o, "type", type);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhRmaReturn.class);
} | [
"public",
"OvhRmaReturn",
"billingAccount_line_serviceName_phone_rma_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"mondialRelayId",
",",
"String",
"newMerchandise",
",",
"Long",
"shippingContactId",
",",
"OvhRmaPublicTypeEnum",
"type",
... | Create a specific rma
REST: POST /telephony/{billingAccount}/line/{serviceName}/phone/rma
@param shippingContactId [required] Shipping contact information id from /me entry point
@param type [required] Typology process of merchandise return
@param mondialRelayId [required] Use /supply/mondialRelay entry point to specify a relay point and ignore shipping contact address information entry.
@param newMerchandise [required] New merchandise brand in case of exchange
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Create",
"a",
"specific",
"rma"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1057-L1067 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_phone_functionKey_keyNum_availableFunction_GET | public ArrayList<String> billingAccount_line_serviceName_phone_functionKey_keyNum_availableFunction_GET(String billingAccount, String serviceName, Long keyNum) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/functionKey/{keyNum}/availableFunction";
StringBuilder sb = path(qPath, billingAccount, serviceName, keyNum);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<String> billingAccount_line_serviceName_phone_functionKey_keyNum_availableFunction_GET(String billingAccount, String serviceName, Long keyNum) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/functionKey/{keyNum}/availableFunction";
StringBuilder sb = path(qPath, billingAccount, serviceName, keyNum);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"billingAccount_line_serviceName_phone_functionKey_keyNum_availableFunction_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"keyNum",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\... | List the available functions for the key
REST: GET /telephony/{billingAccount}/line/{serviceName}/phone/functionKey/{keyNum}/availableFunction
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param keyNum [required] The number of the function key | [
"List",
"the",
"available",
"functions",
"for",
"the",
"key"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1133-L1138 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_phone_merchandiseAvailable_GET | public ArrayList<OvhHardwareOffer> billingAccount_line_serviceName_phone_merchandiseAvailable_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/merchandiseAvailable";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t7);
} | java | public ArrayList<OvhHardwareOffer> billingAccount_line_serviceName_phone_merchandiseAvailable_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/merchandiseAvailable";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t7);
} | [
"public",
"ArrayList",
"<",
"OvhHardwareOffer",
">",
"billingAccount_line_serviceName_phone_merchandiseAvailable_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/line/{... | List of available exchange merchandise brand
REST: GET /telephony/{billingAccount}/line/{serviceName}/phone/merchandiseAvailable
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"List",
"of",
"available",
"exchange",
"merchandise",
"brand"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1191-L1196 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_phone_changePhoneConfiguration_POST | public void billingAccount_line_serviceName_phone_changePhoneConfiguration_POST(String billingAccount, String serviceName, Boolean autoReboot, OvhSafeKeyValue<String>[] newConfigurations) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/changePhoneConfiguration";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "autoReboot", autoReboot);
addBody(o, "newConfigurations", newConfigurations);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_line_serviceName_phone_changePhoneConfiguration_POST(String billingAccount, String serviceName, Boolean autoReboot, OvhSafeKeyValue<String>[] newConfigurations) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/changePhoneConfiguration";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "autoReboot", autoReboot);
addBody(o, "newConfigurations", newConfigurations);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_line_serviceName_phone_changePhoneConfiguration_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Boolean",
"autoReboot",
",",
"OvhSafeKeyValue",
"<",
"String",
">",
"[",
"]",
"newConfigurations",
")",
"throws",
... | Edit configuration of the phone remotely by provisioning
REST: POST /telephony/{billingAccount}/line/{serviceName}/phone/changePhoneConfiguration
@param autoReboot [required] Automatically reboot phone when applying the configuration
@param newConfigurations [required] Name value pairs of provisioning options
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Edit",
"configuration",
"of",
"the",
"phone",
"remotely",
"by",
"provisioning"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1208-L1215 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_phone_resetConfig_POST | public OvhResetPhoneInfo billingAccount_line_serviceName_phone_resetConfig_POST(String billingAccount, String serviceName, String ip) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/resetConfig";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ip", ip);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhResetPhoneInfo.class);
} | java | public OvhResetPhoneInfo billingAccount_line_serviceName_phone_resetConfig_POST(String billingAccount, String serviceName, String ip) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/resetConfig";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ip", ip);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhResetPhoneInfo.class);
} | [
"public",
"OvhResetPhoneInfo",
"billingAccount_line_serviceName_phone_resetConfig_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"ip",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/line/{serviceNa... | Reinitialize the phone configuration
REST: POST /telephony/{billingAccount}/line/{serviceName}/phone/resetConfig
@param ip [required] The public ip phone allowed for reset
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Reinitialize",
"the",
"phone",
"configuration"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1427-L1434 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_phoneCanBeAssociable_GET | public ArrayList<OvhLinePhone> billingAccount_line_serviceName_phoneCanBeAssociable_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phoneCanBeAssociable";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t8);
} | java | public ArrayList<OvhLinePhone> billingAccount_line_serviceName_phoneCanBeAssociable_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/phoneCanBeAssociable";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t8);
} | [
"public",
"ArrayList",
"<",
"OvhLinePhone",
">",
"billingAccount_line_serviceName_phoneCanBeAssociable_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/line/{serviceNam... | List the phones with Sip slot available
REST: GET /telephony/{billingAccount}/line/{serviceName}/phoneCanBeAssociable
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@deprecated | [
"List",
"the",
"phones",
"with",
"Sip",
"slot",
"available"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1525-L1530 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_antihack_POST | public void billingAccount_line_serviceName_antihack_POST(String billingAccount, String serviceName, OvhAntihackActionEnum action, String restricted) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/antihack";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "action", action);
addBody(o, "restricted", restricted);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_line_serviceName_antihack_POST(String billingAccount, String serviceName, OvhAntihackActionEnum action, String restricted) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/antihack";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "action", action);
addBody(o, "restricted", restricted);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_line_serviceName_antihack_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhAntihackActionEnum",
"action",
",",
"String",
"restricted",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/... | Clean the antihack or add it on active filter screen list
REST: POST /telephony/{billingAccount}/line/{serviceName}/antihack
@param restricted [required] Number or short number restricted
@param action [required] Type of action
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Clean",
"the",
"antihack",
"or",
"add",
"it",
"on",
"active",
"filter",
"screen",
"list"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1651-L1658 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_ips_GET | public ArrayList<OvhDatetimeAndIpvalue> billingAccount_line_serviceName_ips_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/ips";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t9);
} | java | public ArrayList<OvhDatetimeAndIpvalue> billingAccount_line_serviceName_ips_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/ips";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t9);
} | [
"public",
"ArrayList",
"<",
"OvhDatetimeAndIpvalue",
">",
"billingAccount_line_serviceName_ips_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/line/{serviceName}/ips\"... | Listing of last ips registry
REST: GET /telephony/{billingAccount}/line/{serviceName}/ips
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Listing",
"of",
"last",
"ips",
"registry"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1723-L1728 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_automaticCall_POST | public String billingAccount_line_serviceName_automaticCall_POST(String billingAccount, String serviceName, String bridgeNumberDialplan, String calledNumber, String callingNumber, OvhCallsGeneratorDialplanEnum dialplan, Boolean isAnonymous, String playbackAudioFileDialplan, Long timeout, String ttsTextDialplan) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/automaticCall";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "bridgeNumberDialplan", bridgeNumberDialplan);
addBody(o, "calledNumber", calledNumber);
addBody(o, "callingNumber", callingNumber);
addBody(o, "dialplan", dialplan);
addBody(o, "isAnonymous", isAnonymous);
addBody(o, "playbackAudioFileDialplan", playbackAudioFileDialplan);
addBody(o, "timeout", timeout);
addBody(o, "ttsTextDialplan", ttsTextDialplan);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | java | public String billingAccount_line_serviceName_automaticCall_POST(String billingAccount, String serviceName, String bridgeNumberDialplan, String calledNumber, String callingNumber, OvhCallsGeneratorDialplanEnum dialplan, Boolean isAnonymous, String playbackAudioFileDialplan, Long timeout, String ttsTextDialplan) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/automaticCall";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "bridgeNumberDialplan", bridgeNumberDialplan);
addBody(o, "calledNumber", calledNumber);
addBody(o, "callingNumber", callingNumber);
addBody(o, "dialplan", dialplan);
addBody(o, "isAnonymous", isAnonymous);
addBody(o, "playbackAudioFileDialplan", playbackAudioFileDialplan);
addBody(o, "timeout", timeout);
addBody(o, "ttsTextDialplan", ttsTextDialplan);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | [
"public",
"String",
"billingAccount_line_serviceName_automaticCall_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"bridgeNumberDialplan",
",",
"String",
"calledNumber",
",",
"String",
"callingNumber",
",",
"OvhCallsGeneratorDialplanEnum",
... | Make an automatic phone call. Return generated call identifier
REST: POST /telephony/{billingAccount}/line/{serviceName}/automaticCall
@param callingNumber [required] Optional, number where the call come from
@param dialplan [required] Dialplan used for the call
@param bridgeNumberDialplan [required] Number to call if transfer in dialplan selected
@param isAnonymous [required] For anonymous call
@param playbackAudioFileDialplan [required] Name of the audioFile (if needed) with extention. This audio file must have been upload previously
@param ttsTextDialplan [required] Text to read if TTS on dialplan selected
@param calledNumber [required] Number to call
@param timeout [required] Timeout (in seconds). Default is 20 seconds
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Make",
"an",
"automatic",
"phone",
"call",
".",
"Return",
"generated",
"call",
"identifier"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1760-L1774 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_calls_id_eavesdrop_POST | public OvhTask billingAccount_line_serviceName_calls_id_eavesdrop_POST(String billingAccount, String serviceName, Long id, String number) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/calls/{id}/eavesdrop";
StringBuilder sb = path(qPath, billingAccount, serviceName, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "number", number);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask billingAccount_line_serviceName_calls_id_eavesdrop_POST(String billingAccount, String serviceName, Long id, String number) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/calls/{id}/eavesdrop";
StringBuilder sb = path(qPath, billingAccount, serviceName, id);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "number", number);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"billingAccount_line_serviceName_calls_id_eavesdrop_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"id",
",",
"String",
"number",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAcco... | Eavesdrop on a call
REST: POST /telephony/{billingAccount}/line/{serviceName}/calls/{id}/eavesdrop
@param number [required] Phone number that will be called and bridged in the communication
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param id [required] Id of the object | [
"Eavesdrop",
"on",
"a",
"call"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L1932-L1939 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_statistics_GET | public OvhUnitAndValues<OvhTimestampAndValue> billingAccount_line_serviceName_statistics_GET(String billingAccount, String serviceName, OvhStatisticsTimeframeEnum timeframe, OvhLineStatisticsTypeEnum type) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/statistics";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "timeframe", timeframe);
query(sb, "type", type);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t10);
} | java | public OvhUnitAndValues<OvhTimestampAndValue> billingAccount_line_serviceName_statistics_GET(String billingAccount, String serviceName, OvhStatisticsTimeframeEnum timeframe, OvhLineStatisticsTypeEnum type) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/statistics";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "timeframe", timeframe);
query(sb, "type", type);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t10);
} | [
"public",
"OvhUnitAndValues",
"<",
"OvhTimestampAndValue",
">",
"billingAccount_line_serviceName_statistics_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhStatisticsTimeframeEnum",
"timeframe",
",",
"OvhLineStatisticsTypeEnum",
"type",
")",
"throw... | Get statistics of the current line
REST: GET /telephony/{billingAccount}/line/{serviceName}/statistics
@param timeframe [required]
@param type [required]
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Get",
"statistics",
"of",
"the",
"current",
"line"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L2050-L2057 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_removeSimultaneousLines_POST | public void billingAccount_line_serviceName_removeSimultaneousLines_POST(String billingAccount, String serviceName, Long quantityRemove) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/removeSimultaneousLines";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "quantityRemove", quantityRemove);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_line_serviceName_removeSimultaneousLines_POST(String billingAccount, String serviceName, Long quantityRemove) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/removeSimultaneousLines";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "quantityRemove", quantityRemove);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_line_serviceName_removeSimultaneousLines_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"quantityRemove",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/line/{servic... | Remove extra simultaneous lines
REST: POST /telephony/{billingAccount}/line/{serviceName}/removeSimultaneousLines
@param quantityRemove [required] The quantity of extra simultaneous lines to remove
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Remove",
"extra",
"simultaneous",
"lines"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L2068-L2074 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_line_serviceName_dissociateDevice_POST | public void billingAccount_line_serviceName_dissociateDevice_POST(String billingAccount, String serviceName, String ipAddress, String macAddress) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/dissociateDevice";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ipAddress", ipAddress);
addBody(o, "macAddress", macAddress);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_line_serviceName_dissociateDevice_POST(String billingAccount, String serviceName, String ipAddress, String macAddress) throws IOException {
String qPath = "/telephony/{billingAccount}/line/{serviceName}/dissociateDevice";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ipAddress", ipAddress);
addBody(o, "macAddress", macAddress);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_line_serviceName_dissociateDevice_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"ipAddress",
",",
"String",
"macAddress",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{bil... | Dissociate a device from the current line with the device mac address
REST: POST /telephony/{billingAccount}/line/{serviceName}/dissociateDevice
@param macAddress [required] The mac address of the device you want to dissociate from the line (format: AABBCCDDEEFF)
@param ipAddress [required] The public phone IP address allowed to get phone's configuration
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Dissociate",
"a",
"device",
"from",
"the",
"current",
"line",
"with",
"the",
"device",
"mac",
"address"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L2162-L2169 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_sound_soundId_DELETE | public void billingAccount_easyHunting_serviceName_sound_soundId_DELETE(String billingAccount, String serviceName, Long soundId) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/sound/{soundId}";
StringBuilder sb = path(qPath, billingAccount, serviceName, soundId);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void billingAccount_easyHunting_serviceName_sound_soundId_DELETE(String billingAccount, String serviceName, Long soundId) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/sound/{soundId}";
StringBuilder sb = path(qPath, billingAccount, serviceName, soundId);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_easyHunting_serviceName_sound_soundId_DELETE",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"soundId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/easyHunting/{service... | Delete the given sound
REST: DELETE /telephony/{billingAccount}/easyHunting/{serviceName}/sound/{soundId}
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param soundId [required] | [
"Delete",
"the",
"given",
"sound"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L2228-L2232 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_hunting_eventToken_POST | public String billingAccount_easyHunting_serviceName_hunting_eventToken_POST(String billingAccount, String serviceName, OvhTokenExpirationEnum expiration) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/eventToken";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "expiration", expiration);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | java | public String billingAccount_easyHunting_serviceName_hunting_eventToken_POST(String billingAccount, String serviceName, OvhTokenExpirationEnum expiration) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/eventToken";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "expiration", expiration);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | [
"public",
"String",
"billingAccount_easyHunting_serviceName_hunting_eventToken_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhTokenExpirationEnum",
"expiration",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAcc... | Create a new token
REST: POST /telephony/{billingAccount}/easyHunting/{serviceName}/hunting/eventToken
@param expiration [required] Time to live in seconds for the token
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Create",
"a",
"new",
"token"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L2313-L2320 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_hunting_agent_agentId_DELETE | public void billingAccount_easyHunting_serviceName_hunting_agent_agentId_DELETE(String billingAccount, String serviceName, Long agentId) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/agent/{agentId}";
StringBuilder sb = path(qPath, billingAccount, serviceName, agentId);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void billingAccount_easyHunting_serviceName_hunting_agent_agentId_DELETE(String billingAccount, String serviceName, Long agentId) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/agent/{agentId}";
StringBuilder sb = path(qPath, billingAccount, serviceName, agentId);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_easyHunting_serviceName_hunting_agent_agentId_DELETE",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"agentId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/easyHunting/... | Delete the given agent
REST: DELETE /telephony/{billingAccount}/easyHunting/{serviceName}/hunting/agent/{agentId}
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param agentId [required] | [
"Delete",
"the",
"given",
"agent"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L2388-L2392 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_hunting_queue_POST | public OvhOvhPabxHuntingQueue billingAccount_easyHunting_serviceName_hunting_queue_POST(String billingAccount, String serviceName, OvhOvhPabxQueueActionEnum actionOnClosure, String actionOnClosureParam, OvhOvhPabxQueueActionEnum actionOnOverflow, String actionOnOverflowParam, Boolean askForRecordDisabling, String description, Long maxMember, Long maxWaitTime, Boolean record, OvhOvhPabxHuntingQueueRecordDisablingDigitEnum recordDisablingDigit, OvhOvhPabxHuntingQueueRecordDisablingLanguageEnum recordDisablingLanguage, Long soundOnHold, OvhOvhPabxHuntingQueueStrategyEnum strategy) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/queue";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "actionOnClosure", actionOnClosure);
addBody(o, "actionOnClosureParam", actionOnClosureParam);
addBody(o, "actionOnOverflow", actionOnOverflow);
addBody(o, "actionOnOverflowParam", actionOnOverflowParam);
addBody(o, "askForRecordDisabling", askForRecordDisabling);
addBody(o, "description", description);
addBody(o, "maxMember", maxMember);
addBody(o, "maxWaitTime", maxWaitTime);
addBody(o, "record", record);
addBody(o, "recordDisablingDigit", recordDisablingDigit);
addBody(o, "recordDisablingLanguage", recordDisablingLanguage);
addBody(o, "soundOnHold", soundOnHold);
addBody(o, "strategy", strategy);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhOvhPabxHuntingQueue.class);
} | java | public OvhOvhPabxHuntingQueue billingAccount_easyHunting_serviceName_hunting_queue_POST(String billingAccount, String serviceName, OvhOvhPabxQueueActionEnum actionOnClosure, String actionOnClosureParam, OvhOvhPabxQueueActionEnum actionOnOverflow, String actionOnOverflowParam, Boolean askForRecordDisabling, String description, Long maxMember, Long maxWaitTime, Boolean record, OvhOvhPabxHuntingQueueRecordDisablingDigitEnum recordDisablingDigit, OvhOvhPabxHuntingQueueRecordDisablingLanguageEnum recordDisablingLanguage, Long soundOnHold, OvhOvhPabxHuntingQueueStrategyEnum strategy) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/queue";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "actionOnClosure", actionOnClosure);
addBody(o, "actionOnClosureParam", actionOnClosureParam);
addBody(o, "actionOnOverflow", actionOnOverflow);
addBody(o, "actionOnOverflowParam", actionOnOverflowParam);
addBody(o, "askForRecordDisabling", askForRecordDisabling);
addBody(o, "description", description);
addBody(o, "maxMember", maxMember);
addBody(o, "maxWaitTime", maxWaitTime);
addBody(o, "record", record);
addBody(o, "recordDisablingDigit", recordDisablingDigit);
addBody(o, "recordDisablingLanguage", recordDisablingLanguage);
addBody(o, "soundOnHold", soundOnHold);
addBody(o, "strategy", strategy);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhOvhPabxHuntingQueue.class);
} | [
"public",
"OvhOvhPabxHuntingQueue",
"billingAccount_easyHunting_serviceName_hunting_queue_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhOvhPabxQueueActionEnum",
"actionOnClosure",
",",
"String",
"actionOnClosureParam",
",",
"OvhOvhPabxQueueActionEnum"... | Create a new queue
REST: POST /telephony/{billingAccount}/easyHunting/{serviceName}/hunting/queue
@param maxMember [required] The maximum of people waiting in the queue
@param recordDisablingLanguage [required] Language of the sound played to the caller to inform that he can disable record
@param description [required] The name of the queue
@param strategy [required] The calls dispatching strategy
@param askForRecordDisabling [required] Allow the caller to disable call record by pressing a key
@param maxWaitTime [required] The maximum waiting time (in seconds) in the queue
@param recordDisablingDigit [required] Key to press to disable record
@param record [required] Enable record on calls in queue
@param soundOnHold [required] The id of the OvhPabxSound played to caller when on hold
@param actionOnOverflowParam [required] The additionnal parameter of the overflow action
@param actionOnOverflow [required] Action executed when caller enters a full queue
@param actionOnClosure [required] Action executed when there is no member in queue
@param actionOnClosureParam [required] The additionnal parameter of the on closure action
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Create",
"a",
"new",
"queue"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3187-L3206 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_screenListConditions_conditions_GET | public ArrayList<Long> billingAccount_easyHunting_serviceName_screenListConditions_conditions_GET(String billingAccount, String serviceName, OvhOvhPabxDialplanExtensionConditionScreenListTypeEnum screenListType) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/screenListConditions/conditions";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "screenListType", screenListType);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> billingAccount_easyHunting_serviceName_screenListConditions_conditions_GET(String billingAccount, String serviceName, OvhOvhPabxDialplanExtensionConditionScreenListTypeEnum screenListType) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/screenListConditions/conditions";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "screenListType", screenListType);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"billingAccount_easyHunting_serviceName_screenListConditions_conditions_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhOvhPabxDialplanExtensionConditionScreenListTypeEnum",
"screenListType",
")",
"throws",
"IOE... | Screen lists conditions checked when a call is received
REST: GET /telephony/{billingAccount}/easyHunting/{serviceName}/screenListConditions/conditions
@param screenListType [required] Filter the value of screenListType property (=)
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Screen",
"lists",
"conditions",
"checked",
"when",
"a",
"call",
"is",
"received"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3216-L3222 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_timeConditions_conditions_conditionId_DELETE | public void billingAccount_easyHunting_serviceName_timeConditions_conditions_conditionId_DELETE(String billingAccount, String serviceName, Long conditionId) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions/{conditionId}";
StringBuilder sb = path(qPath, billingAccount, serviceName, conditionId);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void billingAccount_easyHunting_serviceName_timeConditions_conditions_conditionId_DELETE(String billingAccount, String serviceName, Long conditionId) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions/{conditionId}";
StringBuilder sb = path(qPath, billingAccount, serviceName, conditionId);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_easyHunting_serviceName_timeConditions_conditions_conditionId_DELETE",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"conditionId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingA... | Delete the given condition
REST: DELETE /telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions/{conditionId}
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param conditionId [required] | [
"Delete",
"the",
"given",
"condition"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3355-L3359 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_timeConditions_conditions_GET | public ArrayList<Long> billingAccount_easyHunting_serviceName_timeConditions_conditions_GET(String billingAccount, String serviceName, OvhTimeConditionsPolicyEnum policy) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "policy", policy);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> billingAccount_easyHunting_serviceName_timeConditions_conditions_GET(String billingAccount, String serviceName, OvhTimeConditionsPolicyEnum policy) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "policy", policy);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"billingAccount_easyHunting_serviceName_timeConditions_conditions_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhTimeConditionsPolicyEnum",
"policy",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
... | Time conditions checked when a call is received
REST: GET /telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions
@param policy [required] Filter the value of policy property (=)
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Time",
"conditions",
"checked",
"when",
"a",
"call",
"is",
"received"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3369-L3375 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyHunting_serviceName_timeConditions_conditions_POST | public OvhEasyHuntingTimeConditions billingAccount_easyHunting_serviceName_timeConditions_conditions_POST(String billingAccount, String serviceName, OvhTimeConditionsPolicyEnum policy, Date timeFrom, Date timeTo, OvhOvhPabxDialplanExtensionConditionTimeWeekDayEnum weekDay) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "policy", policy);
addBody(o, "timeFrom", timeFrom);
addBody(o, "timeTo", timeTo);
addBody(o, "weekDay", weekDay);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhEasyHuntingTimeConditions.class);
} | java | public OvhEasyHuntingTimeConditions billingAccount_easyHunting_serviceName_timeConditions_conditions_POST(String billingAccount, String serviceName, OvhTimeConditionsPolicyEnum policy, Date timeFrom, Date timeTo, OvhOvhPabxDialplanExtensionConditionTimeWeekDayEnum weekDay) throws IOException {
String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "policy", policy);
addBody(o, "timeFrom", timeFrom);
addBody(o, "timeTo", timeTo);
addBody(o, "weekDay", weekDay);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhEasyHuntingTimeConditions.class);
} | [
"public",
"OvhEasyHuntingTimeConditions",
"billingAccount_easyHunting_serviceName_timeConditions_conditions_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"OvhTimeConditionsPolicyEnum",
"policy",
",",
"Date",
"timeFrom",
",",
"Date",
"timeTo",
",",
"... | Create a new time condition
REST: POST /telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions
@param timeFrom [required] The time of the day when the extension will start to be executed
@param weekDay [required] The day of the week when the extension will be executed
@param policy [required] The time condition's policy
@param timeTo [required] The time of the day when the extension will stop to be executed
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Create",
"a",
"new",
"time",
"condition"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3388-L3398 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyPabx_serviceName_hunting_agent_agentNumber_DELETE | public void billingAccount_easyPabx_serviceName_hunting_agent_agentNumber_DELETE(String billingAccount, String serviceName, String agentNumber) throws IOException {
String qPath = "/telephony/{billingAccount}/easyPabx/{serviceName}/hunting/agent/{agentNumber}";
StringBuilder sb = path(qPath, billingAccount, serviceName, agentNumber);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void billingAccount_easyPabx_serviceName_hunting_agent_agentNumber_DELETE(String billingAccount, String serviceName, String agentNumber) throws IOException {
String qPath = "/telephony/{billingAccount}/easyPabx/{serviceName}/hunting/agent/{agentNumber}";
StringBuilder sb = path(qPath, billingAccount, serviceName, agentNumber);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_easyPabx_serviceName_hunting_agent_agentNumber_DELETE",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"agentNumber",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/easyP... | Delete the agent
REST: DELETE /telephony/{billingAccount}/easyPabx/{serviceName}/hunting/agent/{agentNumber}
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param agentNumber [required] The phone number of the agent | [
"Delete",
"the",
"agent"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3572-L3576 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_easyPabx_serviceName_hunting_tones_toneUpload_POST | public OvhTask billingAccount_easyPabx_serviceName_hunting_tones_toneUpload_POST(String billingAccount, String serviceName, String documentId, OvhTonesTypeEnum type, String url) throws IOException {
String qPath = "/telephony/{billingAccount}/easyPabx/{serviceName}/hunting/tones/toneUpload";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "documentId", documentId);
addBody(o, "type", type);
addBody(o, "url", url);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask billingAccount_easyPabx_serviceName_hunting_tones_toneUpload_POST(String billingAccount, String serviceName, String documentId, OvhTonesTypeEnum type, String url) throws IOException {
String qPath = "/telephony/{billingAccount}/easyPabx/{serviceName}/hunting/tones/toneUpload";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "documentId", documentId);
addBody(o, "type", type);
addBody(o, "url", url);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"billingAccount_easyPabx_serviceName_hunting_tones_toneUpload_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"documentId",
",",
"OvhTonesTypeEnum",
"type",
",",
"String",
"url",
")",
"throws",
"IOException",
"{",
... | Upload new tone file
REST: POST /telephony/{billingAccount}/easyPabx/{serviceName}/hunting/tones/toneUpload
@param url [required] URL of the file you want to import (instead of /me/document ID)
@param documentId [required] ID of the /me/document file you want to import
@param type [required]
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Upload",
"new",
"tone",
"file"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3616-L3625 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_DELETE | public void billingAccount_DELETE(String billingAccount, String details, OvhTerminationReasonEnum reason) throws IOException {
String qPath = "/telephony/{billingAccount}";
StringBuilder sb = path(qPath, billingAccount);
query(sb, "details", details);
query(sb, "reason", reason);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void billingAccount_DELETE(String billingAccount, String details, OvhTerminationReasonEnum reason) throws IOException {
String qPath = "/telephony/{billingAccount}";
StringBuilder sb = path(qPath, billingAccount);
query(sb, "details", details);
query(sb, "reason", reason);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_DELETE",
"(",
"String",
"billingAccount",
",",
"String",
"details",
",",
"OvhTerminationReasonEnum",
"reason",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}\"",
";",
"StringBuilder",
"sb",
"="... | Ask for a billing account termination.
REST: DELETE /telephony/{billingAccount}
@param details [required] Termination reason details
@param reason [required] Termination reason
@param billingAccount [required] The name of your billingAccount | [
"Ask",
"for",
"a",
"billing",
"account",
"termination",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3689-L3695 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_changeOfBillingAccount_POST | public void billingAccount_service_serviceName_changeOfBillingAccount_POST(String billingAccount, String serviceName, String billingAccountDestination) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/changeOfBillingAccount";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "billingAccountDestination", billingAccountDestination);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_service_serviceName_changeOfBillingAccount_POST(String billingAccount, String serviceName, String billingAccountDestination) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/changeOfBillingAccount";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "billingAccountDestination", billingAccountDestination);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_service_serviceName_changeOfBillingAccount_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"billingAccountDestination",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccoun... | Move a service of billing account. Source and destination nics should be the same.
REST: POST /telephony/{billingAccount}/service/{serviceName}/changeOfBillingAccount
@param billingAccountDestination [required] Billing account destination target
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Move",
"a",
"service",
"of",
"billing",
"account",
".",
"Source",
"and",
"destination",
"nics",
"should",
"be",
"the",
"same",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3705-L3711 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_previousVoiceConsumption_GET | public ArrayList<Long> billingAccount_service_serviceName_previousVoiceConsumption_GET(String billingAccount, String serviceName, Date creationDatetime_from, Date creationDatetime_to, OvhVoiceConsumptionDestinationTypeEnum destinationType, OvhVoiceConsumptionPlanTypeEnum planType, OvhVoiceConsumptionWayTypeEnum wayType) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/previousVoiceConsumption";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
query(sb, "destinationType", destinationType);
query(sb, "planType", planType);
query(sb, "wayType", wayType);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> billingAccount_service_serviceName_previousVoiceConsumption_GET(String billingAccount, String serviceName, Date creationDatetime_from, Date creationDatetime_to, OvhVoiceConsumptionDestinationTypeEnum destinationType, OvhVoiceConsumptionPlanTypeEnum planType, OvhVoiceConsumptionWayTypeEnum wayType) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/previousVoiceConsumption";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
query(sb, "destinationType", destinationType);
query(sb, "planType", planType);
query(sb, "wayType", wayType);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"billingAccount_service_serviceName_previousVoiceConsumption_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Date",
"creationDatetime_from",
",",
"Date",
"creationDatetime_to",
",",
"OvhVoiceConsumptionDestinat... | Call delivery records of the previous month.
REST: GET /telephony/{billingAccount}/service/{serviceName}/previousVoiceConsumption
@param creationDatetime_from [required] Filter the value of creationDatetime property (>=)
@param creationDatetime_to [required] Filter the value of creationDatetime property (<=)
@param wayType [required] Filter the value of wayType property (=)
@param destinationType [required] Filter the value of destinationType property (=)
@param planType [required] Filter the value of planType property (=)
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Call",
"delivery",
"records",
"of",
"the",
"previous",
"month",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3824-L3834 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_task_GET | public ArrayList<Long> billingAccount_service_serviceName_task_GET(String billingAccount, String serviceName, String action, String serviceType, OvhTaskStatusEnum status) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/task";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "action", action);
query(sb, "serviceType", serviceType);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> billingAccount_service_serviceName_task_GET(String billingAccount, String serviceName, String action, String serviceType, OvhTaskStatusEnum status) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/task";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "action", action);
query(sb, "serviceType", serviceType);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"billingAccount_service_serviceName_task_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"action",
",",
"String",
"serviceType",
",",
"OvhTaskStatusEnum",
"status",
")",
"throws",
"IOException"... | Operations on a telephony service
REST: GET /telephony/{billingAccount}/service/{serviceName}/task
@param action [required] Filter the value of action property (=)
@param status [required] Filter the value of status property (=)
@param serviceType [required] Filter the value of serviceType property (=)
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Operations",
"on",
"a",
"telephony",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3878-L3886 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_directory_fetchEntrepriseInformations_POST | public OvhEntrepriseNumberInformationsTask billingAccount_service_serviceName_directory_fetchEntrepriseInformations_POST(String billingAccount, String serviceName, String entrepriseNumber) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/directory/fetchEntrepriseInformations";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "entrepriseNumber", entrepriseNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhEntrepriseNumberInformationsTask.class);
} | java | public OvhEntrepriseNumberInformationsTask billingAccount_service_serviceName_directory_fetchEntrepriseInformations_POST(String billingAccount, String serviceName, String entrepriseNumber) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/directory/fetchEntrepriseInformations";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "entrepriseNumber", entrepriseNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhEntrepriseNumberInformationsTask.class);
} | [
"public",
"OvhEntrepriseNumberInformationsTask",
"billingAccount_service_serviceName_directory_fetchEntrepriseInformations_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"entrepriseNumber",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
... | Get company entreprise informations by providing entreprise number
REST: POST /telephony/{billingAccount}/service/{serviceName}/directory/fetchEntrepriseInformations
@param entrepriseNumber [required] Entreprise number to fetch informations from
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Get",
"company",
"entreprise",
"informations",
"by",
"providing",
"entreprise",
"number"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L3978-L3985 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_directory_getWayTypes_GET | public ArrayList<OvhDirectoryWayType> billingAccount_service_serviceName_directory_getWayTypes_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/directory/getWayTypes";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t14);
} | java | public ArrayList<OvhDirectoryWayType> billingAccount_service_serviceName_directory_getWayTypes_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/directory/getWayTypes";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t14);
} | [
"public",
"ArrayList",
"<",
"OvhDirectoryWayType",
">",
"billingAccount_service_serviceName_directory_getWayTypes_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/servi... | Get all the way types availables
REST: GET /telephony/{billingAccount}/service/{serviceName}/directory/getWayTypes
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Get",
"all",
"the",
"way",
"types",
"availables"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4022-L4027 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_offerChanges_GET | public ArrayList<OvhLineOffer> billingAccount_service_serviceName_offerChanges_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/offerChanges";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t15);
} | java | public ArrayList<OvhLineOffer> billingAccount_service_serviceName_offerChanges_GET(String billingAccount, String serviceName) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/offerChanges";
StringBuilder sb = path(qPath, billingAccount, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t15);
} | [
"public",
"ArrayList",
"<",
"OvhLineOffer",
">",
"billingAccount_service_serviceName_offerChanges_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/service/{serviceName}... | List all available offer changes compatibilities
REST: GET /telephony/{billingAccount}/service/{serviceName}/offerChanges
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"List",
"all",
"available",
"offer",
"changes",
"compatibilities"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4037-L4042 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_repaymentConsumption_GET | public ArrayList<Long> billingAccount_service_serviceName_repaymentConsumption_GET(String billingAccount, String serviceName, Date creationDatetime_from, Date creationDatetime_to) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/repaymentConsumption";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> billingAccount_service_serviceName_repaymentConsumption_GET(String billingAccount, String serviceName, Date creationDatetime_from, Date creationDatetime_to) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/repaymentConsumption";
StringBuilder sb = path(qPath, billingAccount, serviceName);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"billingAccount_service_serviceName_repaymentConsumption_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Date",
"creationDatetime_from",
",",
"Date",
"creationDatetime_to",
")",
"throws",
"IOException",
"{"... | Call which could be repayable
REST: GET /telephony/{billingAccount}/service/{serviceName}/repaymentConsumption
@param creationDatetime_to [required] Filter the value of creationDatetime property (<=)
@param creationDatetime_from [required] Filter the value of creationDatetime property (>=)
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Call",
"which",
"could",
"be",
"repayable"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4104-L4111 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_service_serviceName_offerChange_POST | public void billingAccount_service_serviceName_offerChange_POST(String billingAccount, String serviceName, String offer) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/offerChange";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "offer", offer);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_service_serviceName_offerChange_POST(String billingAccount, String serviceName, String offer) throws IOException {
String qPath = "/telephony/{billingAccount}/service/{serviceName}/offerChange";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "offer", offer);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_service_serviceName_offerChange_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"offer",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/service/{serviceName}/offerC... | Add a new offer change
REST: POST /telephony/{billingAccount}/service/{serviceName}/offerChange
@param offer [required] The future offer
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Add",
"a",
"new",
"offer",
"change"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4135-L4141 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_fax_serviceName_campaigns_POST | public OvhFaxCampaign billingAccount_fax_serviceName_campaigns_POST(String billingAccount, String serviceName, String documentId, OvhFaxQualityEnum faxQuality, String name, String recipientsDocId, String[] recipientsList, OvhFaxCampaignRecipientsTypeEnum recipientsType, Date sendDate, OvhFaxCampaignSendTypeEnum sendType) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/campaigns";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "documentId", documentId);
addBody(o, "faxQuality", faxQuality);
addBody(o, "name", name);
addBody(o, "recipientsDocId", recipientsDocId);
addBody(o, "recipientsList", recipientsList);
addBody(o, "recipientsType", recipientsType);
addBody(o, "sendDate", sendDate);
addBody(o, "sendType", sendType);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhFaxCampaign.class);
} | java | public OvhFaxCampaign billingAccount_fax_serviceName_campaigns_POST(String billingAccount, String serviceName, String documentId, OvhFaxQualityEnum faxQuality, String name, String recipientsDocId, String[] recipientsList, OvhFaxCampaignRecipientsTypeEnum recipientsType, Date sendDate, OvhFaxCampaignSendTypeEnum sendType) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/campaigns";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "documentId", documentId);
addBody(o, "faxQuality", faxQuality);
addBody(o, "name", name);
addBody(o, "recipientsDocId", recipientsDocId);
addBody(o, "recipientsList", recipientsList);
addBody(o, "recipientsType", recipientsType);
addBody(o, "sendDate", sendDate);
addBody(o, "sendType", sendType);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhFaxCampaign.class);
} | [
"public",
"OvhFaxCampaign",
"billingAccount_fax_serviceName_campaigns_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"documentId",
",",
"OvhFaxQualityEnum",
"faxQuality",
",",
"String",
"name",
",",
"String",
"recipientsDocId",
",",
"... | Create a new fax campaign
REST: POST /telephony/{billingAccount}/fax/{serviceName}/campaigns
@param recipientsDocId [required] If recipientsType is set to document, the id of the document containing the recipients phone numbers
@param name [required] The name of the fax campaign
@param recipientsList [required] If recipientsType is set to list, the list of recipients phone numbers
@param recipientsType [required] Method to set the campaign recipient
@param faxQuality [required] The quality of the fax you want to send
@param documentId [required] The id of the /me/document pdf you want to send
@param sendDate [required] Sending date of the campaign (when sendType is scheduled)
@param sendType [required] Sending type of the campaign
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Create",
"a",
"new",
"fax",
"campaign"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4268-L4282 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_fax_serviceName_campaigns_id_detail_GET | public OvhFaxCampaignDetail billingAccount_fax_serviceName_campaigns_id_detail_GET(String billingAccount, String serviceName, Long id) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/campaigns/{id}/detail";
StringBuilder sb = path(qPath, billingAccount, serviceName, id);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhFaxCampaignDetail.class);
} | java | public OvhFaxCampaignDetail billingAccount_fax_serviceName_campaigns_id_detail_GET(String billingAccount, String serviceName, Long id) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/campaigns/{id}/detail";
StringBuilder sb = path(qPath, billingAccount, serviceName, id);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhFaxCampaignDetail.class);
} | [
"public",
"OvhFaxCampaignDetail",
"billingAccount_fax_serviceName_campaigns_id_detail_GET",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Long",
"id",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/fax/{serviceNa... | Detail of the fax recipients by status
REST: GET /telephony/{billingAccount}/fax/{serviceName}/campaigns/{id}/detail
@param billingAccount [required] The name of your billingAccount
@param serviceName [required]
@param id [required] Id of the object | [
"Detail",
"of",
"the",
"fax",
"recipients",
"by",
"status"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4335-L4340 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_fax_serviceName_settings_sendFax_POST | public OvhTask billingAccount_fax_serviceName_settings_sendFax_POST(String billingAccount, String serviceName, Date dateSchedule, String pdfUrl, String[] recipients) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/settings/sendFax";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "dateSchedule", dateSchedule);
addBody(o, "pdfUrl", pdfUrl);
addBody(o, "recipients", recipients);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask billingAccount_fax_serviceName_settings_sendFax_POST(String billingAccount, String serviceName, Date dateSchedule, String pdfUrl, String[] recipients) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/settings/sendFax";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "dateSchedule", dateSchedule);
addBody(o, "pdfUrl", pdfUrl);
addBody(o, "recipients", recipients);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"billingAccount_fax_serviceName_settings_sendFax_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Date",
"dateSchedule",
",",
"String",
"pdfUrl",
",",
"String",
"[",
"]",
"recipients",
")",
"throws",
"IOException",
"{",
... | Send a fax
REST: POST /telephony/{billingAccount}/fax/{serviceName}/settings/sendFax
@param recipients [required] List of recipients of your fax
@param pdfUrl [required] Url of the pdf document you want to send
@param dateSchedule [required] If you want to schedule your fax later, you can specify a date
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Send",
"a",
"fax"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4366-L4375 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_fax_serviceName_screenLists_POST | public OvhFaxScreen billingAccount_fax_serviceName_screenLists_POST(String billingAccount, String serviceName, String[] blacklistedNumbers, String[] blacklistedTSI, OvhFaxScreenListTypeEnum filteringList, String[] whitelistedNumbers, String[] whitelistedTSI) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/screenLists";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "blacklistedNumbers", blacklistedNumbers);
addBody(o, "blacklistedTSI", blacklistedTSI);
addBody(o, "filteringList", filteringList);
addBody(o, "whitelistedNumbers", whitelistedNumbers);
addBody(o, "whitelistedTSI", whitelistedTSI);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhFaxScreen.class);
} | java | public OvhFaxScreen billingAccount_fax_serviceName_screenLists_POST(String billingAccount, String serviceName, String[] blacklistedNumbers, String[] blacklistedTSI, OvhFaxScreenListTypeEnum filteringList, String[] whitelistedNumbers, String[] whitelistedTSI) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/screenLists";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "blacklistedNumbers", blacklistedNumbers);
addBody(o, "blacklistedTSI", blacklistedTSI);
addBody(o, "filteringList", filteringList);
addBody(o, "whitelistedNumbers", whitelistedNumbers);
addBody(o, "whitelistedTSI", whitelistedTSI);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhFaxScreen.class);
} | [
"public",
"OvhFaxScreen",
"billingAccount_fax_serviceName_screenLists_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"String",
"[",
"]",
"blacklistedNumbers",
",",
"String",
"[",
"]",
"blacklistedTSI",
",",
"OvhFaxScreenListTypeEnum",
"filteringL... | Create a new fax ScreenLists
REST: POST /telephony/{billingAccount}/fax/{serviceName}/screenLists
@param whitelistedNumbers [required] List of numbers allowed to send a fax
@param whitelistedTSI [required] List of logins (TSI or ID) allowed to send a fax
@param blacklistedNumbers [required] List of numbers not allowed to send a fax
@param blacklistedTSI [required] List of logins (TSI or ID) not allowed to send a fax
@param filteringList [required] Which list is active (blackist, whitelist or none)
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Create",
"a",
"new",
"fax",
"ScreenLists"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4462-L4473 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_fax_serviceName_screenLists_reset_POST | public void billingAccount_fax_serviceName_screenLists_reset_POST(String billingAccount, String serviceName, Boolean blacklistedNumbers, Boolean blacklistedTSI, Boolean whitelistedNumbers, Boolean whitelistedTSI) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/screenLists/reset";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "blacklistedNumbers", blacklistedNumbers);
addBody(o, "blacklistedTSI", blacklistedTSI);
addBody(o, "whitelistedNumbers", whitelistedNumbers);
addBody(o, "whitelistedTSI", whitelistedTSI);
exec(qPath, "POST", sb.toString(), o);
} | java | public void billingAccount_fax_serviceName_screenLists_reset_POST(String billingAccount, String serviceName, Boolean blacklistedNumbers, Boolean blacklistedTSI, Boolean whitelistedNumbers, Boolean whitelistedTSI) throws IOException {
String qPath = "/telephony/{billingAccount}/fax/{serviceName}/screenLists/reset";
StringBuilder sb = path(qPath, billingAccount, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "blacklistedNumbers", blacklistedNumbers);
addBody(o, "blacklistedTSI", blacklistedTSI);
addBody(o, "whitelistedNumbers", whitelistedNumbers);
addBody(o, "whitelistedTSI", whitelistedTSI);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"billingAccount_fax_serviceName_screenLists_reset_POST",
"(",
"String",
"billingAccount",
",",
"String",
"serviceName",
",",
"Boolean",
"blacklistedNumbers",
",",
"Boolean",
"blacklistedTSI",
",",
"Boolean",
"whitelistedNumbers",
",",
"Boolean",
"whitelisted... | Reset a specifical fax screenList
REST: POST /telephony/{billingAccount}/fax/{serviceName}/screenLists/reset
@param whitelistedTSI [required] List of white login (TSI or ID)
@param blacklistedTSI [required] List of black login (TSI or ID)
@param blacklistedNumbers [required] List of black numbers
@param whitelistedNumbers [required] List of white numbers
@param billingAccount [required] The name of your billingAccount
@param serviceName [required] | [
"Reset",
"a",
"specifical",
"fax",
"screenList"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4499-L4508 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_abbreviatedNumber_abbreviatedNumber_DELETE | public void billingAccount_abbreviatedNumber_abbreviatedNumber_DELETE(String billingAccount, Long abbreviatedNumber) throws IOException {
String qPath = "/telephony/{billingAccount}/abbreviatedNumber/{abbreviatedNumber}";
StringBuilder sb = path(qPath, billingAccount, abbreviatedNumber);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void billingAccount_abbreviatedNumber_abbreviatedNumber_DELETE(String billingAccount, Long abbreviatedNumber) throws IOException {
String qPath = "/telephony/{billingAccount}/abbreviatedNumber/{abbreviatedNumber}";
StringBuilder sb = path(qPath, billingAccount, abbreviatedNumber);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"billingAccount_abbreviatedNumber_abbreviatedNumber_DELETE",
"(",
"String",
"billingAccount",
",",
"Long",
"abbreviatedNumber",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/telephony/{billingAccount}/abbreviatedNumber/{abbreviatedNumber}\"",
";",... | Delete the given abbreviated number
REST: DELETE /telephony/{billingAccount}/abbreviatedNumber/{abbreviatedNumber}
@param billingAccount [required] The name of your billingAccount
@param abbreviatedNumber [required] The abbreviated number which must start with "7" and must have a length of 3 or 4 digits | [
"Delete",
"the",
"given",
"abbreviated",
"number"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4573-L4577 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java | ApiOvhTelephony.billingAccount_abbreviatedNumber_POST | public OvhAbbreviatedNumberGroup billingAccount_abbreviatedNumber_POST(String billingAccount, Long abbreviatedNumber, String destinationNumber, String name, String surname) throws IOException {
String qPath = "/telephony/{billingAccount}/abbreviatedNumber";
StringBuilder sb = path(qPath, billingAccount);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "abbreviatedNumber", abbreviatedNumber);
addBody(o, "destinationNumber", destinationNumber);
addBody(o, "name", name);
addBody(o, "surname", surname);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhAbbreviatedNumberGroup.class);
} | java | public OvhAbbreviatedNumberGroup billingAccount_abbreviatedNumber_POST(String billingAccount, Long abbreviatedNumber, String destinationNumber, String name, String surname) throws IOException {
String qPath = "/telephony/{billingAccount}/abbreviatedNumber";
StringBuilder sb = path(qPath, billingAccount);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "abbreviatedNumber", abbreviatedNumber);
addBody(o, "destinationNumber", destinationNumber);
addBody(o, "name", name);
addBody(o, "surname", surname);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhAbbreviatedNumberGroup.class);
} | [
"public",
"OvhAbbreviatedNumberGroup",
"billingAccount_abbreviatedNumber_POST",
"(",
"String",
"billingAccount",
",",
"Long",
"abbreviatedNumber",
",",
"String",
"destinationNumber",
",",
"String",
"name",
",",
"String",
"surname",
")",
"throws",
"IOException",
"{",
"Stri... | Create a new abbreviated number for the billing account
REST: POST /telephony/{billingAccount}/abbreviatedNumber
@param name [required]
@param surname [required]
@param abbreviatedNumber [required] The abbreviated number which must start with "7" and must have a length of 3 or 4 digits
@param destinationNumber [required] The destination of the abbreviated number
@param billingAccount [required] The name of your billingAccount | [
"Create",
"a",
"new",
"abbreviated",
"number",
"for",
"the",
"billing",
"account"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-telephony/src/main/java/net/minidev/ovh/api/ApiOvhTelephony.java#L4602-L4612 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.