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-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java | ApiOvhEmaildomain.domain_recommendedDNSRecords_GET | public ArrayList<OvhRecord> domain_recommendedDNSRecords_GET(String domain) throws IOException {
String qPath = "/email/domain/{domain}/recommendedDNSRecords";
StringBuilder sb = path(qPath, domain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhRecord> domain_recommendedDNSRecords_GET(String domain) throws IOException {
String qPath = "/email/domain/{domain}/recommendedDNSRecords";
StringBuilder sb = path(qPath, domain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhRecord",
">",
"domain_recommendedDNSRecords_GET",
"(",
"String",
"domain",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/email/domain/{domain}/recommendedDNSRecords\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath... | Recommended domain DNS records
REST: GET /email/domain/{domain}/recommendedDNSRecords
@param domain [required] Name of your domain name | [
"Recommended",
"domain",
"DNS",
"records"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1414-L1419 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java | ApiOvhEmaildomain.domain_mailingList_name_changeOptions_POST | public OvhTaskMl domain_mailingList_name_changeOptions_POST(String domain, String name, OvhDomainMlOptionsStruct options) throws IOException {
String qPath = "/email/domain/{domain}/mailingList/{name}/changeOptions";
StringBuilder sb = path(qPath, domain, name);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "options", options);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTaskMl.class);
} | java | public OvhTaskMl domain_mailingList_name_changeOptions_POST(String domain, String name, OvhDomainMlOptionsStruct options) throws IOException {
String qPath = "/email/domain/{domain}/mailingList/{name}/changeOptions";
StringBuilder sb = path(qPath, domain, name);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "options", options);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTaskMl.class);
} | [
"public",
"OvhTaskMl",
"domain_mailingList_name_changeOptions_POST",
"(",
"String",
"domain",
",",
"String",
"name",
",",
"OvhDomainMlOptionsStruct",
"options",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/email/domain/{domain}/mailingList/{name}/changeOptions... | Change mailing list options
REST: POST /email/domain/{domain}/mailingList/{name}/changeOptions
@param options [required] Options of mailing list
@param domain [required] Name of your domain name
@param name [required] Name of mailing list | [
"Change",
"mailing",
"list",
"options"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1430-L1437 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java | ApiOvhEmaildomain.domain_mailingList_name_DELETE | public OvhTaskMl domain_mailingList_name_DELETE(String domain, String name) throws IOException {
String qPath = "/email/domain/{domain}/mailingList/{name}";
StringBuilder sb = path(qPath, domain, name);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, OvhTaskMl.class);
} | java | public OvhTaskMl domain_mailingList_name_DELETE(String domain, String name) throws IOException {
String qPath = "/email/domain/{domain}/mailingList/{name}";
StringBuilder sb = path(qPath, domain, name);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, OvhTaskMl.class);
} | [
"public",
"OvhTaskMl",
"domain_mailingList_name_DELETE",
"(",
"String",
"domain",
",",
"String",
"name",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/email/domain/{domain}/mailingList/{name}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
... | Delete existing Mailing list
REST: DELETE /email/domain/{domain}/mailingList/{name}
@param domain [required] Name of your domain name
@param name [required] Name of mailing list | [
"Delete",
"existing",
"Mailing",
"list"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1554-L1559 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java | ApiOvhEmaildomain.domain_mailingList_name_subscriber_POST | public OvhTaskMl domain_mailingList_name_subscriber_POST(String domain, String name, String email) throws IOException {
String qPath = "/email/domain/{domain}/mailingList/{name}/subscriber";
StringBuilder sb = path(qPath, domain, name);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "email", email);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTaskMl.class);
} | java | public OvhTaskMl domain_mailingList_name_subscriber_POST(String domain, String name, String email) throws IOException {
String qPath = "/email/domain/{domain}/mailingList/{name}/subscriber";
StringBuilder sb = path(qPath, domain, name);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "email", email);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTaskMl.class);
} | [
"public",
"OvhTaskMl",
"domain_mailingList_name_subscriber_POST",
"(",
"String",
"domain",
",",
"String",
"name",
",",
"String",
"email",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/email/domain/{domain}/mailingList/{name}/subscriber\"",
";",
"StringBuild... | Add subscriber to mailing list
REST: POST /email/domain/{domain}/mailingList/{name}/subscriber
@param email [required] Email of subscriber
@param domain [required] Name of your domain name
@param name [required] Name of mailing list | [
"Add",
"subscriber",
"to",
"mailing",
"list"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1585-L1592 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java | ApiOvhEmaildomain.domain_mailingList_POST | public OvhTaskMl domain_mailingList_POST(String domain, OvhDomainMlLanguageEnum language, String name, OvhDomainMlOptionsStruct options, String ownerEmail, String replyTo) throws IOException {
String qPath = "/email/domain/{domain}/mailingList";
StringBuilder sb = path(qPath, domain);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "language", language);
addBody(o, "name", name);
addBody(o, "options", options);
addBody(o, "ownerEmail", ownerEmail);
addBody(o, "replyTo", replyTo);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTaskMl.class);
} | java | public OvhTaskMl domain_mailingList_POST(String domain, OvhDomainMlLanguageEnum language, String name, OvhDomainMlOptionsStruct options, String ownerEmail, String replyTo) throws IOException {
String qPath = "/email/domain/{domain}/mailingList";
StringBuilder sb = path(qPath, domain);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "language", language);
addBody(o, "name", name);
addBody(o, "options", options);
addBody(o, "ownerEmail", ownerEmail);
addBody(o, "replyTo", replyTo);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTaskMl.class);
} | [
"public",
"OvhTaskMl",
"domain_mailingList_POST",
"(",
"String",
"domain",
",",
"OvhDomainMlLanguageEnum",
"language",
",",
"String",
"name",
",",
"OvhDomainMlOptionsStruct",
"options",
",",
"String",
"ownerEmail",
",",
"String",
"replyTo",
")",
"throws",
"IOException",... | Create new mailingList
REST: POST /email/domain/{domain}/mailingList
@param replyTo [required] Email to reply of mailing list
@param options [required] Options of mailing list
@param ownerEmail [required] Owner Email
@param language [required] Language of mailing list
@param name [required] Mailing list name
@param domain [required] Name of your domain name | [
"Create",
"new",
"mailingList"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-emaildomain/src/main/java/net/minidev/ovh/api/ApiOvhEmaildomain.java#L1650-L1661 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-deskaas/src/main/java/net/minidev/ovh/api/ApiOvhDeskaas.java | ApiOvhDeskaas.serviceName_upgrade_POST | public OvhTask serviceName_upgrade_POST(String serviceName, String newReference, String planCode) throws IOException {
String qPath = "/deskaas/{serviceName}/upgrade";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "newReference", newReference);
addBody(o, "planCode", planCode);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_upgrade_POST(String serviceName, String newReference, String planCode) throws IOException {
String qPath = "/deskaas/{serviceName}/upgrade";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "newReference", newReference);
addBody(o, "planCode", planCode);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_upgrade_POST",
"(",
"String",
"serviceName",
",",
"String",
"newReference",
",",
"String",
"planCode",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/deskaas/{serviceName}/upgrade\"",
";",
"StringBuilder",
"sb",
"=",
"... | Upgrading the Desktop As A Service to another profile. The Virtual Desktop will not be available during upgrade and has to be restarted. You cannot downgrade a Virtual Desktop
REST: POST /deskaas/{serviceName}/upgrade
@param planCode [required] New plan of Desktop As A Service
@param newReference [required] New reference of Desktop As A Service
@param serviceName [required] Domain of the service | [
"Upgrading",
"the",
"Desktop",
"As",
"A",
"Service",
"to",
"another",
"profile",
".",
"The",
"Virtual",
"Desktop",
"will",
"not",
"be",
"available",
"during",
"upgrade",
"and",
"has",
"to",
"be",
"restarted",
".",
"You",
"cannot",
"downgrade",
"a",
"Virtual"... | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-deskaas/src/main/java/net/minidev/ovh/api/ApiOvhDeskaas.java#L124-L132 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-deskaas/src/main/java/net/minidev/ovh/api/ApiOvhDeskaas.java | ApiOvhDeskaas.serviceName_changeContact_POST | public ArrayList<Long> serviceName_changeContact_POST(String serviceName, String contactAdmin, String contactBilling, String contactTech) throws IOException {
String qPath = "/deskaas/{serviceName}/changeContact";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactAdmin", contactAdmin);
addBody(o, "contactBilling", contactBilling);
addBody(o, "contactTech", contactTech);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t1);
} | java | public ArrayList<Long> serviceName_changeContact_POST(String serviceName, String contactAdmin, String contactBilling, String contactTech) throws IOException {
String qPath = "/deskaas/{serviceName}/changeContact";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactAdmin", contactAdmin);
addBody(o, "contactBilling", contactBilling);
addBody(o, "contactTech", contactTech);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"serviceName_changeContact_POST",
"(",
"String",
"serviceName",
",",
"String",
"contactAdmin",
",",
"String",
"contactBilling",
",",
"String",
"contactTech",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/desk... | Launch a contact change procedure
REST: POST /deskaas/{serviceName}/changeContact
@param contactAdmin The contact to set as admin contact
@param contactTech The contact to set as tech contact
@param contactBilling The contact to set as billing contact
@param serviceName [required] Domain of the service | [
"Launch",
"a",
"contact",
"change",
"procedure"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-deskaas/src/main/java/net/minidev/ovh/api/ApiOvhDeskaas.java#L301-L310 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-core/src/main/java/net/minidev/ovh/api/ApiOvhAuth.java | ApiOvhAuth.currentCredential_GET | public OvhCredential currentCredential_GET() throws IOException {
String qPath = "/auth/currentCredential";
StringBuilder sb = path(qPath);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhCredential.class);
} | java | public OvhCredential currentCredential_GET() throws IOException {
String qPath = "/auth/currentCredential";
StringBuilder sb = path(qPath);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhCredential.class);
} | [
"public",
"OvhCredential",
"currentCredential_GET",
"(",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/auth/currentCredential\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
")",
";",
"String",
"resp",
"=",
"exec",
"(",
"qPath",
",",
... | Get the current credential details
REST: GET /auth/currentCredential | [
"Get",
"the",
"current",
"credential",
"details"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-core/src/main/java/net/minidev/ovh/api/ApiOvhAuth.java#L25-L30 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-core/src/main/java/net/minidev/ovh/api/ApiOvhAuth.java | ApiOvhAuth.time_GET | public Long time_GET() throws IOException {
String qPath = "/auth/time";
StringBuilder sb = path(qPath);
String resp = execN(qPath, "GET", sb.toString(), null);
return convertTo(resp, Long.class);
} | java | public Long time_GET() throws IOException {
String qPath = "/auth/time";
StringBuilder sb = path(qPath);
String resp = execN(qPath, "GET", sb.toString(), null);
return convertTo(resp, Long.class);
} | [
"public",
"Long",
"time_GET",
"(",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/auth/time\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
")",
";",
"String",
"resp",
"=",
"execN",
"(",
"qPath",
",",
"\"GET\"",
",",
"sb",
".",... | Get the current time of the OVH servers, since UNIX epoch
REST: GET /auth/time | [
"Get",
"the",
"current",
"time",
"of",
"the",
"OVH",
"servers",
"since",
"UNIX",
"epoch"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-core/src/main/java/net/minidev/ovh/api/ApiOvhAuth.java#L48-L53 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-core/src/main/java/net/minidev/ovh/api/ApiOvhAuth.java | ApiOvhAuth.credential_POST | public net.minidev.ovh.api.auth.OvhCredential credential_POST(OvhAccessRule[] accessRules, String redirection) throws IOException {
String qPath = "/auth/credential";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "accessRules", accessRules);
addBody(o, "redirection", redirection);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, net.minidev.ovh.api.auth.OvhCredential.class);
} | java | public net.minidev.ovh.api.auth.OvhCredential credential_POST(OvhAccessRule[] accessRules, String redirection) throws IOException {
String qPath = "/auth/credential";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "accessRules", accessRules);
addBody(o, "redirection", redirection);
String resp = execN(qPath, "POST", sb.toString(), o);
return convertTo(resp, net.minidev.ovh.api.auth.OvhCredential.class);
} | [
"public",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"auth",
".",
"OvhCredential",
"credential_POST",
"(",
"OvhAccessRule",
"[",
"]",
"accessRules",
",",
"String",
"redirection",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/auth/cred... | Request a new credential for your application
REST: POST /auth/credential
@param accessRules [required] Access required for your application
@param redirection [required] Where you want to redirect the user after sucessfull authentication | [
"Request",
"a",
"new",
"credential",
"for",
"your",
"application"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-core/src/main/java/net/minidev/ovh/api/ApiOvhAuth.java#L62-L70 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_afnicCorporationTrademarkInformation_afnicCorporationTrademarkId_GET | public OvhAfnicCorporationTrademarkContact data_afnicCorporationTrademarkInformation_afnicCorporationTrademarkId_GET(Long afnicCorporationTrademarkId) throws IOException {
String qPath = "/domain/data/afnicCorporationTrademarkInformation/{afnicCorporationTrademarkId}";
StringBuilder sb = path(qPath, afnicCorporationTrademarkId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhAfnicCorporationTrademarkContact.class);
} | java | public OvhAfnicCorporationTrademarkContact data_afnicCorporationTrademarkInformation_afnicCorporationTrademarkId_GET(Long afnicCorporationTrademarkId) throws IOException {
String qPath = "/domain/data/afnicCorporationTrademarkInformation/{afnicCorporationTrademarkId}";
StringBuilder sb = path(qPath, afnicCorporationTrademarkId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhAfnicCorporationTrademarkContact.class);
} | [
"public",
"OvhAfnicCorporationTrademarkContact",
"data_afnicCorporationTrademarkInformation_afnicCorporationTrademarkId_GET",
"(",
"Long",
"afnicCorporationTrademarkId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/afnicCorporationTrademarkInformation/{afnicCo... | Retrieve a corporation trademark information according to Afnic
REST: GET /domain/data/afnicCorporationTrademarkInformation/{afnicCorporationTrademarkId}
@param afnicCorporationTrademarkId [required] Corporation Inpi Information ID | [
"Retrieve",
"a",
"corporation",
"trademark",
"information",
"according",
"to",
"Afnic"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L67-L72 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_afnicCorporationTrademarkInformation_POST | public OvhAfnicCorporationTrademarkContact data_afnicCorporationTrademarkInformation_POST(Long contactId, String inpiNumber, String inpiTrademarkOwner) throws IOException {
String qPath = "/domain/data/afnicCorporationTrademarkInformation";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactId", contactId);
addBody(o, "inpiNumber", inpiNumber);
addBody(o, "inpiTrademarkOwner", inpiTrademarkOwner);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhAfnicCorporationTrademarkContact.class);
} | java | public OvhAfnicCorporationTrademarkContact data_afnicCorporationTrademarkInformation_POST(Long contactId, String inpiNumber, String inpiTrademarkOwner) throws IOException {
String qPath = "/domain/data/afnicCorporationTrademarkInformation";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactId", contactId);
addBody(o, "inpiNumber", inpiNumber);
addBody(o, "inpiTrademarkOwner", inpiTrademarkOwner);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhAfnicCorporationTrademarkContact.class);
} | [
"public",
"OvhAfnicCorporationTrademarkContact",
"data_afnicCorporationTrademarkInformation_POST",
"(",
"Long",
"contactId",
",",
"String",
"inpiNumber",
",",
"String",
"inpiTrademarkOwner",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/afnicCorpora... | Post a new corporation trademark information according to Afnic
REST: POST /domain/data/afnicCorporationTrademarkInformation
@param inpiNumber [required] Number of the Inpi declaration
@param inpiTrademarkOwner [required] Owner of the trademark
@param contactId [required] Contact ID related to the Inpi additional information | [
"Post",
"a",
"new",
"corporation",
"trademark",
"information",
"according",
"to",
"Afnic"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L95-L104 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_smd_GET | public ArrayList<Long> data_smd_GET(String protectedLabels_label) throws IOException {
String qPath = "/domain/data/smd";
StringBuilder sb = path(qPath);
query(sb, "protectedLabels.label", protectedLabels_label);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<Long> data_smd_GET(String protectedLabels_label) throws IOException {
String qPath = "/domain/data/smd";
StringBuilder sb = path(qPath);
query(sb, "protectedLabels.label", protectedLabels_label);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"data_smd_GET",
"(",
"String",
"protectedLabels_label",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/smd\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
")",
";",
"query",
"(",
"... | List all your SMD files
REST: GET /domain/data/smd
@param protectedLabels_label [required] Filter the value of protectedLabels.label property (=) | [
"List",
"all",
"your",
"SMD",
"files"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L112-L118 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_smd_smdId_GET | public OvhSmd data_smd_smdId_GET(Long smdId) throws IOException {
String qPath = "/domain/data/smd/{smdId}";
StringBuilder sb = path(qPath, smdId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhSmd.class);
} | java | public OvhSmd data_smd_smdId_GET(Long smdId) throws IOException {
String qPath = "/domain/data/smd/{smdId}";
StringBuilder sb = path(qPath, smdId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhSmd.class);
} | [
"public",
"OvhSmd",
"data_smd_smdId_GET",
"(",
"Long",
"smdId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/smd/{smdId}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"smdId",
")",
";",
"String",
"resp",
"=",
"ex... | Retrieve information about a SMD file
REST: GET /domain/data/smd/{smdId}
@param smdId [required] SMD ID | [
"Retrieve",
"information",
"about",
"a",
"SMD",
"file"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L141-L146 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_smd_smdId_PUT | public OvhSmd data_smd_smdId_PUT(Long smdId, String data) throws IOException {
String qPath = "/domain/data/smd/{smdId}";
StringBuilder sb = path(qPath, smdId);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "data", data);
String resp = exec(qPath, "PUT", sb.toString(), o);
return convertTo(resp, OvhSmd.class);
} | java | public OvhSmd data_smd_smdId_PUT(Long smdId, String data) throws IOException {
String qPath = "/domain/data/smd/{smdId}";
StringBuilder sb = path(qPath, smdId);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "data", data);
String resp = exec(qPath, "PUT", sb.toString(), o);
return convertTo(resp, OvhSmd.class);
} | [
"public",
"OvhSmd",
"data_smd_smdId_PUT",
"(",
"Long",
"smdId",
",",
"String",
"data",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/smd/{smdId}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"smdId",
")",
";",
"Ha... | Modify an existing SMD file
REST: PUT /domain/data/smd/{smdId}
@param smdId [required] SMD ID
@param data [required] SMD content file | [
"Modify",
"an",
"existing",
"SMD",
"file"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L155-L162 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_smd_smdId_DELETE | public void data_smd_smdId_DELETE(Long smdId) throws IOException {
String qPath = "/domain/data/smd/{smdId}";
StringBuilder sb = path(qPath, smdId);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void data_smd_smdId_DELETE(Long smdId) throws IOException {
String qPath = "/domain/data/smd/{smdId}";
StringBuilder sb = path(qPath, smdId);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"data_smd_smdId_DELETE",
"(",
"Long",
"smdId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/smd/{smdId}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"smdId",
")",
";",
"exec",
"(",
"qPath",
","... | Delete a SMD file
REST: DELETE /domain/data/smd/{smdId}
@param smdId [required] SMD ID | [
"Delete",
"a",
"SMD",
"file"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L170-L174 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_afnicAssociationInformation_POST | public OvhAssociationContact data_afnicAssociationInformation_POST(Long contactId, Date declarationDate, Date publicationDate, String publicationNumber, String publicationPageNumber) throws IOException {
String qPath = "/domain/data/afnicAssociationInformation";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactId", contactId);
addBody(o, "declarationDate", declarationDate);
addBody(o, "publicationDate", publicationDate);
addBody(o, "publicationNumber", publicationNumber);
addBody(o, "publicationPageNumber", publicationPageNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhAssociationContact.class);
} | java | public OvhAssociationContact data_afnicAssociationInformation_POST(Long contactId, Date declarationDate, Date publicationDate, String publicationNumber, String publicationPageNumber) throws IOException {
String qPath = "/domain/data/afnicAssociationInformation";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactId", contactId);
addBody(o, "declarationDate", declarationDate);
addBody(o, "publicationDate", publicationDate);
addBody(o, "publicationNumber", publicationNumber);
addBody(o, "publicationPageNumber", publicationPageNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhAssociationContact.class);
} | [
"public",
"OvhAssociationContact",
"data_afnicAssociationInformation_POST",
"(",
"Long",
"contactId",
",",
"Date",
"declarationDate",
",",
"Date",
"publicationDate",
",",
"String",
"publicationNumber",
",",
"String",
"publicationPageNumber",
")",
"throws",
"IOException",
"{... | Post a new association information according to Afnic
REST: POST /domain/data/afnicAssociationInformation
@param declarationDate [required] Date of the declaration of the association
@param publicationDate [required] Date of the publication of the declaration of the association
@param publicationNumber [required] Number of the publication of the declaration of the association
@param publicationPageNumber [required] Page number of the publication of the declaration of the association
@param contactId [required] Contact ID related to the association contact information | [
"Post",
"a",
"new",
"association",
"information",
"according",
"to",
"Afnic"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L198-L209 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_afnicAssociationInformation_associationInformationId_GET | public OvhAssociationContact data_afnicAssociationInformation_associationInformationId_GET(Long associationInformationId) throws IOException {
String qPath = "/domain/data/afnicAssociationInformation/{associationInformationId}";
StringBuilder sb = path(qPath, associationInformationId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhAssociationContact.class);
} | java | public OvhAssociationContact data_afnicAssociationInformation_associationInformationId_GET(Long associationInformationId) throws IOException {
String qPath = "/domain/data/afnicAssociationInformation/{associationInformationId}";
StringBuilder sb = path(qPath, associationInformationId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhAssociationContact.class);
} | [
"public",
"OvhAssociationContact",
"data_afnicAssociationInformation_associationInformationId_GET",
"(",
"Long",
"associationInformationId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/afnicAssociationInformation/{associationInformationId}\"",
";",
"Strin... | Retrieve an association information according to Afnic
REST: GET /domain/data/afnicAssociationInformation/{associationInformationId}
@param associationInformationId [required] Association Information ID | [
"Retrieve",
"an",
"association",
"information",
"according",
"to",
"Afnic"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L217-L222 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_extension_GET | public ArrayList<String> data_extension_GET(OvhCountryEnum country) throws IOException {
String qPath = "/domain/data/extension";
StringBuilder sb = path(qPath);
query(sb, "country", country);
String resp = execN(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<String> data_extension_GET(OvhCountryEnum country) throws IOException {
String qPath = "/domain/data/extension";
StringBuilder sb = path(qPath);
query(sb, "country", country);
String resp = execN(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"data_extension_GET",
"(",
"OvhCountryEnum",
"country",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/extension\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
")",
";",
"query",
... | List all the extensions for a specific country
REST: GET /domain/data/extension
@param country [required] Country targeted | [
"List",
"all",
"the",
"extensions",
"for",
"a",
"specific",
"country"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L230-L236 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_claimNotice_GET | public OvhClaimNotice data_claimNotice_GET(String domain) throws IOException {
String qPath = "/domain/data/claimNotice";
StringBuilder sb = path(qPath);
query(sb, "domain", domain);
String resp = execN(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhClaimNotice.class);
} | java | public OvhClaimNotice data_claimNotice_GET(String domain) throws IOException {
String qPath = "/domain/data/claimNotice";
StringBuilder sb = path(qPath);
query(sb, "domain", domain);
String resp = execN(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhClaimNotice.class);
} | [
"public",
"OvhClaimNotice",
"data_claimNotice_GET",
"(",
"String",
"domain",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/claimNotice\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
")",
";",
"query",
"(",
"sb",
",",
"\"d... | Retrieve claim notices associated to a domain
REST: GET /domain/data/claimNotice
@param domain [required] Domain name | [
"Retrieve",
"claim",
"notices",
"associated",
"to",
"a",
"domain"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L245-L251 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_proContact_proContactId_GET | public OvhProContact data_proContact_proContactId_GET(Long proContactId) throws IOException {
String qPath = "/domain/data/proContact/{proContactId}";
StringBuilder sb = path(qPath, proContactId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhProContact.class);
} | java | public OvhProContact data_proContact_proContactId_GET(Long proContactId) throws IOException {
String qPath = "/domain/data/proContact/{proContactId}";
StringBuilder sb = path(qPath, proContactId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhProContact.class);
} | [
"public",
"OvhProContact",
"data_proContact_proContactId_GET",
"(",
"Long",
"proContactId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/data/proContact/{proContactId}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"proContactId",... | Retrieve information about a Pro Contact
REST: GET /domain/data/proContact/{proContactId}
@param proContactId [required] ProContact ID | [
"Retrieve",
"information",
"about",
"a",
"Pro",
"Contact"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L259-L264 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.data_proContact_POST | public OvhProContact data_proContact_POST(String authority, String authorityWebsite, Long contactId, String jobDescription, String licenseNumber) throws IOException {
String qPath = "/domain/data/proContact";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "authority", authority);
addBody(o, "authorityWebsite", authorityWebsite);
addBody(o, "contactId", contactId);
addBody(o, "jobDescription", jobDescription);
addBody(o, "licenseNumber", licenseNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhProContact.class);
} | java | public OvhProContact data_proContact_POST(String authority, String authorityWebsite, Long contactId, String jobDescription, String licenseNumber) throws IOException {
String qPath = "/domain/data/proContact";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "authority", authority);
addBody(o, "authorityWebsite", authorityWebsite);
addBody(o, "contactId", contactId);
addBody(o, "jobDescription", jobDescription);
addBody(o, "licenseNumber", licenseNumber);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhProContact.class);
} | [
"public",
"OvhProContact",
"data_proContact_POST",
"(",
"String",
"authority",
",",
"String",
"authorityWebsite",
",",
"Long",
"contactId",
",",
"String",
"jobDescription",
",",
"String",
"licenseNumber",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\... | Post new information about .pro contact information
REST: POST /domain/data/proContact
@param jobDescription [required] Description of your job
@param authority [required] Authority that certify your profesional status
@param authorityWebsite [required] Website of the authority that certify your profesional status
@param licenseNumber [required] License number given by the authority
@param contactId [required] Contact ID that refer to that .pro information | [
"Post",
"new",
"information",
"about",
".",
"pro",
"contact",
"information"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L288-L299 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_dynHost_login_login_DELETE | public void zone_zoneName_dynHost_login_login_DELETE(String zoneName, String login) throws IOException {
String qPath = "/domain/zone/{zoneName}/dynHost/login/{login}";
StringBuilder sb = path(qPath, zoneName, login);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void zone_zoneName_dynHost_login_login_DELETE(String zoneName, String login) throws IOException {
String qPath = "/domain/zone/{zoneName}/dynHost/login/{login}";
StringBuilder sb = path(qPath, zoneName, login);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"zone_zoneName_dynHost_login_login_DELETE",
"(",
"String",
"zoneName",
",",
"String",
"login",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/dynHost/login/{login}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
... | Delete a DynHost login
REST: DELETE /domain/zone/{zoneName}/dynHost/login/{login}
@param zoneName [required] The internal name of your zone
@param login [required] Login | [
"Delete",
"a",
"DynHost",
"login"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L466-L470 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_dynHost_login_login_changePassword_POST | public void zone_zoneName_dynHost_login_login_changePassword_POST(String zoneName, String login, String password) throws IOException {
String qPath = "/domain/zone/{zoneName}/dynHost/login/{login}/changePassword";
StringBuilder sb = path(qPath, zoneName, login);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "password", password);
exec(qPath, "POST", sb.toString(), o);
} | java | public void zone_zoneName_dynHost_login_login_changePassword_POST(String zoneName, String login, String password) throws IOException {
String qPath = "/domain/zone/{zoneName}/dynHost/login/{login}/changePassword";
StringBuilder sb = path(qPath, zoneName, login);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "password", password);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"zone_zoneName_dynHost_login_login_changePassword_POST",
"(",
"String",
"zoneName",
",",
"String",
"login",
",",
"String",
"password",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/dynHost/login/{login}/changePassword\""... | Change password of the DynHost login
REST: POST /domain/zone/{zoneName}/dynHost/login/{login}/changePassword
@param password [required] New password of the DynHost login
@param zoneName [required] The internal name of your zone
@param login [required] Login | [
"Change",
"password",
"of",
"the",
"DynHost",
"login"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L480-L486 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_dynHost_login_POST | public OvhDynHostLogin zone_zoneName_dynHost_login_POST(String zoneName, String loginSuffix, String password, String subDomain) throws IOException {
String qPath = "/domain/zone/{zoneName}/dynHost/login";
StringBuilder sb = path(qPath, zoneName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "loginSuffix", loginSuffix);
addBody(o, "password", password);
addBody(o, "subDomain", subDomain);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhDynHostLogin.class);
} | java | public OvhDynHostLogin zone_zoneName_dynHost_login_POST(String zoneName, String loginSuffix, String password, String subDomain) throws IOException {
String qPath = "/domain/zone/{zoneName}/dynHost/login";
StringBuilder sb = path(qPath, zoneName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "loginSuffix", loginSuffix);
addBody(o, "password", password);
addBody(o, "subDomain", subDomain);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhDynHostLogin.class);
} | [
"public",
"OvhDynHostLogin",
"zone_zoneName_dynHost_login_POST",
"(",
"String",
"zoneName",
",",
"String",
"loginSuffix",
",",
"String",
"password",
",",
"String",
"subDomain",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/dynHost/l... | Create a new DynHost login
REST: POST /domain/zone/{zoneName}/dynHost/login
@param password [required] Password of the login
@param subDomain [required] Subdomain that the login will be allowed to update (use * to allow all)
@param loginSuffix [required] Suffix that will be concatenated to the zoneName to create the login
@param zoneName [required] The internal name of your zone | [
"Create",
"a",
"new",
"DynHost",
"login"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L514-L523 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_history_GET | public ArrayList<Date> zone_zoneName_history_GET(String zoneName, Date creationDate_from, Date creationDate_to) throws IOException {
String qPath = "/domain/zone/{zoneName}/history";
StringBuilder sb = path(qPath, zoneName);
query(sb, "creationDate.from", creationDate_from);
query(sb, "creationDate.to", creationDate_to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | java | public ArrayList<Date> zone_zoneName_history_GET(String zoneName, Date creationDate_from, Date creationDate_to) throws IOException {
String qPath = "/domain/zone/{zoneName}/history";
StringBuilder sb = path(qPath, zoneName);
query(sb, "creationDate.from", creationDate_from);
query(sb, "creationDate.to", creationDate_to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | [
"public",
"ArrayList",
"<",
"Date",
">",
"zone_zoneName_history_GET",
"(",
"String",
"zoneName",
",",
"Date",
"creationDate_from",
",",
"Date",
"creationDate_to",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/history\"",
";",
"S... | Zone restore points
REST: GET /domain/zone/{zoneName}/history
@param creationDate_to [required] Filter the value of creationDate property (<=)
@param creationDate_from [required] Filter the value of creationDate property (>=)
@param zoneName [required] The internal name of your zone
API beta | [
"Zone",
"restore",
"points"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L585-L592 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_history_creationDate_restore_POST | public OvhTask zone_zoneName_history_creationDate_restore_POST(String zoneName, java.util.Date creationDate) throws IOException {
String qPath = "/domain/zone/{zoneName}/history/{creationDate}/restore";
StringBuilder sb = path(qPath, zoneName, creationDate);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask zone_zoneName_history_creationDate_restore_POST(String zoneName, java.util.Date creationDate) throws IOException {
String qPath = "/domain/zone/{zoneName}/history/{creationDate}/restore";
StringBuilder sb = path(qPath, zoneName, creationDate);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"zone_zoneName_history_creationDate_restore_POST",
"(",
"String",
"zoneName",
",",
"java",
".",
"util",
".",
"Date",
"creationDate",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/history/{creationDate}/restore\"",
... | Restore the DNS zone
REST: POST /domain/zone/{zoneName}/history/{creationDate}/restore
@param zoneName [required] The internal name of your zone
@param creationDate [required] Date of backup creation
API beta | [
"Restore",
"the",
"DNS",
"zone"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L604-L609 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_task_id_relaunch_POST | public void zone_zoneName_task_id_relaunch_POST(String zoneName, Long id) throws IOException {
String qPath = "/domain/zone/{zoneName}/task/{id}/relaunch";
StringBuilder sb = path(qPath, zoneName, id);
exec(qPath, "POST", sb.toString(), null);
} | java | public void zone_zoneName_task_id_relaunch_POST(String zoneName, Long id) throws IOException {
String qPath = "/domain/zone/{zoneName}/task/{id}/relaunch";
StringBuilder sb = path(qPath, zoneName, id);
exec(qPath, "POST", sb.toString(), null);
} | [
"public",
"void",
"zone_zoneName_task_id_relaunch_POST",
"(",
"String",
"zoneName",
",",
"Long",
"id",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/task/{id}/relaunch\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
"... | Relaunch the task
REST: POST /domain/zone/{zoneName}/task/{id}/relaunch
@param zoneName [required] The internal name of your zone
@param id [required] Id of the object | [
"Relaunch",
"the",
"task"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L763-L767 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_reset_POST | public void zone_zoneName_reset_POST(String zoneName, OvhResetRecord[] DnsRecords, Boolean minimized) throws IOException {
String qPath = "/domain/zone/{zoneName}/reset";
StringBuilder sb = path(qPath, zoneName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "DnsRecords", DnsRecords);
addBody(o, "minimized", minimized);
exec(qPath, "POST", sb.toString(), o);
} | java | public void zone_zoneName_reset_POST(String zoneName, OvhResetRecord[] DnsRecords, Boolean minimized) throws IOException {
String qPath = "/domain/zone/{zoneName}/reset";
StringBuilder sb = path(qPath, zoneName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "DnsRecords", DnsRecords);
addBody(o, "minimized", minimized);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"zone_zoneName_reset_POST",
"(",
"String",
"zoneName",
",",
"OvhResetRecord",
"[",
"]",
"DnsRecords",
",",
"Boolean",
"minimized",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/reset\"",
";",
"StringBuilder",
"... | Reset the DNS zone
REST: POST /domain/zone/{zoneName}/reset
@param minimized [required] Create only mandatory records
@param DnsRecords [required] Records that will be set after reset
@param zoneName [required] The internal name of your zone | [
"Reset",
"the",
"DNS",
"zone"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L790-L797 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.zone_zoneName_record_GET | public ArrayList<Long> zone_zoneName_record_GET(String zoneName, OvhNamedResolutionFieldTypeEnum fieldType, String subDomain) throws IOException {
String qPath = "/domain/zone/{zoneName}/record";
StringBuilder sb = path(qPath, zoneName);
query(sb, "fieldType", fieldType);
query(sb, "subDomain", subDomain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<Long> zone_zoneName_record_GET(String zoneName, OvhNamedResolutionFieldTypeEnum fieldType, String subDomain) throws IOException {
String qPath = "/domain/zone/{zoneName}/record";
StringBuilder sb = path(qPath, zoneName);
query(sb, "fieldType", fieldType);
query(sb, "subDomain", subDomain);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"zone_zoneName_record_GET",
"(",
"String",
"zoneName",
",",
"OvhNamedResolutionFieldTypeEnum",
"fieldType",
",",
"String",
"subDomain",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/zone/{zoneName}/record\""... | Records of the zone
REST: GET /domain/zone/{zoneName}/record
@param subDomain [required] Filter the value of subDomain property (like)
@param fieldType [required] Filter the value of fieldType property (like)
@param zoneName [required] The internal name of your zone | [
"Records",
"of",
"the",
"zone"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L930-L937 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_nameServer_id_DELETE | public net.minidev.ovh.api.domain.OvhTask serviceName_nameServer_id_DELETE(String serviceName, Long id) throws IOException {
String qPath = "/domain/{serviceName}/nameServer/{id}";
StringBuilder sb = path(qPath, serviceName, id);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, net.minidev.ovh.api.domain.OvhTask.class);
} | java | public net.minidev.ovh.api.domain.OvhTask serviceName_nameServer_id_DELETE(String serviceName, Long id) throws IOException {
String qPath = "/domain/{serviceName}/nameServer/{id}";
StringBuilder sb = path(qPath, serviceName, id);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, net.minidev.ovh.api.domain.OvhTask.class);
} | [
"public",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"domain",
".",
"OvhTask",
"serviceName_nameServer_id_DELETE",
"(",
"String",
"serviceName",
",",
"Long",
"id",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/nameSer... | Delete a name server
REST: DELETE /domain/{serviceName}/nameServer/{id}
@param serviceName [required] The internal name of your domain
@param id [required] Id of the object | [
"Delete",
"a",
"name",
"server"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1060-L1065 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_ukRegistrars_GET | public ArrayList<OvhUkRegistrar> serviceName_ukRegistrars_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/ukRegistrars";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhUkRegistrar> serviceName_ukRegistrars_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/ukRegistrars";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhUkRegistrar",
">",
"serviceName_ukRegistrars_GET",
"(",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/ukRegistrars\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
... | Return the list of all .uk registrars
REST: GET /domain/{serviceName}/ukRegistrars
@param serviceName [required] The internal name of your domain | [
"Return",
"the",
"list",
"of",
"all",
".",
"uk",
"registrars"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1102-L1107 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_glueRecord_host_DELETE | public net.minidev.ovh.api.domain.OvhTask serviceName_glueRecord_host_DELETE(String serviceName, String host) throws IOException {
String qPath = "/domain/{serviceName}/glueRecord/{host}";
StringBuilder sb = path(qPath, serviceName, host);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, net.minidev.ovh.api.domain.OvhTask.class);
} | java | public net.minidev.ovh.api.domain.OvhTask serviceName_glueRecord_host_DELETE(String serviceName, String host) throws IOException {
String qPath = "/domain/{serviceName}/glueRecord/{host}";
StringBuilder sb = path(qPath, serviceName, host);
String resp = exec(qPath, "DELETE", sb.toString(), null);
return convertTo(resp, net.minidev.ovh.api.domain.OvhTask.class);
} | [
"public",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"domain",
".",
"OvhTask",
"serviceName_glueRecord_host_DELETE",
"(",
"String",
"serviceName",
",",
"String",
"host",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/g... | Delete the glue record
REST: DELETE /domain/{serviceName}/glueRecord/{host}
@param serviceName [required] The internal name of your domain
@param host [required] Host of the glue record | [
"Delete",
"the",
"glue",
"record"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1212-L1217 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_glueRecord_host_update_POST | public net.minidev.ovh.api.domain.OvhTask serviceName_glueRecord_host_update_POST(String serviceName, String host, String[] ips) throws IOException {
String qPath = "/domain/{serviceName}/glueRecord/{host}/update";
StringBuilder sb = path(qPath, serviceName, host);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ips", ips);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, net.minidev.ovh.api.domain.OvhTask.class);
} | java | public net.minidev.ovh.api.domain.OvhTask serviceName_glueRecord_host_update_POST(String serviceName, String host, String[] ips) throws IOException {
String qPath = "/domain/{serviceName}/glueRecord/{host}/update";
StringBuilder sb = path(qPath, serviceName, host);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ips", ips);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, net.minidev.ovh.api.domain.OvhTask.class);
} | [
"public",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"domain",
".",
"OvhTask",
"serviceName_glueRecord_host_update_POST",
"(",
"String",
"serviceName",
",",
"String",
"host",
",",
"String",
"[",
"]",
"ips",
")",
"throws",
"IOException",
"{",
"String",... | Update the glue record
REST: POST /domain/{serviceName}/glueRecord/{host}/update
@param ips [required] Ips of the glue record
@param serviceName [required] The internal name of your domain
@param host [required] Host of the glue record | [
"Update",
"the",
"glue",
"record"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1227-L1234 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_glueRecord_GET | public ArrayList<String> serviceName_glueRecord_GET(String serviceName, String host) throws IOException {
String qPath = "/domain/{serviceName}/glueRecord";
StringBuilder sb = path(qPath, serviceName);
query(sb, "host", host);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<String> serviceName_glueRecord_GET(String serviceName, String host) throws IOException {
String qPath = "/domain/{serviceName}/glueRecord";
StringBuilder sb = path(qPath, serviceName);
query(sb, "host", host);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"serviceName_glueRecord_GET",
"(",
"String",
"serviceName",
",",
"String",
"host",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/glueRecord\"",
";",
"StringBuilder",
"sb",
"=",
"path",
... | List of glue record
REST: GET /domain/{serviceName}/glueRecord
@param host [required] Filter the value of host property (like)
@param serviceName [required] The internal name of your domain | [
"List",
"of",
"glue",
"record"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1243-L1249 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_activateZone_POST | public void serviceName_activateZone_POST(String serviceName, Boolean minimized) throws IOException {
String qPath = "/domain/{serviceName}/activateZone";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "minimized", minimized);
exec(qPath, "POST", sb.toString(), o);
} | java | public void serviceName_activateZone_POST(String serviceName, Boolean minimized) throws IOException {
String qPath = "/domain/{serviceName}/activateZone";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "minimized", minimized);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"serviceName_activateZone_POST",
"(",
"String",
"serviceName",
",",
"Boolean",
"minimized",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/activateZone\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",... | Activate the DNS zone for this domain
REST: POST /domain/{serviceName}/activateZone
@param minimized [required] Create only mandatory records
@param serviceName [required] The internal name of your domain | [
"Activate",
"the",
"DNS",
"zone",
"for",
"this",
"domain"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1346-L1352 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_rules_optin_GET | public ArrayList<OvhOptin> serviceName_rules_optin_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/rules/optin";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | java | public ArrayList<OvhOptin> serviceName_rules_optin_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/rules/optin";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | [
"public",
"ArrayList",
"<",
"OvhOptin",
">",
"serviceName_rules_optin_GET",
"(",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/rules/optin\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
... | Retrieve optin rule
REST: GET /domain/{serviceName}/rules/optin
@param serviceName [required] The internal name of your domain | [
"Retrieve",
"optin",
"rule"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1376-L1381 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_rules_emailsObfuscation_GET | public ArrayList<OvhContactAllTypesEnum> serviceName_rules_emailsObfuscation_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/rules/emailsObfuscation";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t6);
} | java | public ArrayList<OvhContactAllTypesEnum> serviceName_rules_emailsObfuscation_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/rules/emailsObfuscation";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t6);
} | [
"public",
"ArrayList",
"<",
"OvhContactAllTypesEnum",
">",
"serviceName_rules_emailsObfuscation_GET",
"(",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/rules/emailsObfuscation\"",
";",
"StringBuilder",
"sb",
"=",... | Retrieve emails obfuscation rule
REST: GET /domain/{serviceName}/rules/emailsObfuscation
@param serviceName [required] The internal name of your domain | [
"Retrieve",
"emails",
"obfuscation",
"rule"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1390-L1395 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_dsRecord_GET | public ArrayList<Long> serviceName_dsRecord_GET(String serviceName, OvhKeyFlagEnum flags, OvhKeyStatusEnum status) throws IOException {
String qPath = "/domain/{serviceName}/dsRecord";
StringBuilder sb = path(qPath, serviceName);
query(sb, "flags", flags);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<Long> serviceName_dsRecord_GET(String serviceName, OvhKeyFlagEnum flags, OvhKeyStatusEnum status) throws IOException {
String qPath = "/domain/{serviceName}/dsRecord";
StringBuilder sb = path(qPath, serviceName);
query(sb, "flags", flags);
query(sb, "status", status);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"serviceName_dsRecord_GET",
"(",
"String",
"serviceName",
",",
"OvhKeyFlagEnum",
"flags",
",",
"OvhKeyStatusEnum",
"status",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/dsRecord\"",
";",
... | List of domain's DS Records
REST: GET /domain/{serviceName}/dsRecord
@param status [required] Filter the value of status property (=)
@param flags [required] Filter the value of flags property (=)
@param serviceName [required] The internal name of your domain | [
"List",
"of",
"domain",
"s",
"DS",
"Records"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1420-L1427 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_owo_field_DELETE | public void serviceName_owo_field_DELETE(String serviceName, net.minidev.ovh.api.domain.OvhWhoisObfuscatorFieldsEnum field) throws IOException {
String qPath = "/domain/{serviceName}/owo/{field}";
StringBuilder sb = path(qPath, serviceName, field);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void serviceName_owo_field_DELETE(String serviceName, net.minidev.ovh.api.domain.OvhWhoisObfuscatorFieldsEnum field) throws IOException {
String qPath = "/domain/{serviceName}/owo/{field}";
StringBuilder sb = path(qPath, serviceName, field);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"serviceName_owo_field_DELETE",
"(",
"String",
"serviceName",
",",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"domain",
".",
"OvhWhoisObfuscatorFieldsEnum",
"field",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{... | Delete a whois obfuscator
REST: DELETE /domain/{serviceName}/owo/{field}
@param serviceName [required] The internal name of your domain
@param field [required] Obfuscated field | [
"Delete",
"a",
"whois",
"obfuscator"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1486-L1490 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_owo_GET | public ArrayList<OvhWhoisObfuscatorFieldsEnum> serviceName_owo_GET(String serviceName, OvhWhoisObfuscatorFieldsEnum field) throws IOException {
String qPath = "/domain/{serviceName}/owo";
StringBuilder sb = path(qPath, serviceName);
query(sb, "field", field);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t7);
} | java | public ArrayList<OvhWhoisObfuscatorFieldsEnum> serviceName_owo_GET(String serviceName, OvhWhoisObfuscatorFieldsEnum field) throws IOException {
String qPath = "/domain/{serviceName}/owo";
StringBuilder sb = path(qPath, serviceName);
query(sb, "field", field);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t7);
} | [
"public",
"ArrayList",
"<",
"OvhWhoisObfuscatorFieldsEnum",
">",
"serviceName_owo_GET",
"(",
"String",
"serviceName",
",",
"OvhWhoisObfuscatorFieldsEnum",
"field",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/owo\"",
";",
"StringBuilde... | List of whois obfuscators
REST: GET /domain/{serviceName}/owo
@param field [required] Filter the value of field property (=)
@param serviceName [required] The internal name of your domain | [
"List",
"of",
"whois",
"obfuscators"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1499-L1505 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_owo_POST | public ArrayList<OvhWhoisObfuscatorFieldsEnum> serviceName_owo_POST(String serviceName, OvhWhoisObfuscatorFieldsEnum[] fields) throws IOException {
String qPath = "/domain/{serviceName}/owo";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "fields", fields);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t7);
} | java | public ArrayList<OvhWhoisObfuscatorFieldsEnum> serviceName_owo_POST(String serviceName, OvhWhoisObfuscatorFieldsEnum[] fields) throws IOException {
String qPath = "/domain/{serviceName}/owo";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "fields", fields);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, t7);
} | [
"public",
"ArrayList",
"<",
"OvhWhoisObfuscatorFieldsEnum",
">",
"serviceName_owo_POST",
"(",
"String",
"serviceName",
",",
"OvhWhoisObfuscatorFieldsEnum",
"[",
"]",
"fields",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/owo\"",
";",... | Add whois obfuscators
REST: POST /domain/{serviceName}/owo
@param fields [required] Fields to obfuscate
@param serviceName [required] The internal name of your domain | [
"Add",
"whois",
"obfuscators"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1515-L1522 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_email_obfuscated_refresh_POST | public void serviceName_email_obfuscated_refresh_POST(String serviceName, OvhDomainContactTypeEnum[] contactType) throws IOException {
String qPath = "/domain/{serviceName}/email/obfuscated/refresh";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactType", contactType);
exec(qPath, "POST", sb.toString(), o);
} | java | public void serviceName_email_obfuscated_refresh_POST(String serviceName, OvhDomainContactTypeEnum[] contactType) throws IOException {
String qPath = "/domain/{serviceName}/email/obfuscated/refresh";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contactType", contactType);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"serviceName_email_obfuscated_refresh_POST",
"(",
"String",
"serviceName",
",",
"OvhDomainContactTypeEnum",
"[",
"]",
"contactType",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/email/obfuscated/refresh\"",
";",
"String... | Regenerate the obfuscated email address
REST: POST /domain/{serviceName}/email/obfuscated/refresh
@param contactType [required] Contact type
@param serviceName [required] The internal name of your domain
@deprecated | [
"Regenerate",
"the",
"obfuscated",
"email",
"address"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1532-L1538 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_configurations_optin_GET | public ArrayList<net.minidev.ovh.api.domain.configurations.OvhOptin> serviceName_configurations_optin_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/configurations/optin";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t8);
} | java | public ArrayList<net.minidev.ovh.api.domain.configurations.OvhOptin> serviceName_configurations_optin_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/configurations/optin";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t8);
} | [
"public",
"ArrayList",
"<",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"domain",
".",
"configurations",
".",
"OvhOptin",
">",
"serviceName_configurations_optin_GET",
"(",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"="... | Retrieve optin configuration
REST: GET /domain/{serviceName}/configurations/optin
@param serviceName [required] The internal name of your domain | [
"Retrieve",
"optin",
"configuration"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1546-L1551 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_configurations_optin_PUT | public ArrayList<net.minidev.ovh.api.domain.configurations.OvhOptin> serviceName_configurations_optin_PUT(String serviceName, net.minidev.ovh.api.domain.configurations.OvhOptin[] optin) throws IOException {
String qPath = "/domain/{serviceName}/configurations/optin";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "optin", optin);
String resp = exec(qPath, "PUT", sb.toString(), o);
return convertTo(resp, t8);
} | java | public ArrayList<net.minidev.ovh.api.domain.configurations.OvhOptin> serviceName_configurations_optin_PUT(String serviceName, net.minidev.ovh.api.domain.configurations.OvhOptin[] optin) throws IOException {
String qPath = "/domain/{serviceName}/configurations/optin";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "optin", optin);
String resp = exec(qPath, "PUT", sb.toString(), o);
return convertTo(resp, t8);
} | [
"public",
"ArrayList",
"<",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"domain",
".",
"configurations",
".",
"OvhOptin",
">",
"serviceName_configurations_optin_PUT",
"(",
"String",
"serviceName",
",",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
"... | Save a new optin configuration
REST: PUT /domain/{serviceName}/configurations/optin
@param optin [required] New configuration about optin
@param serviceName [required] The internal name of your domain | [
"Save",
"a",
"new",
"optin",
"configuration"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1561-L1568 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_configurations_obfuscatedEmails_GET | public ArrayList<OvhObfuscatedEmails> serviceName_configurations_obfuscatedEmails_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/configurations/obfuscatedEmails";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t9);
} | java | public ArrayList<OvhObfuscatedEmails> serviceName_configurations_obfuscatedEmails_GET(String serviceName) throws IOException {
String qPath = "/domain/{serviceName}/configurations/obfuscatedEmails";
StringBuilder sb = path(qPath, serviceName);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t9);
} | [
"public",
"ArrayList",
"<",
"OvhObfuscatedEmails",
">",
"serviceName_configurations_obfuscatedEmails_GET",
"(",
"String",
"serviceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/configurations/obfuscatedEmails\"",
";",
"StringBuilder",
... | Retrieve obfuscated emails configuration
REST: GET /domain/{serviceName}/configurations/obfuscatedEmails
@param serviceName [required] The internal name of your domain | [
"Retrieve",
"obfuscated",
"emails",
"configuration"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1576-L1581 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_configurations_obfuscatedEmails_PUT | public ArrayList<OvhObfuscatedEmails> serviceName_configurations_obfuscatedEmails_PUT(String serviceName, OvhContactAllTypesEnum[] contacts) throws IOException {
String qPath = "/domain/{serviceName}/configurations/obfuscatedEmails";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contacts", contacts);
String resp = exec(qPath, "PUT", sb.toString(), o);
return convertTo(resp, t9);
} | java | public ArrayList<OvhObfuscatedEmails> serviceName_configurations_obfuscatedEmails_PUT(String serviceName, OvhContactAllTypesEnum[] contacts) throws IOException {
String qPath = "/domain/{serviceName}/configurations/obfuscatedEmails";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contacts", contacts);
String resp = exec(qPath, "PUT", sb.toString(), o);
return convertTo(resp, t9);
} | [
"public",
"ArrayList",
"<",
"OvhObfuscatedEmails",
">",
"serviceName_configurations_obfuscatedEmails_PUT",
"(",
"String",
"serviceName",
",",
"OvhContactAllTypesEnum",
"[",
"]",
"contacts",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/... | Save a new obfuscated emails configuration
REST: PUT /domain/{serviceName}/configurations/obfuscatedEmails
@param contacts [required] Contact types where obfuscated emails can be activated
@param serviceName [required] The internal name of your domain | [
"Save",
"a",
"new",
"obfuscated",
"emails",
"configuration"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1591-L1598 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java | ApiOvhDomain.serviceName_configurations_obfuscatedEmails_refresh_POST | public void serviceName_configurations_obfuscatedEmails_refresh_POST(String serviceName, OvhContactAllTypesEnum[] contacts) throws IOException {
String qPath = "/domain/{serviceName}/configurations/obfuscatedEmails/refresh";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contacts", contacts);
exec(qPath, "POST", sb.toString(), o);
} | java | public void serviceName_configurations_obfuscatedEmails_refresh_POST(String serviceName, OvhContactAllTypesEnum[] contacts) throws IOException {
String qPath = "/domain/{serviceName}/configurations/obfuscatedEmails/refresh";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "contacts", contacts);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"serviceName_configurations_obfuscatedEmails_refresh_POST",
"(",
"String",
"serviceName",
",",
"OvhContactAllTypesEnum",
"[",
"]",
"contacts",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/domain/{serviceName}/configurations/obfuscatedEmails/ref... | Refresh an obfuscated emails configuration
REST: POST /domain/{serviceName}/configurations/obfuscatedEmails/refresh
@param contacts [required] Contact types where obfuscated emails will be refreshed
@param serviceName [required] The internal name of your domain | [
"Refresh",
"an",
"obfuscated",
"emails",
"configuration"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-domain/src/main/java/net/minidev/ovh/api/ApiOvhDomain.java#L1607-L1613 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_senders_POST | public String serviceName_senders_POST(String serviceName, String description, String reason, String sender) throws IOException {
String qPath = "/sms/{serviceName}/senders";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "reason", reason);
addBody(o, "sender", sender);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | java | public String serviceName_senders_POST(String serviceName, String description, String reason, String sender) throws IOException {
String qPath = "/sms/{serviceName}/senders";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "reason", reason);
addBody(o, "sender", sender);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, String.class);
} | [
"public",
"String",
"serviceName_senders_POST",
"(",
"String",
"serviceName",
",",
"String",
"description",
",",
"String",
"reason",
",",
"String",
"sender",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/senders\"",
";",
"StringBuild... | Create the sms sender given
REST: POST /sms/{serviceName}/senders
@param description [required] Sender description
@param sender [required] The sender (alpha or phone number)
@param reason [required] Message seen by the moderator
@param serviceName [required] The internal name of your SMS offer | [
"Create",
"the",
"sms",
"sender",
"given"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L164-L173 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_senders_sender_DELETE | public void serviceName_senders_sender_DELETE(String serviceName, String sender) throws IOException {
String qPath = "/sms/{serviceName}/senders/{sender}";
StringBuilder sb = path(qPath, serviceName, sender);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void serviceName_senders_sender_DELETE(String serviceName, String sender) throws IOException {
String qPath = "/sms/{serviceName}/senders/{sender}";
StringBuilder sb = path(qPath, serviceName, sender);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"serviceName_senders_sender_DELETE",
"(",
"String",
"serviceName",
",",
"String",
"sender",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/senders/{sender}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
"... | Delete the sms sender given
REST: DELETE /sms/{serviceName}/senders/{sender}
@param serviceName [required] The internal name of your SMS offer
@param sender [required] The sms sender | [
"Delete",
"the",
"sms",
"sender",
"given"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L210-L214 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_virtualNumbers_number_outgoing_GET | public ArrayList<Long> serviceName_virtualNumbers_number_outgoing_GET(String serviceName, String number, Date creationDatetime_from, Date creationDatetime_to, Long deliveryReceipt, Long differedDelivery, Long ptt, String receiver, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/virtualNumbers/{number}/outgoing";
StringBuilder sb = path(qPath, serviceName, number);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
query(sb, "deliveryReceipt", deliveryReceipt);
query(sb, "differedDelivery", differedDelivery);
query(sb, "ptt", ptt);
query(sb, "receiver", receiver);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> serviceName_virtualNumbers_number_outgoing_GET(String serviceName, String number, Date creationDatetime_from, Date creationDatetime_to, Long deliveryReceipt, Long differedDelivery, Long ptt, String receiver, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/virtualNumbers/{number}/outgoing";
StringBuilder sb = path(qPath, serviceName, number);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
query(sb, "deliveryReceipt", deliveryReceipt);
query(sb, "differedDelivery", differedDelivery);
query(sb, "ptt", ptt);
query(sb, "receiver", receiver);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"serviceName_virtualNumbers_number_outgoing_GET",
"(",
"String",
"serviceName",
",",
"String",
"number",
",",
"Date",
"creationDatetime_from",
",",
"Date",
"creationDatetime_to",
",",
"Long",
"deliveryReceipt",
",",
"Long",
"diff... | Sms sent associated to the sms account
REST: GET /sms/{serviceName}/virtualNumbers/{number}/outgoing
@param sender [required] Filter the value of sender property (=)
@param receiver [required] Filter the value of receiver property (=)
@param tag [required] Filter the value of tag property (=)
@param creationDatetime_from [required] Filter the value of creationDatetime property (>=)
@param deliveryReceipt [required] Filter the value of deliveryReceipt property (=)
@param ptt [required] Filter the value of ptt property (=)
@param creationDatetime_to [required] Filter the value of creationDatetime property (<=)
@param differedDelivery [required] Filter the value of differedDelivery property (=)
@param serviceName [required] The internal name of your SMS offer
@param number [required] The virtual number | [
"Sms",
"sent",
"associated",
"to",
"the",
"sms",
"account"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L340-L353 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_virtualNumbers_number_incoming_GET | public ArrayList<Long> serviceName_virtualNumbers_number_incoming_GET(String serviceName, String number, Date creationDatetime_from, Date creationDatetime_to, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/virtualNumbers/{number}/incoming";
StringBuilder sb = path(qPath, serviceName, number);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> serviceName_virtualNumbers_number_incoming_GET(String serviceName, String number, Date creationDatetime_from, Date creationDatetime_to, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/virtualNumbers/{number}/incoming";
StringBuilder sb = path(qPath, serviceName, number);
query(sb, "creationDatetime.from", creationDatetime_from);
query(sb, "creationDatetime.to", creationDatetime_to);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"serviceName_virtualNumbers_number_incoming_GET",
"(",
"String",
"serviceName",
",",
"String",
"number",
",",
"Date",
"creationDatetime_from",
",",
"Date",
"creationDatetime_to",
",",
"String",
"sender",
",",
"String",
"tag",
"... | Sms received associated to the sms account
REST: GET /sms/{serviceName}/virtualNumbers/{number}/incoming
@param creationDatetime_from [required] Filter the value of creationDatetime property (>=)
@param creationDatetime_to [required] Filter the value of creationDatetime property (<=)
@param tag [required] Filter the value of tag property (=)
@param sender [required] Filter the value of sender property (=)
@param serviceName [required] The internal name of your SMS offer
@param number [required] The virtual number | [
"Sms",
"received",
"associated",
"to",
"the",
"sms",
"account"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L410-L419 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_receivers_slotId_clean_POST | public OvhReceiversAsynchronousCleanReport serviceName_receivers_slotId_clean_POST(String serviceName, Long slotId, Boolean freemium, Boolean priceOnly) throws IOException {
String qPath = "/sms/{serviceName}/receivers/{slotId}/clean";
StringBuilder sb = path(qPath, serviceName, slotId);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "freemium", freemium);
addBody(o, "priceOnly", priceOnly);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReceiversAsynchronousCleanReport.class);
} | java | public OvhReceiversAsynchronousCleanReport serviceName_receivers_slotId_clean_POST(String serviceName, Long slotId, Boolean freemium, Boolean priceOnly) throws IOException {
String qPath = "/sms/{serviceName}/receivers/{slotId}/clean";
StringBuilder sb = path(qPath, serviceName, slotId);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "freemium", freemium);
addBody(o, "priceOnly", priceOnly);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReceiversAsynchronousCleanReport.class);
} | [
"public",
"OvhReceiversAsynchronousCleanReport",
"serviceName_receivers_slotId_clean_POST",
"(",
"String",
"serviceName",
",",
"Long",
"slotId",
",",
"Boolean",
"freemium",
",",
"Boolean",
"priceOnly",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{se... | Clean the invalid and inactive receivers in the document by requesting HLR on each receiver. A report is sent by e-mail at the end of the operation.
REST: POST /sms/{serviceName}/receivers/{slotId}/clean
@param freemium [required] Limit checks to syntaxical validation
@param priceOnly [required] Only get action's price in credits without executing it
@param serviceName [required] The internal name of your SMS offer
@param slotId [required] Slot number id | [
"Clean",
"the",
"invalid",
"and",
"inactive",
"receivers",
"in",
"the",
"document",
"by",
"requesting",
"HLR",
"on",
"each",
"receiver",
".",
"A",
"report",
"is",
"sent",
"by",
"e",
"-",
"mail",
"at",
"the",
"end",
"of",
"the",
"operation",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L528-L536 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_receivers_slotId_DELETE | public void serviceName_receivers_slotId_DELETE(String serviceName, Long slotId) throws IOException {
String qPath = "/sms/{serviceName}/receivers/{slotId}";
StringBuilder sb = path(qPath, serviceName, slotId);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void serviceName_receivers_slotId_DELETE(String serviceName, Long slotId) throws IOException {
String qPath = "/sms/{serviceName}/receivers/{slotId}";
StringBuilder sb = path(qPath, serviceName, slotId);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"serviceName_receivers_slotId_DELETE",
"(",
"String",
"serviceName",
",",
"Long",
"slotId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/receivers/{slotId}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
... | Delete the document from the slot
REST: DELETE /sms/{serviceName}/receivers/{slotId}
@param serviceName [required] The internal name of your SMS offer
@param slotId [required] Slot number id | [
"Delete",
"the",
"document",
"from",
"the",
"slot"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L573-L577 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_users_login_DELETE | public void serviceName_users_login_DELETE(String serviceName, String login) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}";
StringBuilder sb = path(qPath, serviceName, login);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void serviceName_users_login_DELETE(String serviceName, String login) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}";
StringBuilder sb = path(qPath, serviceName, login);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"serviceName_users_login_DELETE",
"(",
"String",
"serviceName",
",",
"String",
"login",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/users/{login}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"... | Delete the sms user given
REST: DELETE /sms/{serviceName}/users/{login}
@param serviceName [required] The internal name of your SMS offer
@param login [required] The sms user login | [
"Delete",
"the",
"sms",
"user",
"given"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L703-L707 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_users_login_receivers_POST | public OvhReceiver serviceName_users_login_receivers_POST(String serviceName, String login, Boolean autoUpdate, String csvUrl, String description, String documentId, Long slotId) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/receivers";
StringBuilder sb = path(qPath, serviceName, login);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "autoUpdate", autoUpdate);
addBody(o, "csvUrl", csvUrl);
addBody(o, "description", description);
addBody(o, "documentId", documentId);
addBody(o, "slotId", slotId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReceiver.class);
} | java | public OvhReceiver serviceName_users_login_receivers_POST(String serviceName, String login, Boolean autoUpdate, String csvUrl, String description, String documentId, Long slotId) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/receivers";
StringBuilder sb = path(qPath, serviceName, login);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "autoUpdate", autoUpdate);
addBody(o, "csvUrl", csvUrl);
addBody(o, "description", description);
addBody(o, "documentId", documentId);
addBody(o, "slotId", slotId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReceiver.class);
} | [
"public",
"OvhReceiver",
"serviceName_users_login_receivers_POST",
"(",
"String",
"serviceName",
",",
"String",
"login",
",",
"Boolean",
"autoUpdate",
",",
"String",
"csvUrl",
",",
"String",
"description",
",",
"String",
"documentId",
",",
"Long",
"slotId",
")",
"th... | Add a new document of csv receivers
REST: POST /sms/{serviceName}/users/{login}/receivers
@param slotId [required] Slot number id used to handle the document
@param autoUpdate [required] Download file from URL before sending to contacts (works only with csvUrl and not document ID)
@param documentId [required] ID of the /me/document file you want to import
@param description [required] Description name of the document
@param csvUrl [required] URL of the file you want to import
@param serviceName [required] The internal name of your SMS offer
@param login [required] The sms user login | [
"Add",
"a",
"new",
"document",
"of",
"csv",
"receivers"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L814-L825 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_users_login_outgoing_GET | public ArrayList<Long> serviceName_users_login_outgoing_GET(String serviceName, String login, Long deliveryReceipt, Long differedDelivery, Long ptt, String receiver, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/outgoing";
StringBuilder sb = path(qPath, serviceName, login);
query(sb, "deliveryReceipt", deliveryReceipt);
query(sb, "differedDelivery", differedDelivery);
query(sb, "ptt", ptt);
query(sb, "receiver", receiver);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> serviceName_users_login_outgoing_GET(String serviceName, String login, Long deliveryReceipt, Long differedDelivery, Long ptt, String receiver, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/outgoing";
StringBuilder sb = path(qPath, serviceName, login);
query(sb, "deliveryReceipt", deliveryReceipt);
query(sb, "differedDelivery", differedDelivery);
query(sb, "ptt", ptt);
query(sb, "receiver", receiver);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"serviceName_users_login_outgoing_GET",
"(",
"String",
"serviceName",
",",
"String",
"login",
",",
"Long",
"deliveryReceipt",
",",
"Long",
"differedDelivery",
",",
"Long",
"ptt",
",",
"String",
"receiver",
",",
"String",
"s... | Sms sent associated to the sms user
REST: GET /sms/{serviceName}/users/{login}/outgoing
@param differedDelivery [required] Filter the value of differedDelivery property (=)
@param tag [required] Filter the value of tag property (=)
@param ptt [required] Filter the value of ptt property (=)
@param receiver [required] Filter the value of receiver property (=)
@param sender [required] Filter the value of sender property (=)
@param deliveryReceipt [required] Filter the value of deliveryReceipt property (=)
@param serviceName [required] The internal name of your SMS offer
@param login [required] The sms user login | [
"Sms",
"sent",
"associated",
"to",
"the",
"sms",
"user"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L840-L851 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_users_login_jobs_POST | public OvhSmsSendingReport serviceName_users_login_jobs_POST(String serviceName, String login, OvhCharsetEnum charset, OvhClassEnum _class, OvhCodingEnum coding, Long differedPeriod, String message, Boolean noStopClause, OvhPriorityEnum priority, String[] receivers, String receiversDocumentUrl, String receiversSlotId, String sender, Boolean senderForResponse, String tag, Long validityPeriod) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/jobs";
StringBuilder sb = path(qPath, serviceName, login);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "charset", charset);
addBody(o, "class", _class);
addBody(o, "coding", coding);
addBody(o, "differedPeriod", differedPeriod);
addBody(o, "message", message);
addBody(o, "noStopClause", noStopClause);
addBody(o, "priority", priority);
addBody(o, "receivers", receivers);
addBody(o, "receiversDocumentUrl", receiversDocumentUrl);
addBody(o, "receiversSlotId", receiversSlotId);
addBody(o, "sender", sender);
addBody(o, "senderForResponse", senderForResponse);
addBody(o, "tag", tag);
addBody(o, "validityPeriod", validityPeriod);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhSmsSendingReport.class);
} | java | public OvhSmsSendingReport serviceName_users_login_jobs_POST(String serviceName, String login, OvhCharsetEnum charset, OvhClassEnum _class, OvhCodingEnum coding, Long differedPeriod, String message, Boolean noStopClause, OvhPriorityEnum priority, String[] receivers, String receiversDocumentUrl, String receiversSlotId, String sender, Boolean senderForResponse, String tag, Long validityPeriod) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/jobs";
StringBuilder sb = path(qPath, serviceName, login);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "charset", charset);
addBody(o, "class", _class);
addBody(o, "coding", coding);
addBody(o, "differedPeriod", differedPeriod);
addBody(o, "message", message);
addBody(o, "noStopClause", noStopClause);
addBody(o, "priority", priority);
addBody(o, "receivers", receivers);
addBody(o, "receiversDocumentUrl", receiversDocumentUrl);
addBody(o, "receiversSlotId", receiversSlotId);
addBody(o, "sender", sender);
addBody(o, "senderForResponse", senderForResponse);
addBody(o, "tag", tag);
addBody(o, "validityPeriod", validityPeriod);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhSmsSendingReport.class);
} | [
"public",
"OvhSmsSendingReport",
"serviceName_users_login_jobs_POST",
"(",
"String",
"serviceName",
",",
"String",
"login",
",",
"OvhCharsetEnum",
"charset",
",",
"OvhClassEnum",
"_class",
",",
"OvhCodingEnum",
"coding",
",",
"Long",
"differedPeriod",
",",
"String",
"me... | Add one or several sending jobs
REST: POST /sms/{serviceName}/users/{login}/jobs
@param sender [required] The sender
@param _class [required] [default=phoneDisplay] The sms class
@param receiversSlotId [required] The receivers document slot id
@param priority [required] [default=high] The priority of the message
@param validityPeriod [required] [default=2880] The maximum time -in minute(s)- before the message is dropped
@param senderForResponse [required] Set the flag to send a special sms which can be reply by the receiver (smsResponse).
@param coding [required] [default=7bit] The sms coding
@param differedPeriod [required] [default=0] The time -in minute(s)- to wait before sending the message
@param tag [required] The identifier group tag
@param noStopClause [required] Do not display STOP clause in the message, this requires that this is not an advertising message
@param receiversDocumentUrl [required] The receivers document url link in csv format
@param message [required] The sms message
@param receivers [required] The receivers list
@param charset [required] [default=UTF-8] The sms coding
@param serviceName [required] The internal name of your SMS offer
@param login [required] The sms user login | [
"Add",
"one",
"or",
"several",
"sending",
"jobs"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L932-L952 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_users_login_incoming_GET | public ArrayList<Long> serviceName_users_login_incoming_GET(String serviceName, String login, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/incoming";
StringBuilder sb = path(qPath, serviceName, login);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<Long> serviceName_users_login_incoming_GET(String serviceName, String login, String sender, String tag) throws IOException {
String qPath = "/sms/{serviceName}/users/{login}/incoming";
StringBuilder sb = path(qPath, serviceName, login);
query(sb, "sender", sender);
query(sb, "tag", tag);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"serviceName_users_login_incoming_GET",
"(",
"String",
"serviceName",
",",
"String",
"login",
",",
"String",
"sender",
",",
"String",
"tag",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/use... | Sms received associated to the sms user
REST: GET /sms/{serviceName}/users/{login}/incoming
@param tag [required] Filter the value of tag property (=)
@param sender [required] Filter the value of sender property (=)
@param serviceName [required] The internal name of your SMS offer
@param login [required] The sms user login | [
"Sms",
"received",
"associated",
"to",
"the",
"sms",
"user"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1021-L1028 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_sendersAvailableForValidation_GET | public ArrayList<OvhSenderAvailable> serviceName_sendersAvailableForValidation_GET(String serviceName, OvhSenderRefererEnum referer) throws IOException {
String qPath = "/sms/{serviceName}/sendersAvailableForValidation";
StringBuilder sb = path(qPath, serviceName);
query(sb, "referer", referer);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | java | public ArrayList<OvhSenderAvailable> serviceName_sendersAvailableForValidation_GET(String serviceName, OvhSenderRefererEnum referer) throws IOException {
String qPath = "/sms/{serviceName}/sendersAvailableForValidation";
StringBuilder sb = path(qPath, serviceName);
query(sb, "referer", referer);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | [
"public",
"ArrayList",
"<",
"OvhSenderAvailable",
">",
"serviceName_sendersAvailableForValidation_GET",
"(",
"String",
"serviceName",
",",
"OvhSenderRefererEnum",
"referer",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/sendersAvailableForVali... | The senders that are attached to your personal informations or OVH services and that can be automatically validated
REST: GET /sms/{serviceName}/sendersAvailableForValidation
@param referer [required] Information type
@param serviceName [required] The internal name of your SMS offer | [
"The",
"senders",
"that",
"are",
"attached",
"to",
"your",
"personal",
"informations",
"or",
"OVH",
"services",
"and",
"that",
"can",
"be",
"automatically",
"validated"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1037-L1043 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_phonebooks_bookKey_export_GET | public OvhPcsFile serviceName_phonebooks_bookKey_export_GET(String serviceName, String bookKey, OvhContactsExportFormatsEnum format) throws IOException {
String qPath = "/sms/{serviceName}/phonebooks/{bookKey}/export";
StringBuilder sb = path(qPath, serviceName, bookKey);
query(sb, "format", format);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPcsFile.class);
} | java | public OvhPcsFile serviceName_phonebooks_bookKey_export_GET(String serviceName, String bookKey, OvhContactsExportFormatsEnum format) throws IOException {
String qPath = "/sms/{serviceName}/phonebooks/{bookKey}/export";
StringBuilder sb = path(qPath, serviceName, bookKey);
query(sb, "format", format);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPcsFile.class);
} | [
"public",
"OvhPcsFile",
"serviceName_phonebooks_bookKey_export_GET",
"(",
"String",
"serviceName",
",",
"String",
"bookKey",
",",
"OvhContactsExportFormatsEnum",
"format",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/phonebooks/{bookKey}/expo... | Export the phonebook's contacts
REST: GET /sms/{serviceName}/phonebooks/{bookKey}/export
@param format [required] Format of the file
@param serviceName [required] The internal name of your SMS offer
@param bookKey [required] Identifier of the phonebook | [
"Export",
"the",
"phonebook",
"s",
"contacts"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1071-L1077 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_phonebooks_bookKey_phonebookContact_POST | public Long serviceName_phonebooks_bookKey_phonebookContact_POST(String serviceName, String bookKey, String group, String homeMobile, String homePhone, String name, String surname, String workMobile, String workPhone) throws IOException {
String qPath = "/sms/{serviceName}/phonebooks/{bookKey}/phonebookContact";
StringBuilder sb = path(qPath, serviceName, bookKey);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "group", group);
addBody(o, "homeMobile", homeMobile);
addBody(o, "homePhone", homePhone);
addBody(o, "name", name);
addBody(o, "surname", surname);
addBody(o, "workMobile", workMobile);
addBody(o, "workPhone", workPhone);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, Long.class);
} | java | public Long serviceName_phonebooks_bookKey_phonebookContact_POST(String serviceName, String bookKey, String group, String homeMobile, String homePhone, String name, String surname, String workMobile, String workPhone) throws IOException {
String qPath = "/sms/{serviceName}/phonebooks/{bookKey}/phonebookContact";
StringBuilder sb = path(qPath, serviceName, bookKey);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "group", group);
addBody(o, "homeMobile", homeMobile);
addBody(o, "homePhone", homePhone);
addBody(o, "name", name);
addBody(o, "surname", surname);
addBody(o, "workMobile", workMobile);
addBody(o, "workPhone", workPhone);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, Long.class);
} | [
"public",
"Long",
"serviceName_phonebooks_bookKey_phonebookContact_POST",
"(",
"String",
"serviceName",
",",
"String",
"bookKey",
",",
"String",
"group",
",",
"String",
"homeMobile",
",",
"String",
"homePhone",
",",
"String",
"name",
",",
"String",
"surname",
",",
"... | Create a phonebook contact. Return identifier of the phonebook contact.
REST: POST /sms/{serviceName}/phonebooks/{bookKey}/phonebookContact
@param homeMobile [required] Home mobile phone number of the contact
@param surname [required] Contact surname
@param homePhone [required] Home landline phone number of the contact
@param name [required] Name of the contact
@param group [required] Group name of the phonebook
@param workMobile [required] Mobile phone office number of the contact
@param workPhone [required] Landline phone office number of the contact
@param serviceName [required] The internal name of your SMS offer
@param bookKey [required] Identifier of the phonebook | [
"Create",
"a",
"phonebook",
"contact",
".",
"Return",
"identifier",
"of",
"the",
"phonebook",
"contact",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1192-L1205 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_exceptions_GET | public ArrayList<OvhException> serviceName_exceptions_GET(String serviceName, String receiver) throws IOException {
String qPath = "/sms/{serviceName}/exceptions";
StringBuilder sb = path(qPath, serviceName);
query(sb, "receiver", receiver);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhException> serviceName_exceptions_GET(String serviceName, String receiver) throws IOException {
String qPath = "/sms/{serviceName}/exceptions";
StringBuilder sb = path(qPath, serviceName);
query(sb, "receiver", receiver);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhException",
">",
"serviceName_exceptions_GET",
"(",
"String",
"serviceName",
",",
"String",
"receiver",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/exceptions\"",
";",
"StringBuilder",
"sb",
"=",
"pa... | Describe filter exceptions in sms sending from a specific receiver.
REST: GET /sms/{serviceName}/exceptions
@param receiver [required] The receiver number to check
@param serviceName [required] The internal name of your SMS offer | [
"Describe",
"filter",
"exceptions",
"in",
"sms",
"sending",
"from",
"a",
"specific",
"receiver",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1439-L1445 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_seeOffers_GET | public ArrayList<OvhPackOffer> serviceName_seeOffers_GET(String serviceName, OvhCountryEnum countryCurrencyPrice, net.minidev.ovh.api.sms.OvhCountryEnum countryDestination, OvhPackQuantityEnum quantity) throws IOException {
String qPath = "/sms/{serviceName}/seeOffers";
StringBuilder sb = path(qPath, serviceName);
query(sb, "countryCurrencyPrice", countryCurrencyPrice);
query(sb, "countryDestination", countryDestination);
query(sb, "quantity", quantity);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | java | public ArrayList<OvhPackOffer> serviceName_seeOffers_GET(String serviceName, OvhCountryEnum countryCurrencyPrice, net.minidev.ovh.api.sms.OvhCountryEnum countryDestination, OvhPackQuantityEnum quantity) throws IOException {
String qPath = "/sms/{serviceName}/seeOffers";
StringBuilder sb = path(qPath, serviceName);
query(sb, "countryCurrencyPrice", countryCurrencyPrice);
query(sb, "countryDestination", countryDestination);
query(sb, "quantity", quantity);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | [
"public",
"ArrayList",
"<",
"OvhPackOffer",
">",
"serviceName_seeOffers_GET",
"(",
"String",
"serviceName",
",",
"OvhCountryEnum",
"countryCurrencyPrice",
",",
"net",
".",
"minidev",
".",
"ovh",
".",
"api",
".",
"sms",
".",
"OvhCountryEnum",
"countryDestination",
",... | Describe SMS offers available.
REST: GET /sms/{serviceName}/seeOffers
@param countryCurrencyPrice [required] Filter to have the currency country prices
@param countryDestination [required] Filter to have the country destination
@param quantity [required] Sms pack offer quantity
@param serviceName [required] The internal name of your SMS offer | [
"Describe",
"SMS",
"offers",
"available",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1457-L1465 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_hlr_POST | public OvhSmsSendingReport serviceName_hlr_POST(String serviceName, String[] receivers, String receiversDocumentUrl) throws IOException {
String qPath = "/sms/{serviceName}/hlr";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "receivers", receivers);
addBody(o, "receiversDocumentUrl", receiversDocumentUrl);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhSmsSendingReport.class);
} | java | public OvhSmsSendingReport serviceName_hlr_POST(String serviceName, String[] receivers, String receiversDocumentUrl) throws IOException {
String qPath = "/sms/{serviceName}/hlr";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "receivers", receivers);
addBody(o, "receiversDocumentUrl", receiversDocumentUrl);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhSmsSendingReport.class);
} | [
"public",
"OvhSmsSendingReport",
"serviceName_hlr_POST",
"(",
"String",
"serviceName",
",",
"String",
"[",
"]",
"receivers",
",",
"String",
"receiversDocumentUrl",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/hlr\"",
";",
"StringBuild... | Add one or several sending hlr lookup request
REST: POST /sms/{serviceName}/hlr
@param receiversDocumentUrl [required] The receivers document url link in csv format
@param receivers [required] The receivers
@param serviceName [required] The internal name of your SMS offer | [
"Add",
"one",
"or",
"several",
"sending",
"hlr",
"lookup",
"request"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1517-L1525 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_transferCredits_POST | public void serviceName_transferCredits_POST(String serviceName, Double credits, String smsAccountTarget) throws IOException {
String qPath = "/sms/{serviceName}/transferCredits";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "credits", credits);
addBody(o, "smsAccountTarget", smsAccountTarget);
exec(qPath, "POST", sb.toString(), o);
} | java | public void serviceName_transferCredits_POST(String serviceName, Double credits, String smsAccountTarget) throws IOException {
String qPath = "/sms/{serviceName}/transferCredits";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "credits", credits);
addBody(o, "smsAccountTarget", smsAccountTarget);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"serviceName_transferCredits_POST",
"(",
"String",
"serviceName",
",",
"Double",
"credits",
",",
"String",
"smsAccountTarget",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/transferCredits\"",
";",
"StringBuilder",
"sb"... | Credit transfer between two sms accounts.
REST: POST /sms/{serviceName}/transferCredits
@param smsAccountTarget [required] Sms account destination.
@param credits [required] Amount of credits to transfer.
@param serviceName [required] The internal name of your SMS offer | [
"Credit",
"transfer",
"between",
"two",
"sms",
"accounts",
"."
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1535-L1542 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_templatesControl_name_relaunchValidation_POST | public void serviceName_templatesControl_name_relaunchValidation_POST(String serviceName, String name, String description, String message) throws IOException {
String qPath = "/sms/{serviceName}/templatesControl/{name}/relaunchValidation";
StringBuilder sb = path(qPath, serviceName, name);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "message", message);
exec(qPath, "POST", sb.toString(), o);
} | java | public void serviceName_templatesControl_name_relaunchValidation_POST(String serviceName, String name, String description, String message) throws IOException {
String qPath = "/sms/{serviceName}/templatesControl/{name}/relaunchValidation";
StringBuilder sb = path(qPath, serviceName, name);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "message", message);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"serviceName_templatesControl_name_relaunchValidation_POST",
"(",
"String",
"serviceName",
",",
"String",
"name",
",",
"String",
"description",
",",
"String",
"message",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/{serviceName}/tem... | Attempt a new validation after moderation refusal
REST: POST /sms/{serviceName}/templatesControl/{name}/relaunchValidation
@param description [required] Template description
@param message [required] Message pattern to be moderated. Use "#VALUE#" format for dynamic text area
@param serviceName [required] The internal name of your SMS offer
@param name [required] Name of the template | [
"Attempt",
"a",
"new",
"validation",
"after",
"moderation",
"refusal"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1649-L1656 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.serviceName_templatesControl_POST | public void serviceName_templatesControl_POST(String serviceName, OvhTypeTemplateEnum activity, String description, String message, String name, String reason) throws IOException {
String qPath = "/sms/{serviceName}/templatesControl";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "activity", activity);
addBody(o, "description", description);
addBody(o, "message", message);
addBody(o, "name", name);
addBody(o, "reason", reason);
exec(qPath, "POST", sb.toString(), o);
} | java | public void serviceName_templatesControl_POST(String serviceName, OvhTypeTemplateEnum activity, String description, String message, String name, String reason) throws IOException {
String qPath = "/sms/{serviceName}/templatesControl";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "activity", activity);
addBody(o, "description", description);
addBody(o, "message", message);
addBody(o, "name", name);
addBody(o, "reason", reason);
exec(qPath, "POST", sb.toString(), o);
} | [
"public",
"void",
"serviceName_templatesControl_POST",
"(",
"String",
"serviceName",
",",
"OvhTypeTemplateEnum",
"activity",
",",
"String",
"description",
",",
"String",
"message",
",",
"String",
"name",
",",
"String",
"reason",
")",
"throws",
"IOException",
"{",
"S... | Create the sms template control given
REST: POST /sms/{serviceName}/templatesControl
@param message [required] Message pattern to be moderated. Use "#VALUE#" format for dynamic text area.
@param description [required] Template description
@param name [required] Name of the template
@param reason [required] Message seen by the moderator
@param activity [required] Specify the kind of template
@param serviceName [required] The internal name of your SMS offer | [
"Create",
"the",
"sms",
"template",
"control",
"given"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1682-L1692 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java | ApiOvhSms.ptts_GET | public OvhPttDetails ptts_GET(Long ptt) throws IOException {
String qPath = "/sms/ptts";
StringBuilder sb = path(qPath);
query(sb, "ptt", ptt);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPttDetails.class);
} | java | public OvhPttDetails ptts_GET(Long ptt) throws IOException {
String qPath = "/sms/ptts";
StringBuilder sb = path(qPath);
query(sb, "ptt", ptt);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPttDetails.class);
} | [
"public",
"OvhPttDetails",
"ptts_GET",
"(",
"Long",
"ptt",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/sms/ptts\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
")",
";",
"query",
"(",
"sb",
",",
"\"ptt\"",
",",
"ptt",
")",
"... | Get informations about the given ptt code
REST: GET /sms/ptts
@param ptt [required] The premium transaction tracking code | [
"Get",
"informations",
"about",
"the",
"given",
"ptt",
"code"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-sms/src/main/java/net/minidev/ovh/api/ApiOvhSms.java#L1721-L1727 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-dbaastimeseries/src/main/java/net/minidev/ovh/api/ApiOvhDbaastimeseries.java | ApiOvhDbaastimeseries.serviceName_token_opentsdb_tokenId_GET | public OvhOpenTSDBToken serviceName_token_opentsdb_tokenId_GET(String serviceName, String tokenId) throws IOException {
String qPath = "/dbaas/timeseries/{serviceName}/token/opentsdb/{tokenId}";
StringBuilder sb = path(qPath, serviceName, tokenId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhOpenTSDBToken.class);
} | java | public OvhOpenTSDBToken serviceName_token_opentsdb_tokenId_GET(String serviceName, String tokenId) throws IOException {
String qPath = "/dbaas/timeseries/{serviceName}/token/opentsdb/{tokenId}";
StringBuilder sb = path(qPath, serviceName, tokenId);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhOpenTSDBToken.class);
} | [
"public",
"OvhOpenTSDBToken",
"serviceName_token_opentsdb_tokenId_GET",
"(",
"String",
"serviceName",
",",
"String",
"tokenId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/dbaas/timeseries/{serviceName}/token/opentsdb/{tokenId}\"",
";",
"StringBuilder",
"sb",... | Get a OpenTSDB token
REST: GET /dbaas/timeseries/{serviceName}/token/opentsdb/{tokenId}
@param serviceName [required] Service Name
@param tokenId [required] token id
API beta | [
"Get",
"a",
"OpenTSDB",
"token"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaastimeseries/src/main/java/net/minidev/ovh/api/ApiOvhDbaastimeseries.java#L101-L106 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-dbaastimeseries/src/main/java/net/minidev/ovh/api/ApiOvhDbaastimeseries.java | ApiOvhDbaastimeseries.serviceName_token_opentsdb_POST | public OvhOpenTSDBToken serviceName_token_opentsdb_POST(String serviceName, String description, String permission, OvhTag[] tags) throws IOException {
String qPath = "/dbaas/timeseries/{serviceName}/token/opentsdb";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "permission", permission);
addBody(o, "tags", tags);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhOpenTSDBToken.class);
} | java | public OvhOpenTSDBToken serviceName_token_opentsdb_POST(String serviceName, String description, String permission, OvhTag[] tags) throws IOException {
String qPath = "/dbaas/timeseries/{serviceName}/token/opentsdb";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "permission", permission);
addBody(o, "tags", tags);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhOpenTSDBToken.class);
} | [
"public",
"OvhOpenTSDBToken",
"serviceName_token_opentsdb_POST",
"(",
"String",
"serviceName",
",",
"String",
"description",
",",
"String",
"permission",
",",
"OvhTag",
"[",
"]",
"tags",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/dbaas/timeseries/{... | Create a OpenTSDB token
REST: POST /dbaas/timeseries/{serviceName}/token/opentsdb
@param serviceName [required] Service Name
@param description [required] Token description
@param permission [required] Permission
@param tags [required] Tags to apply
API beta | [
"Create",
"a",
"OpenTSDB",
"token"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaastimeseries/src/main/java/net/minidev/ovh/api/ApiOvhDbaastimeseries.java#L151-L160 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-dbaastimeseries/src/main/java/net/minidev/ovh/api/ApiOvhDbaastimeseries.java | ApiOvhDbaastimeseries.serviceName_key_POST | public OvhKey serviceName_key_POST(String serviceName, String description, String[] permissions, OvhTag[] tags) throws IOException {
String qPath = "/dbaas/timeseries/{serviceName}/key";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "permissions", permissions);
addBody(o, "tags", tags);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhKey.class);
} | java | public OvhKey serviceName_key_POST(String serviceName, String description, String[] permissions, OvhTag[] tags) throws IOException {
String qPath = "/dbaas/timeseries/{serviceName}/key";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "description", description);
addBody(o, "permissions", permissions);
addBody(o, "tags", tags);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhKey.class);
} | [
"public",
"OvhKey",
"serviceName_key_POST",
"(",
"String",
"serviceName",
",",
"String",
"description",
",",
"String",
"[",
"]",
"permissions",
",",
"OvhTag",
"[",
"]",
"tags",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/dbaas/timeseries/{servic... | Create a key for a project
REST: POST /dbaas/timeseries/{serviceName}/key
@param serviceName [required] Service Name
@param description [required] Description
@param permissions [required] Permissions for this token
@param tags [required] Descriptive tags
@deprecated | [
"Create",
"a",
"key",
"for",
"a",
"project"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaastimeseries/src/main/java/net/minidev/ovh/api/ApiOvhDbaastimeseries.java#L187-L196 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-vrack/src/main/java/net/minidev/ovh/api/ApiOvhVrack.java | ApiOvhVrack.serviceName_dedicatedCloudDatacenter_datacenter_move_POST | public OvhTask serviceName_dedicatedCloudDatacenter_datacenter_move_POST(String serviceName, String datacenter, String targetServiceName) throws IOException {
String qPath = "/vrack/{serviceName}/dedicatedCloudDatacenter/{datacenter}/move";
StringBuilder sb = path(qPath, serviceName, datacenter);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "targetServiceName", targetServiceName);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_dedicatedCloudDatacenter_datacenter_move_POST(String serviceName, String datacenter, String targetServiceName) throws IOException {
String qPath = "/vrack/{serviceName}/dedicatedCloudDatacenter/{datacenter}/move";
StringBuilder sb = path(qPath, serviceName, datacenter);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "targetServiceName", targetServiceName);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_dedicatedCloudDatacenter_datacenter_move_POST",
"(",
"String",
"serviceName",
",",
"String",
"datacenter",
",",
"String",
"targetServiceName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/vrack/{serviceName}/dedicatedCloudData... | Move your dedicatedCloud datacenter from a Vrack to another
REST: POST /vrack/{serviceName}/dedicatedCloudDatacenter/{datacenter}/move
@param targetServiceName [required] The internal name of your target vrack
@param serviceName [required] The internal name of your vrack
@param datacenter [required] Your dedicatedCloud datacenter name | [
"Move",
"your",
"dedicatedCloud",
"datacenter",
"from",
"a",
"Vrack",
"to",
"another"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vrack/src/main/java/net/minidev/ovh/api/ApiOvhVrack.java#L138-L145 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-vrack/src/main/java/net/minidev/ovh/api/ApiOvhVrack.java | ApiOvhVrack.serviceName_dedicatedServer_dedicatedServer_mrtg_GET | public ArrayList<OvhMrtgTimestampValue> serviceName_dedicatedServer_dedicatedServer_mrtg_GET(String serviceName, String dedicatedServer, OvhMrtgPeriodEnum period, OvhMrtgTypeEnum type) throws IOException {
String qPath = "/vrack/{serviceName}/dedicatedServer/{dedicatedServer}/mrtg";
StringBuilder sb = path(qPath, serviceName, dedicatedServer);
query(sb, "period", period);
query(sb, "type", type);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<OvhMrtgTimestampValue> serviceName_dedicatedServer_dedicatedServer_mrtg_GET(String serviceName, String dedicatedServer, OvhMrtgPeriodEnum period, OvhMrtgTypeEnum type) throws IOException {
String qPath = "/vrack/{serviceName}/dedicatedServer/{dedicatedServer}/mrtg";
StringBuilder sb = path(qPath, serviceName, dedicatedServer);
query(sb, "period", period);
query(sb, "type", type);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"OvhMrtgTimestampValue",
">",
"serviceName_dedicatedServer_dedicatedServer_mrtg_GET",
"(",
"String",
"serviceName",
",",
"String",
"dedicatedServer",
",",
"OvhMrtgPeriodEnum",
"period",
",",
"OvhMrtgTypeEnum",
"type",
")",
"throws",
"IOException",
... | Retrieve vrack traffic graph values
REST: GET /vrack/{serviceName}/dedicatedServer/{dedicatedServer}/mrtg
@param period [required] mrtg period
@param type [required] mrtg type
@param serviceName [required] The internal name of your vrack
@param dedicatedServer [required] Dedicated Server
@deprecated | [
"Retrieve",
"vrack",
"traffic",
"graph",
"values"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vrack/src/main/java/net/minidev/ovh/api/ApiOvhVrack.java#L323-L330 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-vrack/src/main/java/net/minidev/ovh/api/ApiOvhVrack.java | ApiOvhVrack.serviceName_ip_ip_availableZone_GET | public ArrayList<OvhVrackZoneEnum> serviceName_ip_ip_availableZone_GET(String serviceName, String ip) throws IOException {
String qPath = "/vrack/{serviceName}/ip/{ip}/availableZone";
StringBuilder sb = path(qPath, serviceName, ip);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhVrackZoneEnum> serviceName_ip_ip_availableZone_GET(String serviceName, String ip) throws IOException {
String qPath = "/vrack/{serviceName}/ip/{ip}/availableZone";
StringBuilder sb = path(qPath, serviceName, ip);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhVrackZoneEnum",
">",
"serviceName_ip_ip_availableZone_GET",
"(",
"String",
"serviceName",
",",
"String",
"ip",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/vrack/{serviceName}/ip/{ip}/availableZone\"",
";",
"StringBuilder",
... | Zone available to announce your block
REST: GET /vrack/{serviceName}/ip/{ip}/availableZone
@param serviceName [required] The internal name of your vrack
@param ip [required] Your IP block | [
"Zone",
"available",
"to",
"announce",
"your",
"block"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-vrack/src/main/java/net/minidev/ovh/api/ApiOvhVrack.java#L470-L475 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-msServices/src/main/java/net/minidev/ovh/api/ApiOvhMsServices.java | ApiOvhMsServices.serviceName_account_userPrincipalName_sync_POST | public OvhTask serviceName_account_userPrincipalName_sync_POST(String serviceName, String userPrincipalName, OvhSyncLicenseEnum license) throws IOException {
String qPath = "/msServices/{serviceName}/account/{userPrincipalName}/sync";
StringBuilder sb = path(qPath, serviceName, userPrincipalName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "license", license);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_account_userPrincipalName_sync_POST(String serviceName, String userPrincipalName, OvhSyncLicenseEnum license) throws IOException {
String qPath = "/msServices/{serviceName}/account/{userPrincipalName}/sync";
StringBuilder sb = path(qPath, serviceName, userPrincipalName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "license", license);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_account_userPrincipalName_sync_POST",
"(",
"String",
"serviceName",
",",
"String",
"userPrincipalName",
",",
"OvhSyncLicenseEnum",
"license",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/msServices/{serviceName}/account/{userP... | Create new sync account
REST: POST /msServices/{serviceName}/account/{userPrincipalName}/sync
@param license [required] Sync account license
@param serviceName [required] The internal name of your Active Directory organization
@param userPrincipalName [required] User Principal Name
API beta | [
"Create",
"new",
"sync",
"account"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-msServices/src/main/java/net/minidev/ovh/api/ApiOvhMsServices.java#L173-L180 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-msServices/src/main/java/net/minidev/ovh/api/ApiOvhMsServices.java | ApiOvhMsServices.serviceName_account_userPrincipalName_mfa_disable_POST | public OvhTask serviceName_account_userPrincipalName_mfa_disable_POST(String serviceName, String userPrincipalName, Long period) throws IOException {
String qPath = "/msServices/{serviceName}/account/{userPrincipalName}/mfa/disable";
StringBuilder sb = path(qPath, serviceName, userPrincipalName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "period", period);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | java | public OvhTask serviceName_account_userPrincipalName_mfa_disable_POST(String serviceName, String userPrincipalName, Long period) throws IOException {
String qPath = "/msServices/{serviceName}/account/{userPrincipalName}/mfa/disable";
StringBuilder sb = path(qPath, serviceName, userPrincipalName);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "period", period);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhTask.class);
} | [
"public",
"OvhTask",
"serviceName_account_userPrincipalName_mfa_disable_POST",
"(",
"String",
"serviceName",
",",
"String",
"userPrincipalName",
",",
"Long",
"period",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/msServices/{serviceName}/account/{userPrincipal... | Disable Multi Factor Authentication for a period of time
REST: POST /msServices/{serviceName}/account/{userPrincipalName}/mfa/disable
@param period [required] Multi Factor Authentication disable period in hours
@param serviceName [required] The internal name of your Active Directory organization
@param userPrincipalName [required] User Principal Name
API beta | [
"Disable",
"Multi",
"Factor",
"Authentication",
"for",
"a",
"period",
"of",
"time"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-msServices/src/main/java/net/minidev/ovh/api/ApiOvhMsServices.java#L304-L311 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-msServices/src/main/java/net/minidev/ovh/api/ApiOvhMsServices.java | ApiOvhMsServices.serviceName_account_userPrincipalName_exchange_configure_POST | public OvhExchangeTask serviceName_account_userPrincipalName_exchange_configure_POST(String serviceName, String userPrincipalName) throws IOException {
String qPath = "/msServices/{serviceName}/account/{userPrincipalName}/exchange/configure";
StringBuilder sb = path(qPath, serviceName, userPrincipalName);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhExchangeTask.class);
} | java | public OvhExchangeTask serviceName_account_userPrincipalName_exchange_configure_POST(String serviceName, String userPrincipalName) throws IOException {
String qPath = "/msServices/{serviceName}/account/{userPrincipalName}/exchange/configure";
StringBuilder sb = path(qPath, serviceName, userPrincipalName);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhExchangeTask.class);
} | [
"public",
"OvhExchangeTask",
"serviceName_account_userPrincipalName_exchange_configure_POST",
"(",
"String",
"serviceName",
",",
"String",
"userPrincipalName",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/msServices/{serviceName}/account/{userPrincipalName}/exchange... | Configure mailbox to be operational
REST: POST /msServices/{serviceName}/account/{userPrincipalName}/exchange/configure
@param serviceName [required] The internal name of your Active Directory organization
@param userPrincipalName [required] User Principal Name
API beta | [
"Configure",
"mailbox",
"to",
"be",
"operational"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-msServices/src/main/java/net/minidev/ovh/api/ApiOvhMsServices.java#L418-L423 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_phishing_GET | public ArrayList<Long> ip_phishing_GET(String ip, String ipOnAntiphishing, OvhAntiphishingStateEnum state) throws IOException {
String qPath = "/ip/{ip}/phishing";
StringBuilder sb = path(qPath, ip);
query(sb, "ipOnAntiphishing", ipOnAntiphishing);
query(sb, "state", state);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<Long> ip_phishing_GET(String ip, String ipOnAntiphishing, OvhAntiphishingStateEnum state) throws IOException {
String qPath = "/ip/{ip}/phishing";
StringBuilder sb = path(qPath, ip);
query(sb, "ipOnAntiphishing", ipOnAntiphishing);
query(sb, "state", state);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"ip_phishing_GET",
"(",
"String",
"ip",
",",
"String",
"ipOnAntiphishing",
",",
"OvhAntiphishingStateEnum",
"state",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/phishing\"",
";",
"StringBuilder",
"s... | Ip under anti-phishing
REST: GET /ip/{ip}/phishing
@param state [required] Filter the value of state property (=)
@param ipOnAntiphishing [required] Filter the value of ipOnAntiphishing property (within or equals)
@param ip [required] | [
"Ip",
"under",
"anti",
"-",
"phishing"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L81-L88 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_delegation_target_DELETE | public void ip_delegation_target_DELETE(String ip, String target) throws IOException {
String qPath = "/ip/{ip}/delegation/{target}";
StringBuilder sb = path(qPath, ip, target);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void ip_delegation_target_DELETE(String ip, String target) throws IOException {
String qPath = "/ip/{ip}/delegation/{target}";
StringBuilder sb = path(qPath, ip, target);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"ip_delegation_target_DELETE",
"(",
"String",
"ip",
",",
"String",
"target",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/delegation/{target}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
",",
"... | Delete a target for reverse delegation on IPv6 subnet
REST: DELETE /ip/{ip}/delegation/{target}
@param ip [required]
@param target [required] NS target for delegation | [
"Delete",
"a",
"target",
"for",
"reverse",
"delegation",
"on",
"IPv6",
"subnet"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L126-L130 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_delegation_POST | public OvhReverseDelegation ip_delegation_POST(String ip, String target) throws IOException {
String qPath = "/ip/{ip}/delegation";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "target", target);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReverseDelegation.class);
} | java | public OvhReverseDelegation ip_delegation_POST(String ip, String target) throws IOException {
String qPath = "/ip/{ip}/delegation";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "target", target);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReverseDelegation.class);
} | [
"public",
"OvhReverseDelegation",
"ip_delegation_POST",
"(",
"String",
"ip",
",",
"String",
"target",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/delegation\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
")",
";"... | Add target for reverse delegation on IPv6 subnet
REST: POST /ip/{ip}/delegation
@param target [required] Target for reverse delegation on IPv6
@param ip [required] | [
"Add",
"target",
"for",
"reverse",
"delegation",
"on",
"IPv6",
"subnet"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L153-L160 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_spam_ipSpamming_unblock_POST | public OvhSpamIp ip_spam_ipSpamming_unblock_POST(String ip, String ipSpamming) throws IOException {
String qPath = "/ip/{ip}/spam/{ipSpamming}/unblock";
StringBuilder sb = path(qPath, ip, ipSpamming);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhSpamIp.class);
} | java | public OvhSpamIp ip_spam_ipSpamming_unblock_POST(String ip, String ipSpamming) throws IOException {
String qPath = "/ip/{ip}/spam/{ipSpamming}/unblock";
StringBuilder sb = path(qPath, ip, ipSpamming);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhSpamIp.class);
} | [
"public",
"OvhSpamIp",
"ip_spam_ipSpamming_unblock_POST",
"(",
"String",
"ip",
",",
"String",
"ipSpamming",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/spam/{ipSpamming}/unblock\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",... | Release the ip from anti-spam system
REST: POST /ip/{ip}/spam/{ipSpamming}/unblock
@param ip [required]
@param ipSpamming [required] IP address which is sending spam | [
"Release",
"the",
"ip",
"from",
"anti",
"-",
"spam",
"system"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L210-L215 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_spam_ipSpamming_stats_GET | public ArrayList<OvhSpamStats> ip_spam_ipSpamming_stats_GET(String ip, String ipSpamming, Date from, Date to) throws IOException {
String qPath = "/ip/{ip}/spam/{ipSpamming}/stats";
StringBuilder sb = path(qPath, ip, ipSpamming);
query(sb, "from", from);
query(sb, "to", to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | java | public ArrayList<OvhSpamStats> ip_spam_ipSpamming_stats_GET(String ip, String ipSpamming, Date from, Date to) throws IOException {
String qPath = "/ip/{ip}/spam/{ipSpamming}/stats";
StringBuilder sb = path(qPath, ip, ipSpamming);
query(sb, "from", from);
query(sb, "to", to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t3);
} | [
"public",
"ArrayList",
"<",
"OvhSpamStats",
">",
"ip_spam_ipSpamming_stats_GET",
"(",
"String",
"ip",
",",
"String",
"ipSpamming",
",",
"Date",
"from",
",",
"Date",
"to",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/spam/{ipSpamming}/stats\... | Get statistics about the email traffic
REST: GET /ip/{ip}/spam/{ipSpamming}/stats
@param from [required] Start date
@param to [required] End date
@param ip [required]
@param ipSpamming [required] IP address which is sending spam | [
"Get",
"statistics",
"about",
"the",
"email",
"traffic"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L240-L247 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_arp_ipBlocked_unblock_POST | public void ip_arp_ipBlocked_unblock_POST(String ip, String ipBlocked) throws IOException {
String qPath = "/ip/{ip}/arp/{ipBlocked}/unblock";
StringBuilder sb = path(qPath, ip, ipBlocked);
exec(qPath, "POST", sb.toString(), null);
} | java | public void ip_arp_ipBlocked_unblock_POST(String ip, String ipBlocked) throws IOException {
String qPath = "/ip/{ip}/arp/{ipBlocked}/unblock";
StringBuilder sb = path(qPath, ip, ipBlocked);
exec(qPath, "POST", sb.toString(), null);
} | [
"public",
"void",
"ip_arp_ipBlocked_unblock_POST",
"(",
"String",
"ip",
",",
"String",
"ipBlocked",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/arp/{ipBlocked}/unblock\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
... | Unblock this IP
REST: POST /ip/{ip}/arp/{ipBlocked}/unblock
@param ip [required]
@param ipBlocked [required] your IP | [
"Unblock",
"this",
"IP"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L286-L290 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_migrationToken_POST | public OvhIpMigrationToken ip_migrationToken_POST(String ip, String customerId) throws IOException {
String qPath = "/ip/{ip}/migrationToken";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "customerId", customerId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhIpMigrationToken.class);
} | java | public OvhIpMigrationToken ip_migrationToken_POST(String ip, String customerId) throws IOException {
String qPath = "/ip/{ip}/migrationToken";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "customerId", customerId);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhIpMigrationToken.class);
} | [
"public",
"OvhIpMigrationToken",
"ip_migrationToken_POST",
"(",
"String",
"ip",
",",
"String",
"customerId",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/migrationToken\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
... | Generate a migration token
REST: POST /ip/{ip}/migrationToken
@param customerId [required] destination customer ID
@param ip [required] | [
"Generate",
"a",
"migration",
"token"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L312-L319 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_game_ipOnGame_rule_GET | public ArrayList<Long> ip_game_ipOnGame_rule_GET(String ip, String ipOnGame) throws IOException {
String qPath = "/ip/{ip}/game/{ipOnGame}/rule";
StringBuilder sb = path(qPath, ip, ipOnGame);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | java | public ArrayList<Long> ip_game_ipOnGame_rule_GET(String ip, String ipOnGame) throws IOException {
String qPath = "/ip/{ip}/game/{ipOnGame}/rule";
StringBuilder sb = path(qPath, ip, ipOnGame);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t1);
} | [
"public",
"ArrayList",
"<",
"Long",
">",
"ip_game_ipOnGame_rule_GET",
"(",
"String",
"ip",
",",
"String",
"ipOnGame",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/game/{ipOnGame}/rule\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPa... | IDs of rules configured for this IP
REST: GET /ip/{ip}/game/{ipOnGame}/rule
@param ip [required]
@param ipOnGame [required] | [
"IDs",
"of",
"rules",
"configured",
"for",
"this",
"IP"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L358-L363 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_game_ipOnGame_rule_POST | public OvhGameMitigationRule ip_game_ipOnGame_rule_POST(String ip, String ipOnGame, OvhRange<Long> ports, OvhGameMitigationRuleProtocolEnum protocol) throws IOException {
String qPath = "/ip/{ip}/game/{ipOnGame}/rule";
StringBuilder sb = path(qPath, ip, ipOnGame);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ports", ports);
addBody(o, "protocol", protocol);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhGameMitigationRule.class);
} | java | public OvhGameMitigationRule ip_game_ipOnGame_rule_POST(String ip, String ipOnGame, OvhRange<Long> ports, OvhGameMitigationRuleProtocolEnum protocol) throws IOException {
String qPath = "/ip/{ip}/game/{ipOnGame}/rule";
StringBuilder sb = path(qPath, ip, ipOnGame);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ports", ports);
addBody(o, "protocol", protocol);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhGameMitigationRule.class);
} | [
"public",
"OvhGameMitigationRule",
"ip_game_ipOnGame_rule_POST",
"(",
"String",
"ip",
",",
"String",
"ipOnGame",
",",
"OvhRange",
"<",
"Long",
">",
"ports",
",",
"OvhGameMitigationRuleProtocolEnum",
"protocol",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"="... | Add new rule on your IP
REST: POST /ip/{ip}/game/{ipOnGame}/rule
@param protocol [required] The protocol running behind the given port
@param ports [required] The UDP port range to apply the rule on
@param ip [required]
@param ipOnGame [required] | [
"Add",
"new",
"rule",
"on",
"your",
"IP"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L374-L382 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_reverse_ipReverse_DELETE | public void ip_reverse_ipReverse_DELETE(String ip, String ipReverse) throws IOException {
String qPath = "/ip/{ip}/reverse/{ipReverse}";
StringBuilder sb = path(qPath, ip, ipReverse);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void ip_reverse_ipReverse_DELETE(String ip, String ipReverse) throws IOException {
String qPath = "/ip/{ip}/reverse/{ipReverse}";
StringBuilder sb = path(qPath, ip, ipReverse);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"ip_reverse_ipReverse_DELETE",
"(",
"String",
"ip",
",",
"String",
"ipReverse",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/reverse/{ipReverse}\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
",",
... | Delete a reverse on one IP
REST: DELETE /ip/{ip}/reverse/{ipReverse}
@param ip [required]
@param ipReverse [required] | [
"Delete",
"a",
"reverse",
"on",
"one",
"IP"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L446-L450 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_reverse_POST | public OvhReverseIp ip_reverse_POST(String ip, String ipReverse, String reverse) throws IOException {
String qPath = "/ip/{ip}/reverse";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ipReverse", ipReverse);
addBody(o, "reverse", reverse);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReverseIp.class);
} | java | public OvhReverseIp ip_reverse_POST(String ip, String ipReverse, String reverse) throws IOException {
String qPath = "/ip/{ip}/reverse";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ipReverse", ipReverse);
addBody(o, "reverse", reverse);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhReverseIp.class);
} | [
"public",
"OvhReverseIp",
"ip_reverse_POST",
"(",
"String",
"ip",
",",
"String",
"ipReverse",
",",
"String",
"reverse",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/reverse\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",... | Add reverse on an ip
REST: POST /ip/{ip}/reverse
@param reverse [required]
@param ipReverse [required]
@param ip [required] | [
"Add",
"reverse",
"on",
"an",
"ip"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L473-L481 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_move_POST | public OvhIpTask ip_move_POST(String ip, String nexthop, String to) throws IOException {
String qPath = "/ip/{ip}/move";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "nexthop", nexthop);
addBody(o, "to", to);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhIpTask.class);
} | java | public OvhIpTask ip_move_POST(String ip, String nexthop, String to) throws IOException {
String qPath = "/ip/{ip}/move";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "nexthop", nexthop);
addBody(o, "to", to);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhIpTask.class);
} | [
"public",
"OvhIpTask",
"ip_move_POST",
"(",
"String",
"ip",
",",
"String",
"nexthop",
",",
"String",
"to",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/move\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
")",
... | Move this IP to another service
REST: POST /ip/{ip}/move
@param nexthop [required] Nexthop of destination service
@param to [required] Service destination
@param ip [required] | [
"Move",
"this",
"IP",
"to",
"another",
"service"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L505-L513 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_move_GET | public OvhDestinations ip_move_GET(String ip) throws IOException {
String qPath = "/ip/{ip}/move";
StringBuilder sb = path(qPath, ip);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhDestinations.class);
} | java | public OvhDestinations ip_move_GET(String ip) throws IOException {
String qPath = "/ip/{ip}/move";
StringBuilder sb = path(qPath, ip);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhDestinations.class);
} | [
"public",
"OvhDestinations",
"ip_move_GET",
"(",
"String",
"ip",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/move\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
")",
";",
"String",
"resp",
"=",
"exec",
"(",
... | List services available as a destination
REST: GET /ip/{ip}/move
@param ip [required]
API beta | [
"List",
"services",
"available",
"as",
"a",
"destination"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L523-L528 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_license_plesk_GET | public ArrayList<String> ip_license_plesk_GET(String ip, String ipAddress) throws IOException {
String qPath = "/ip/{ip}/license/plesk";
StringBuilder sb = path(qPath, ip);
query(sb, "ipAddress", ipAddress);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<String> ip_license_plesk_GET(String ip, String ipAddress) throws IOException {
String qPath = "/ip/{ip}/license/plesk";
StringBuilder sb = path(qPath, ip);
query(sb, "ipAddress", ipAddress);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"ip_license_plesk_GET",
"(",
"String",
"ip",
",",
"String",
"ipAddress",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/license/plesk\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",... | Plesk licenses associated to this IP
REST: GET /ip/{ip}/license/plesk
@param ipAddress [required] Filter the value of ipAddress property (=)
@param ip [required] | [
"Plesk",
"licenses",
"associated",
"to",
"this",
"IP"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L642-L648 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_park_POST | public OvhIpTask ip_park_POST(String ip) throws IOException {
String qPath = "/ip/{ip}/park";
StringBuilder sb = path(qPath, ip);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhIpTask.class);
} | java | public OvhIpTask ip_park_POST(String ip) throws IOException {
String qPath = "/ip/{ip}/park";
StringBuilder sb = path(qPath, ip);
String resp = exec(qPath, "POST", sb.toString(), null);
return convertTo(resp, OvhIpTask.class);
} | [
"public",
"OvhIpTask",
"ip_park_POST",
"(",
"String",
"ip",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/park\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
")",
";",
"String",
"resp",
"=",
"exec",
"(",
"qPa... | Park this IP
REST: POST /ip/{ip}/park
@param ip [required] | [
"Park",
"this",
"IP"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L656-L661 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_mitigation_ipOnMitigation_stats_GET | public ArrayList<OvhMitigationStats> ip_mitigation_ipOnMitigation_stats_GET(String ip, String ipOnMitigation, Date from, OvhMitigationStatsScaleEnum scale, Date to) throws IOException {
String qPath = "/ip/{ip}/mitigation/{ipOnMitigation}/stats";
StringBuilder sb = path(qPath, ip, ipOnMitigation);
query(sb, "from", from);
query(sb, "scale", scale);
query(sb, "to", to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | java | public ArrayList<OvhMitigationStats> ip_mitigation_ipOnMitigation_stats_GET(String ip, String ipOnMitigation, Date from, OvhMitigationStatsScaleEnum scale, Date to) throws IOException {
String qPath = "/ip/{ip}/mitigation/{ipOnMitigation}/stats";
StringBuilder sb = path(qPath, ip, ipOnMitigation);
query(sb, "from", from);
query(sb, "scale", scale);
query(sb, "to", to);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t4);
} | [
"public",
"ArrayList",
"<",
"OvhMitigationStats",
">",
"ip_mitigation_ipOnMitigation_stats_GET",
"(",
"String",
"ip",
",",
"String",
"ipOnMitigation",
",",
"Date",
"from",
",",
"OvhMitigationStatsScaleEnum",
"scale",
",",
"Date",
"to",
")",
"throws",
"IOException",
"{... | AntiDDOS option. Get statistics about your traffic in and out during this mitigation
REST: GET /ip/{ip}/mitigation/{ipOnMitigation}/stats
@param to [required] End date
@param from [required] Start date
@param scale [required] Scale of aggregation
@param ip [required]
@param ipOnMitigation [required] | [
"AntiDDOS",
"option",
".",
"Get",
"statistics",
"about",
"your",
"traffic",
"in",
"and",
"out",
"during",
"this",
"mitigation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L741-L749 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_mitigation_ipOnMitigation_topStream_GET | public ArrayList<OvhMitigationDetailedStats> ip_mitigation_ipOnMitigation_topStream_GET(String ip, String ipOnMitigation, Date date, OvhMitigationStatsScaleEnum scale) throws IOException {
String qPath = "/ip/{ip}/mitigation/{ipOnMitigation}/topStream";
StringBuilder sb = path(qPath, ip, ipOnMitigation);
query(sb, "date", date);
query(sb, "scale", scale);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | java | public ArrayList<OvhMitigationDetailedStats> ip_mitigation_ipOnMitigation_topStream_GET(String ip, String ipOnMitigation, Date date, OvhMitigationStatsScaleEnum scale) throws IOException {
String qPath = "/ip/{ip}/mitigation/{ipOnMitigation}/topStream";
StringBuilder sb = path(qPath, ip, ipOnMitigation);
query(sb, "date", date);
query(sb, "scale", scale);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t5);
} | [
"public",
"ArrayList",
"<",
"OvhMitigationDetailedStats",
">",
"ip_mitigation_ipOnMitigation_topStream_GET",
"(",
"String",
"ip",
",",
"String",
"ipOnMitigation",
",",
"Date",
"date",
",",
"OvhMitigationStatsScaleEnum",
"scale",
")",
"throws",
"IOException",
"{",
"String"... | AntiDDOS option. Get top stream on your ip on a specific timestamp
REST: GET /ip/{ip}/mitigation/{ipOnMitigation}/topStream
@param date [required] Date to view top traffic
@param scale [required] Scale of aggregation
@param ip [required]
@param ipOnMitigation [required] | [
"AntiDDOS",
"option",
".",
"Get",
"top",
"stream",
"on",
"your",
"ip",
"on",
"a",
"specific",
"timestamp"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L761-L768 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_mitigation_GET | public ArrayList<String> ip_mitigation_GET(String ip, Boolean auto, OvhMitigationStateEnum state) throws IOException {
String qPath = "/ip/{ip}/mitigation";
StringBuilder sb = path(qPath, ip);
query(sb, "auto", auto);
query(sb, "state", state);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | java | public ArrayList<String> ip_mitigation_GET(String ip, Boolean auto, OvhMitigationStateEnum state) throws IOException {
String qPath = "/ip/{ip}/mitigation";
StringBuilder sb = path(qPath, ip);
query(sb, "auto", auto);
query(sb, "state", state);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t2);
} | [
"public",
"ArrayList",
"<",
"String",
">",
"ip_mitigation_GET",
"(",
"String",
"ip",
",",
"Boolean",
"auto",
",",
"OvhMitigationStateEnum",
"state",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/mitigation\"",
";",
"StringBuilder",
"sb",
"... | Ip under mitigation
REST: GET /ip/{ip}/mitigation
@param state [required] Filter the value of state property (=)
@param auto [required] Filter the value of auto property (=)
@param ip [required] | [
"Ip",
"under",
"mitigation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L779-L786 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_mitigation_POST | public OvhMitigationIp ip_mitigation_POST(String ip, String ipOnMitigation) throws IOException {
String qPath = "/ip/{ip}/mitigation";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ipOnMitigation", ipOnMitigation);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhMitigationIp.class);
} | java | public OvhMitigationIp ip_mitigation_POST(String ip, String ipOnMitigation) throws IOException {
String qPath = "/ip/{ip}/mitigation";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "ipOnMitigation", ipOnMitigation);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhMitigationIp.class);
} | [
"public",
"OvhMitigationIp",
"ip_mitigation_POST",
"(",
"String",
"ip",
",",
"String",
"ipOnMitigation",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/mitigation\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
")",
... | AntiDDOS option. Add new IP on permanent mitigation
REST: POST /ip/{ip}/mitigation
@param ipOnMitigation [required]
@param ip [required] | [
"AntiDDOS",
"option",
".",
"Add",
"new",
"IP",
"on",
"permanent",
"mitigation"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L795-L802 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_changeOrg_POST | public OvhIpTask ip_changeOrg_POST(String ip, String organisation) throws IOException {
String qPath = "/ip/{ip}/changeOrg";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "organisation", organisation);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhIpTask.class);
} | java | public OvhIpTask ip_changeOrg_POST(String ip, String organisation) throws IOException {
String qPath = "/ip/{ip}/changeOrg";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "organisation", organisation);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhIpTask.class);
} | [
"public",
"OvhIpTask",
"ip_changeOrg_POST",
"(",
"String",
"ip",
",",
"String",
"organisation",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/changeOrg\"",
";",
"StringBuilder",
"sb",
"=",
"path",
"(",
"qPath",
",",
"ip",
")",
";",
"Ha... | Change organisation of this IP
REST: POST /ip/{ip}/changeOrg
@param organisation [required] Your organisation id (RIPE_XXXX) to add on block informations
@param ip [required] | [
"Change",
"organisation",
"of",
"this",
"IP"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L811-L818 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_mitigationProfiles_ipMitigationProfile_DELETE | public void ip_mitigationProfiles_ipMitigationProfile_DELETE(String ip, String ipMitigationProfile) throws IOException {
String qPath = "/ip/{ip}/mitigationProfiles/{ipMitigationProfile}";
StringBuilder sb = path(qPath, ip, ipMitigationProfile);
exec(qPath, "DELETE", sb.toString(), null);
} | java | public void ip_mitigationProfiles_ipMitigationProfile_DELETE(String ip, String ipMitigationProfile) throws IOException {
String qPath = "/ip/{ip}/mitigationProfiles/{ipMitigationProfile}";
StringBuilder sb = path(qPath, ip, ipMitigationProfile);
exec(qPath, "DELETE", sb.toString(), null);
} | [
"public",
"void",
"ip_mitigationProfiles_ipMitigationProfile_DELETE",
"(",
"String",
"ip",
",",
"String",
"ipMitigationProfile",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/mitigationProfiles/{ipMitigationProfile}\"",
";",
"StringBuilder",
"sb",
"="... | Delete mitigation profile
REST: DELETE /ip/{ip}/mitigationProfiles/{ipMitigationProfile}
@param ip [required]
@param ipMitigationProfile [required] | [
"Delete",
"mitigation",
"profile"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L928-L932 | train |
UrielCh/ovh-java-sdk | ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java | ApiOvhIp.ip_mitigationProfiles_POST | public OvhMitigationProfile ip_mitigationProfiles_POST(String ip, OvhMitigationProfileAutoMitigationTimeOutEnum autoMitigationTimeOut, String ipMitigationProfile) throws IOException {
String qPath = "/ip/{ip}/mitigationProfiles";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "autoMitigationTimeOut", autoMitigationTimeOut);
addBody(o, "ipMitigationProfile", ipMitigationProfile);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhMitigationProfile.class);
} | java | public OvhMitigationProfile ip_mitigationProfiles_POST(String ip, OvhMitigationProfileAutoMitigationTimeOutEnum autoMitigationTimeOut, String ipMitigationProfile) throws IOException {
String qPath = "/ip/{ip}/mitigationProfiles";
StringBuilder sb = path(qPath, ip);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "autoMitigationTimeOut", autoMitigationTimeOut);
addBody(o, "ipMitigationProfile", ipMitigationProfile);
String resp = exec(qPath, "POST", sb.toString(), o);
return convertTo(resp, OvhMitigationProfile.class);
} | [
"public",
"OvhMitigationProfile",
"ip_mitigationProfiles_POST",
"(",
"String",
"ip",
",",
"OvhMitigationProfileAutoMitigationTimeOutEnum",
"autoMitigationTimeOut",
",",
"String",
"ipMitigationProfile",
")",
"throws",
"IOException",
"{",
"String",
"qPath",
"=",
"\"/ip/{ip}/mitig... | Create new profile for one of your ip
REST: POST /ip/{ip}/mitigationProfiles
@param ipMitigationProfile [required]
@param autoMitigationTimeOut [required] Delay to wait before remove ip from auto mitigation after an attack
@param ip [required] | [
"Create",
"new",
"profile",
"for",
"one",
"of",
"your",
"ip"
] | 6d531a40e56e09701943e334c25f90f640c55701 | https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-ip/src/main/java/net/minidev/ovh/api/ApiOvhIp.java#L955-L963 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.