idx int64 0 165k | question stringlengths 73 5.81k | target stringlengths 5 918 |
|---|---|---|
13,000 | 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 ) ; } | Recommended domain DNS records |
13,001 | 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 ) ; } | Change mailing list options |
13,002 | 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 ) ; } | Delete existing Mailing list |
13,003 | 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 ) ; } | Add subscriber to mailing list |
13,004 | 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 ) ; } | Create new mailingList |
13,005 | 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 ) ; } | 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 |
13,006 | 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 ) ; } | Launch a contact change procedure |
13,007 | 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 ) ; } | Get the current credential details |
13,008 | 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 ) ; } | Get the current time of the OVH servers since UNIX epoch |
13,009 | 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 ) ; } | Request a new credential for your application |
13,010 | 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 ) ; } | Retrieve a corporation trademark information according to Afnic |
13,011 | 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 ) ; } | Post a new corporation trademark information according to Afnic |
13,012 | 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 ) ; } | List all your SMD files |
13,013 | 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 ) ; } | Retrieve information about a SMD file |
13,014 | 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 ) ; } | Modify an existing SMD file |
13,015 | 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 ) ; } | Delete a SMD file |
13,016 | 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 ) ; } | Post a new association information according to Afnic |
13,017 | 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 ) ; } | Retrieve an association information according to Afnic |
13,018 | 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 ) ; } | List all the extensions for a specific country |
13,019 | 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 ) ; } | Retrieve claim notices associated to a domain |
13,020 | 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 ) ; } | Retrieve information about a Pro Contact |
13,021 | 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 ) ; } | Post new information about . pro contact information |
13,022 | 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 ) ; } | Delete a DynHost login |
13,023 | 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 ) ; } | Change password of the DynHost login |
13,024 | 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 ) ; } | Create a new DynHost login |
13,025 | 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 ) ; } | Zone restore points |
13,026 | 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 ) ; } | Restore the DNS zone |
13,027 | 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 ) ; } | Relaunch the task |
13,028 | 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 ) ; } | Reset the DNS zone |
13,029 | 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 ) ; } | Records of the zone |
13,030 | 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 ) ; } | Delete a name server |
13,031 | 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 ) ; } | Return the list of all . uk registrars |
13,032 | 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 ) ; } | Delete the glue record |
13,033 | 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 ) ; } | Update the glue record |
13,034 | 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 ) ; } | List of glue record |
13,035 | 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 ) ; } | Activate the DNS zone for this domain |
13,036 | 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 ) ; } | Retrieve optin rule |
13,037 | 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 ) ; } | Retrieve emails obfuscation rule |
13,038 | 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 ) ; } | List of domain s DS Records |
13,039 | 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 ) ; } | Delete a whois obfuscator |
13,040 | 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 ) ; } | List of whois obfuscators |
13,041 | 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 ) ; } | Add whois obfuscators |
13,042 | 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 ) ; } | Regenerate the obfuscated email address |
13,043 | 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 ) ; } | Retrieve optin configuration |
13,044 | 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 ) ; } | Save a new optin configuration |
13,045 | 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 ) ; } | Retrieve obfuscated emails configuration |
13,046 | 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 ) ; } | Save a new obfuscated emails configuration |
13,047 | 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 ) ; } | Refresh an obfuscated emails configuration |
13,048 | 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 ) ; } | Create the sms sender given |
13,049 | 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 ) ; } | Delete the sms sender given |
13,050 | 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 ) ; } | Sms sent associated to the sms account |
13,051 | 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 ) ; } | Sms received associated to the sms account |
13,052 | 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 ) ; } | 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 . |
13,053 | 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 ) ; } | Delete the document from the slot |
13,054 | 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 ) ; } | Delete the sms user given |
13,055 | 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 ) ; } | Add a new document of csv receivers |
13,056 | 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 ) ; } | Sms sent associated to the sms user |
13,057 | 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 ) ; } | Add one or several sending jobs |
13,058 | 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 ) ; } | Sms received associated to the sms user |
13,059 | 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 ) ; } | The senders that are attached to your personal informations or OVH services and that can be automatically validated |
13,060 | 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 ) ; } | Export the phonebook s contacts |
13,061 | 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 ) ; } | Create a phonebook contact . Return identifier of the phonebook contact . |
13,062 | 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 ) ; } | Describe filter exceptions in sms sending from a specific receiver . |
13,063 | 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 ) ; } | Describe SMS offers available . |
13,064 | 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 ) ; } | Add one or several sending hlr lookup request |
13,065 | 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 ) ; } | Credit transfer between two sms accounts . |
13,066 | 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 ) ; } | Attempt a new validation after moderation refusal |
13,067 | 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 ) ; } | Create the sms template control given |
13,068 | 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 ) ; } | Get informations about the given ptt code |
13,069 | 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 ) ; } | Get a OpenTSDB token |
13,070 | 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 ) ; } | Create a OpenTSDB token |
13,071 | 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 ) ; } | Create a key for a project |
13,072 | 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 ) ; } | Move your dedicatedCloud datacenter from a Vrack to another |
13,073 | 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 ) ; } | Retrieve vrack traffic graph values |
13,074 | 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 ) ; } | Zone available to announce your block |
13,075 | 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 ) ; } | Create new sync account |
13,076 | 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 ) ; } | Disable Multi Factor Authentication for a period of time |
13,077 | 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 ) ; } | Configure mailbox to be operational |
13,078 | 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 ) ; } | Ip under anti - phishing |
13,079 | 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 ) ; } | Delete a target for reverse delegation on IPv6 subnet |
13,080 | 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 ) ; } | Add target for reverse delegation on IPv6 subnet |
13,081 | 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 ) ; } | Release the ip from anti - spam system |
13,082 | 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 ) ; } | Get statistics about the email traffic |
13,083 | 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 ) ; } | Unblock this IP |
13,084 | 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 ) ; } | Generate a migration token |
13,085 | 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 ) ; } | IDs of rules configured for this IP |
13,086 | 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 ) ; } | Add new rule on your IP |
13,087 | 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 ) ; } | Delete a reverse on one IP |
13,088 | 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 ) ; } | Add reverse on an ip |
13,089 | 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 ) ; } | Move this IP to another service |
13,090 | 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 ) ; } | List services available as a destination |
13,091 | 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 ) ; } | Plesk licenses associated to this IP |
13,092 | 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 ) ; } | Park this IP |
13,093 | 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 ) ; } | AntiDDOS option . Get statistics about your traffic in and out during this mitigation |
13,094 | 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 ) ; } | AntiDDOS option . Get top stream on your ip on a specific timestamp |
13,095 | 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 ) ; } | Ip under mitigation |
13,096 | 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 ) ; } | AntiDDOS option . Add new IP on permanent mitigation |
13,097 | 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 ) ; } | Change organisation of this IP |
13,098 | 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 ) ; } | Delete mitigation profile |
13,099 | 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 ) ; } | Create new profile for one of your ip |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.