code stringlengths 73 34.1k | label stringclasses 1
value |
|---|---|
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 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, Obje... | 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);
} | 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... | 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 = n... | 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);... | 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>(... | 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);
} | 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);
} | 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, "r... | java |
public OvhAfnicCorporationTrademarkContact data_afnicCorporationTrademarkInformation_afnicCorporationTrademarkId_GET(Long afnicCorporationTrademarkId) throws IOException {
String qPath = "/domain/data/afnicCorporationTrademarkInformation/{afnicCorporationTrademarkId}";
StringBuilder sb = path(qPath, afnicCorporatio... | 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<St... | 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);
} | 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);
} | 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 conv... | 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);
} | 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, Obj... | 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, "... | 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);
} | 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);
} | 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);
} | 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, "a... | 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);
} | 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, Obje... | 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... | 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", creatio... | 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);... | 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);
} | 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);
a... | 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);
St... | 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, n... | 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);
} | 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 convert... | 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, O... | 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);
... | 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, "POS... | 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);
} | 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)... | 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... | 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);
} | 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... | 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, "field... | 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... | 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);
retu... | 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);
H... | 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 conver... | 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 Hash... | 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<Strin... | 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", descript... | 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);
} | 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}/virt... | 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, serviceN... | 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 ... | 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);
} | 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);
} | 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);
H... | 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... | 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, ... | 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);
Stri... | 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 = e... | 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 res... | 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";
St... | 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 conver... | 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);
... | 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", receiv... | 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... | 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>... | 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 Has... | 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);
} | 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 c... | 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... | 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, "descriptio... | 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, ... | 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, s... | 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, t... | 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,... | 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, ... | 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 ... | 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", s... | 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);
} | 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);
... | 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);
} | 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", s... | 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);
} | 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", s... | 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);
} | 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, Ob... | 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);
} | 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 re... | 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.to... | 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);
} | 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);
} | 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);
} | 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... | 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... | 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 c... | 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", s... | 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(), ... | 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);
} | 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, O... | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.