idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
12,700
public void serviceName_publiccloud_node_nodeId_DELETE ( String serviceName , String nodeId ) throws IOException { String qPath = "/kube/{serviceName}/publiccloud/node/{nodeId}" ; StringBuilder sb = path ( qPath , serviceName , nodeId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Delete a node on your cluster
92
6
12,701
public OvhNode serviceName_publiccloud_node_nodeId_GET ( String serviceName , String nodeId ) throws IOException { String qPath = "/kube/{serviceName}/publiccloud/node/{nodeId}" ; StringBuilder sb = path ( qPath , serviceName , nodeId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhNode . class ) ; }
Get information on a specific node on your cluster
106
9
12,702
public void serviceName_updatePolicy_PUT ( String serviceName , OvhUpdatePolicy updatePolicy ) throws IOException { String qPath = "/kube/{serviceName}/updatePolicy" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "updatePolicy" , updatePolicy ) ; exec ( qPath , "PUT" , sb . toString ( ) , o ) ; }
Change the update policy of your cluster
111
7
12,703
public final String getColumnName ( int index ) { if ( index < 0 || index >= columns . size ( ) ) { throw new InvalidOperationException ( "Invalid column index: " + index ) ; } return columns . get ( index ) ; }
Get column name .
52
4
12,704
public OvhTask serviceName_partition_partitionName_quota_uid_DELETE ( String serviceName , String partitionName , Long uid ) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition/{partitionName}/quota/{uid}" ; StringBuilder sb = path ( qPath , serviceName , partitionName , uid ) ; String resp = exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTask . class ) ; }
Delete a given quota
129
4
12,705
public OvhTask serviceName_partition_partitionName_quota_POST ( String serviceName , String partitionName , Long size , Long uid ) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition/{partitionName}/quota" ; StringBuilder sb = path ( qPath , serviceName , partitionName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "size" , size ) ; addBody ( o , "uid" , uid ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Set a new quota
165
4
12,706
public OvhTask serviceName_partition_POST ( String serviceName , String partitionName , OvhProtocolEnum protocol , Long size ) throws IOException { String qPath = "/dedicated/nas/{serviceName}/partition" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "partitionName" , partitionName ) ; addBody ( o , "protocol" , protocol ) ; addBody ( o , "size" , size ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create a new partition
165
4
12,707
@ JsonIgnore public boolean isErrorCode ( String ... codes ) { for ( String err : codes ) if ( errorCode . equals ( err ) ) return true ; return false ; }
this function will be deprecated and replace by an Enum ;
40
12
12,708
public ArrayList < OvhCountryEnum > countries_GET ( OvhOvhCompanyEnum ovhCompany , OvhOvhSubsidiaryEnum ovhSubsidiary ) throws IOException { String qPath = "/newAccount/countries" ; StringBuilder sb = path ( qPath ) ; query ( sb , "ovhCompany" , ovhCompany ) ; query ( sb , "ovhSubsidiary" , ovhSubsidiary ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
All available countries for an ovh company and an ovh subsidiary
140
13
12,709
public ArrayList < OvhContract > contracts_GET ( OvhOvhCompanyEnum company , OvhOvhSubsidiaryEnum subsidiary ) throws IOException { String qPath = "/newAccount/contracts" ; StringBuilder sb = path ( qPath ) ; query ( sb , "company" , company ) ; query ( sb , "subsidiary" , subsidiary ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t3 ) ; }
Returns the contracts that governs the creation of an OVH identifier
122
13
12,710
public ArrayList < OvhCreationRule > rules_POST ( OvhCreationRulesActionEnum action , String address , String area , String birthCity , String birthDay , String city , String companyNationalIdentificationNumber , String corporationType , OvhCountryEnum country , String email , String fax , String firstname , OvhLanguageEnum language , OvhLegalFormEnum legalform , String name , String nationalIdentificationNumber , String organisation , OvhOvhCompanyEnum ovhCompany , OvhOvhSubsidiaryEnum ovhSubsidiary , String phone , OvhCountryEnum phoneCountry , OvhGenderEnum sex , String spareEmail , String vat , String zip ) throws IOException { String qPath = "/newAccount/rules" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "action" , action ) ; addBody ( o , "address" , address ) ; addBody ( o , "area" , area ) ; addBody ( o , "birthCity" , birthCity ) ; addBody ( o , "birthDay" , birthDay ) ; addBody ( o , "city" , city ) ; addBody ( o , "companyNationalIdentificationNumber" , companyNationalIdentificationNumber ) ; addBody ( o , "corporationType" , corporationType ) ; addBody ( o , "country" , country ) ; addBody ( o , "email" , email ) ; addBody ( o , "fax" , fax ) ; addBody ( o , "firstname" , firstname ) ; addBody ( o , "language" , language ) ; addBody ( o , "legalform" , legalform ) ; addBody ( o , "name" , name ) ; addBody ( o , "nationalIdentificationNumber" , nationalIdentificationNumber ) ; addBody ( o , "organisation" , organisation ) ; addBody ( o , "ovhCompany" , ovhCompany ) ; addBody ( o , "ovhSubsidiary" , ovhSubsidiary ) ; addBody ( o , "phone" , phone ) ; addBody ( o , "phoneCountry" , phoneCountry ) ; addBody ( o , "sex" , sex ) ; addBody ( o , "spareEmail" , spareEmail ) ; addBody ( o , "vat" , vat ) ; addBody ( o , "zip" , zip ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t4 ) ; }
Give all the rules to follow in order to create and update an OVH identifier
581
17
12,711
public ArrayList < String > area_GET ( OvhCountryEnum country ) throws IOException { String qPath = "/newAccount/area" ; StringBuilder sb = path ( qPath ) ; query ( sb , "country" , country ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
All available areas for a given country
90
7
12,712
public OvhCreationRules creationRules_GET ( OvhCountryEnum country , OvhLegalFormEnum legalform , OvhOvhCompanyEnum ovhCompany , OvhOvhSubsidiaryEnum ovhSubsidiary ) throws IOException { String qPath = "/newAccount/creationRules" ; StringBuilder sb = path ( qPath ) ; query ( sb , "country" , country ) ; query ( sb , "legalform" , legalform ) ; query ( sb , "ovhCompany" , ovhCompany ) ; query ( sb , "ovhSubsidiary" , ovhSubsidiary ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhCreationRules . class ) ; }
Give all the rules to follow in order to create an OVH identifier
184
15
12,713
public OvhTask serviceName_accessPoint_accessPointId_changeSessionTimeout_POST ( String serviceName , Long accessPointId , Long expiration , OvhAccessPointTypeEnum onSingleAP ) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint/{accessPointId}/changeSessionTimeout" ; StringBuilder sb = path ( qPath , serviceName , accessPointId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "expiration" , expiration ) ; addBody ( o , "onSingleAP" , onSingleAP ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Manage your session Timeout on Unified Access Gateway
179
10
12,714
public OvhTask serviceName_accessPoint_accessPointId_disableTwoFA_POST ( String serviceName , Long accessPointId ) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint/{accessPointId}/disableTwoFA" ; StringBuilder sb = path ( qPath , serviceName , accessPointId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTask . class ) ; }
Disable two factor authentication on your pool
116
7
12,715
public ArrayList < OvhTask > serviceName_accessPoint_POST ( String serviceName , OvhPoolType poolType , String privateBlock , Long privateVlan , String vrouterPoolPublicIp ) throws IOException { String qPath = "/horizonView/{serviceName}/accessPoint" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "poolType" , poolType ) ; addBody ( o , "privateBlock" , privateBlock ) ; addBody ( o , "privateVlan" , privateVlan ) ; addBody ( o , "vrouterPoolPublicIp" , vrouterPoolPublicIp ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t2 ) ; }
Add new access point to create a new network
203
9
12,716
public OvhTask serviceName_domainTrust_domainTrustId_addChildDomain_POST ( String serviceName , Long domainTrustId , String activeDirectoryIP , String domain , String passphrase , String serviceAccountPassword ) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addChildDomain" ; StringBuilder sb = path ( qPath , serviceName , domainTrustId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "activeDirectoryIP" , activeDirectoryIP ) ; addBody ( o , "domain" , domain ) ; addBody ( o , "passphrase" , passphrase ) ; addBody ( o , "serviceAccountPassword" , serviceAccountPassword ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Add a child domain for this domain .
211
8
12,717
public OvhTask serviceName_domainTrust_domainTrustId_addDomainUserOnComposer_POST ( String serviceName , Long domainTrustId , String domain , String password , String username ) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainUserOnComposer" ; StringBuilder sb = path ( qPath , serviceName , domainTrustId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "domain" , domain ) ; addBody ( o , "password" , password ) ; addBody ( o , "username" , username ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Add a domain user to add your desktop in your Active Directory
189
12
12,718
public OvhTask serviceName_domainTrust_domainTrustId_addDomainController_POST ( String serviceName , Long domainTrustId , String domain , String domainControllerIp ) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust/{domainTrustId}/addDomainController" ; StringBuilder sb = path ( qPath , serviceName , domainTrustId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "domain" , domain ) ; addBody ( o , "domainControllerIp" , domainControllerIp ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Add a Domain Controller for this domain .
175
8
12,719
public ArrayList < OvhTask > serviceName_domainTrust_POST ( String serviceName , String activeDirectoryIP , String dns1 , String dns2 , String domain ) throws IOException { String qPath = "/horizonView/{serviceName}/domainTrust" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "activeDirectoryIP" , activeDirectoryIP ) ; addBody ( o , "dns1" , dns1 ) ; addBody ( o , "dns2" , dns2 ) ; addBody ( o , "domain" , domain ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t2 ) ; }
Link your Active Directory to your CDI Active Directory
188
10
12,720
public ArrayList < OvhTask > serviceName_customerNetwork_customerNetworkId_DELETE ( String serviceName , Long customerNetworkId ) throws IOException { String qPath = "/horizonView/{serviceName}/customerNetwork/{customerNetworkId}" ; StringBuilder sb = path ( qPath , serviceName , customerNetworkId ) ; String resp = exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
Delete this Customer Network
116
4
12,721
public ArrayList < OvhTask > serviceName_dedicatedHorizon_customerUser_POST ( String serviceName , String email , String password , String username ) throws IOException { String qPath = "/horizonView/{serviceName}/dedicatedHorizon/customerUser" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "email" , email ) ; addBody ( o , "password" , password ) ; addBody ( o , "username" , username ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t2 ) ; }
Create a new customer user
167
5
12,722
public OvhTask service_account_email_fullAccess_POST ( String service , String email , Long allowedAccountId ) throws IOException { String qPath = "/email/pro/{service}/account/{email}/fullAccess" ; StringBuilder sb = path ( qPath , service , email ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "allowedAccountId" , allowedAccountId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Allow full access to a user
141
6
12,723
public OvhTask service_account_email_fullAccess_allowedAccountId_DELETE ( String service , String email , Long allowedAccountId ) throws IOException { String qPath = "/email/pro/{service}/account/{email}/fullAccess/{allowedAccountId}" ; StringBuilder sb = path ( qPath , service , email , allowedAccountId ) ; String resp = exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTask . class ) ; }
Revoke full access
122
4
12,724
public OvhTask service_domain_POST ( String service , Boolean configureAutodiscover , Boolean configureMx , String mxRelay , String name , OvhDomainTypeEnum type ) throws IOException { String qPath = "/email/pro/{service}/domain" ; StringBuilder sb = path ( qPath , service ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "configureAutodiscover" , configureAutodiscover ) ; addBody ( o , "configureMx" , configureMx ) ; addBody ( o , "mxRelay" , mxRelay ) ; addBody ( o , "name" , name ) ; addBody ( o , "type" , type ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create new domain in pro services
208
6
12,725
public ArrayList < OvhRenewDescription > serviceId_renew_GET ( String serviceId , Boolean includeOptions ) throws IOException { String qPath = "/service/{serviceId}/renew" ; StringBuilder sb = path ( qPath , serviceId ) ; query ( sb , "includeOptions" , includeOptions ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
List possible renews for this service
108
7
12,726
public OvhRenewOrder serviceId_renew_POST ( String serviceId , Boolean dryRun , String duration , Long [ ] services ) throws IOException { String qPath = "/service/{serviceId}/renew" ; StringBuilder sb = path ( qPath , serviceId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "dryRun" , dryRun ) ; addBody ( o , "duration" , duration ) ; addBody ( o , "services" , services ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhRenewOrder . class ) ; }
Create a renew order
161
4
12,727
public void serviceId_suspend_POST ( Long serviceId ) throws IOException { String qPath = "/service/{serviceId}/suspend" ; StringBuilder sb = path ( qPath , serviceId ) ; exec ( qPath , "POST" , sb . toString ( ) , null ) ; }
Suspend the service . The service won t be accessible but you will still be charged for it
69
20
12,728
@ SafeVarargs public final QueryBuilder arguments ( Object ... args ) { set ( Param . QUERY_ARGS , "" ) ; queryArgs = args . clone ( ) ; return this ; }
Set arguments for query .
41
5
12,729
public final Query build ( DB db ) { return new Query ( CallInfo . create ( ) , db , toSQL ( ) , queryArgs ) ; }
Build the query .
32
4
12,730
public ArrayList < OvhDeviceAction > serviceName_device_restoreBackup_POST ( String serviceName , String backupId ) throws IOException { String qPath = "/overTheBox/{serviceName}/device/restoreBackup" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "backupId" , backupId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t4 ) ; }
Create a group of actions to restore a given backup
138
10
12,731
public OvhRemoteAccess serviceName_remoteAccesses_POST ( String serviceName , String allowedIp , Date expirationDate , Long exposedPort , String publicKey ) throws IOException { String qPath = "/overTheBox/{serviceName}/remoteAccesses" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "allowedIp" , allowedIp ) ; addBody ( o , "expirationDate" , expirationDate ) ; addBody ( o , "exposedPort" , exposedPort ) ; addBody ( o , "publicKey" , publicKey ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhRemoteAccess . class ) ; }
Create a new remote access for the service
190
8
12,732
public void serviceName_remoteAccesses_remoteAccessId_DELETE ( String serviceName , String remoteAccessId ) throws IOException { String qPath = "/overTheBox/{serviceName}/remoteAccesses/{remoteAccessId}" ; StringBuilder sb = path ( qPath , serviceName , remoteAccessId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Delete a remote access
95
4
12,733
public void serviceName_linkDevice_POST ( String serviceName , String deviceId ) throws IOException { String qPath = "/overTheBox/{serviceName}/linkDevice" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "deviceId" , deviceId ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Link a device to this service
109
6
12,734
public ArrayList < OvhAvailableMigrationOffer > serviceName_migration_offers_GET ( String serviceName ) throws IOException { String qPath = "/overTheBox/{serviceName}/migration/offers" ; StringBuilder sb = path ( qPath , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t5 ) ; }
List all available offers one can migrate to
100
8
12,735
public ArrayList < String > cartServiceOption_domain_GET ( String whoisOwner ) throws IOException { String qPath = "/order/cartServiceOption/domain" ; StringBuilder sb = path ( qPath ) ; query ( sb , "whoisOwner" , whoisOwner ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
List available services
98
3
12,736
public ArrayList < String > dedicated_server_serviceName_feature_GET ( String serviceName , OvhOrderableSysFeatureEnum feature ) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/feature" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "feature" , feature ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for feature option
114
7
12,737
public ArrayList < String > dedicated_server_serviceName_traffic_GET ( String serviceName , OvhTrafficOrderEnum traffic ) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/traffic" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "traffic" , traffic ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for traffic option
117
7
12,738
public ArrayList < String > dedicated_server_serviceName_staticIP_GET ( String serviceName , OvhIpStaticCountryEnum country ) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/staticIP" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "country" , country ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for staticIP option
117
8
12,739
public ArrayList < String > dedicated_server_serviceName_backupStorage_GET ( String serviceName , OvhBackupStorageCapacityEnum capacity ) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/backupStorage" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "capacity" , capacity ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for backupStorage option
120
8
12,740
public ArrayList < String > dedicated_server_serviceName_bandwidth_GET ( String serviceName , OvhBandwidthOrderEnum bandwidth , OvhBandwidthOrderTypeEnum type ) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/bandwidth" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "bandwidth" , bandwidth ) ; query ( sb , "type" , type ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for bandwidth option
139
7
12,741
public ArrayList < String > dedicated_server_serviceName_ipMigration_GET ( String serviceName , String ip , String token ) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/ipMigration" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "ip" , ip ) ; query ( sb , "token" , token ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for ipMigration option
127
9
12,742
public ArrayList < String > dedicated_server_serviceName_firewall_GET ( String serviceName , OvhFirewallModelEnum firewallModel ) throws IOException { String qPath = "/order/dedicated/server/{serviceName}/firewall" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "firewallModel" , firewallModel ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for firewall option
120
7
12,743
public ArrayList < String > vps_serviceName_plesk_GET ( String serviceName , OvhPleskLicenseDomainNumberEnum domainNumber ) throws IOException { String qPath = "/order/vps/{serviceName}/plesk" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "domainNumber" , domainNumber ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for plesk option
119
9
12,744
public ArrayList < String > vps_serviceName_additionalDisk_GET ( String serviceName , OvhAdditionalDiskSizeEnum additionalDiskSize ) throws IOException { String qPath = "/order/vps/{serviceName}/additionalDisk" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "additionalDiskSize" , additionalDiskSize ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for additionalDisk option
122
8
12,745
public ArrayList < String > email_exchange_organizationName_service_exchangeService_outlook_GET ( String organizationName , String exchangeService , OvhOutlookVersionEnum licence , String primaryEmailAddress ) throws IOException { String qPath = "/order/email/exchange/{organizationName}/service/{exchangeService}/outlook" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; query ( sb , "licence" , licence ) ; query ( sb , "primaryEmailAddress" , primaryEmailAddress ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for outlook option
162
7
12,746
public ArrayList < String > email_exchange_organizationName_service_exchangeService_accountUpgrade_GET ( String organizationName , String exchangeService , OvhAccountQuotaEnum newQuota , String primaryEmailAddress ) throws IOException { String qPath = "/order/email/exchange/{organizationName}/service/{exchangeService}/accountUpgrade" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; query ( sb , "newQuota" , newQuota ) ; query ( sb , "primaryEmailAddress" , primaryEmailAddress ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for accountUpgrade option
167
8
12,747
public OvhOrderUpgradeOperationAndOrder upgrade_sslGateway_serviceName_planCode_POST ( String serviceName , String planCode , Boolean autoPayWithPreferredPaymentMethod , Long quantity ) throws IOException { String qPath = "/order/upgrade/sslGateway/{serviceName}/{planCode}" ; StringBuilder sb = path ( qPath , serviceName , planCode ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "autoPayWithPreferredPaymentMethod" , autoPayWithPreferredPaymentMethod ) ; addBody ( o , "quantity" , quantity ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOrderUpgradeOperationAndOrder . class ) ; }
Perform the requested upgrade of your service
188
8
12,748
public OvhOrderUpgradeOperationAndOrder upgrade_privateCloud_serviceName_planCode_GET ( String serviceName , String planCode , Long quantity ) throws IOException { String qPath = "/order/upgrade/privateCloud/{serviceName}/{planCode}" ; StringBuilder sb = path ( qPath , serviceName , planCode ) ; query ( sb , "quantity" , quantity ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhOrderUpgradeOperationAndOrder . class ) ; }
Get a provisional order for the selected upgrade of your service
130
11
12,749
public ArrayList < String > hosting_privateDatabase_serviceName_ram_GET ( String serviceName , OvhAvailableRamSizeEnum ram ) throws IOException { String qPath = "/order/hosting/privateDatabase/{serviceName}/ram" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "ram" , ram ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for ram option
116
7
12,750
public ArrayList < String > cdn_dedicated_serviceName_backend_GET ( String serviceName , Long backend ) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/backend" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "backend" , backend ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for backend option
113
7
12,751
public ArrayList < String > cdn_dedicated_serviceName_cacheRule_GET ( String serviceName , OvhOrderCacheRuleEnum cacheRule ) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/cacheRule" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "cacheRule" , cacheRule ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for cacheRule option
121
8
12,752
public ArrayList < String > cdn_dedicated_serviceName_quota_GET ( String serviceName , OvhOrderQuotaEnum quota ) throws IOException { String qPath = "/order/cdn/dedicated/{serviceName}/quota" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "quota" , quota ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for quota option
119
7
12,753
public ArrayList < String > cdn_webstorage_serviceName_storage_GET ( String serviceName , OvhOrderStorageEnum storage ) throws IOException { String qPath = "/order/cdn/webstorage/{serviceName}/storage" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "storage" , storage ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for storage option
115
7
12,754
public ArrayList < String > dedicatedCloud_serviceName_filer_GET ( String serviceName , Long datacenterId , String name , Long quantity ) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/filer" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "datacenterId" , datacenterId ) ; query ( sb , "name" , name ) ; query ( sb , "quantity" , quantity ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for filer option
148
8
12,755
public ArrayList < String > dedicatedCloud_serviceName_additionalBandwidth_GET ( String serviceName , OvhAdditionalBandwidthEnum bandwidth ) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/additionalBandwidth" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "bandwidth" , bandwidth ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for additionalBandwidth option
119
9
12,756
public ArrayList < String > dedicatedCloud_serviceName_upgradeRessource_GET ( String serviceName , OvhUpgradeTypeEnum upgradeType , Long upgradedRessourceId , OvhUpgradeRessourceTypeEnum upgradedRessourceType ) throws IOException { String qPath = "/order/dedicatedCloud/{serviceName}/upgradeRessource" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "upgradeType" , upgradeType ) ; query ( sb , "upgradedRessourceId" , upgradedRessourceId ) ; query ( sb , "upgradedRessourceType" , upgradedRessourceType ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Get allowed durations for upgradeRessource option
187
10
12,757
public OvhCatalog catalog_formatted_cloud_GET ( OvhOvhSubsidiaryEnum ovhSubsidiary ) throws IOException { String qPath = "/order/catalog/formatted/cloud" ; StringBuilder sb = path ( qPath ) ; query ( sb , "ovhSubsidiary" , ovhSubsidiary ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhCatalog . class ) ; }
Retrieve information of Public Cloud catalog
118
7
12,758
public net . minidev . ovh . api . order . catalog . pcc . OvhCatalog catalog_formatted_privateCloudReseller_GET ( OvhOvhSubsidiaryEnum ovhSubsidiary ) throws IOException { String qPath = "/order/catalog/formatted/privateCloudReseller" ; StringBuilder sb = path ( qPath ) ; query ( sb , "ovhSubsidiary" , ovhSubsidiary ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , net . minidev . ovh . api . order . catalog . pcc . OvhCatalog . class ) ; }
Retrieve information of Private Cloud Reseller catalog
159
9
12,759
public net . minidev . ovh . api . order . catalog . privatecloud . OvhCatalog catalog_formatted_privateCloudDC_GET ( OvhOvhSubsidiaryEnum ovhSubsidiary ) throws IOException { String qPath = "/order/catalog/formatted/privateCloudDC" ; StringBuilder sb = path ( qPath ) ; query ( sb , "ovhSubsidiary" , ovhSubsidiary ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , net . minidev . ovh . api . order . catalog . privatecloud . OvhCatalog . class ) ; }
Retrieve information of Private Cloud Dedicated Cloud catalog
158
10
12,760
public ArrayList < String > cart_GET ( String description ) throws IOException { String qPath = "/order/cart" ; StringBuilder sb = path ( qPath ) ; query ( sb , "description" , description ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
List of your OVH order carts
84
8
12,761
public OvhCart cart_POST ( String description , Date expire , OvhOvhSubsidiaryEnum ovhSubsidiary ) throws IOException { String qPath = "/order/cart" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "expire" , expire ) ; addBody ( o , "ovhSubsidiary" , ovhSubsidiary ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhCart . class ) ; }
Create a new OVH order cart
158
8
12,762
public ArrayList < OvhGenericProductDefinition > cart_cartId_dedicatedReseller_GET ( String cartId , String family , String planCode ) throws IOException { String qPath = "/order/cart/{cartId}/dedicatedReseller" ; StringBuilder sb = path ( qPath , cartId ) ; query ( sb , "family" , family ) ; query ( sb , "planCode" , planCode ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t3 ) ; }
Get informations about a dedicated server for US Reseller
132
11
12,763
public ArrayList < OvhWebHostingProductInformation > cart_cartId_webHosting_GET ( String cartId ) throws IOException { String qPath = "/order/cart/{cartId}/webHosting" ; StringBuilder sb = path ( qPath , cartId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t4 ) ; }
Get informations about webHosting offers
99
8
12,764
public OvhItem cart_cartId_dns_POST ( String cartId , String duration , String planCode , String pricingMode , Long quantity ) throws IOException { String qPath = "/order/cart/{cartId}/dns" ; StringBuilder sb = path ( qPath , cartId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "duration" , duration ) ; addBody ( o , "planCode" , planCode ) ; addBody ( o , "pricingMode" , pricingMode ) ; addBody ( o , "quantity" , quantity ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhItem . class ) ; }
Post a new DNS zone item in your cart
180
9
12,765
public OvhItem cart_cartId_item_itemId_GET ( String cartId , Long itemId ) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}" ; StringBuilder sb = path ( qPath , cartId , itemId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhItem . class ) ; }
Retrieve information about a specific item of a cart
104
10
12,766
public ArrayList < Long > cart_cartId_item_itemId_configuration_GET ( String cartId , Long itemId , String label ) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration" ; StringBuilder sb = path ( qPath , cartId , itemId ) ; query ( sb , "label" , label ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t5 ) ; }
Retrieve all configuration item of the cart item
125
9
12,767
public OvhConfigurationItem cart_cartId_item_itemId_configuration_POST ( String cartId , Long itemId , String label , String value ) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration" ; StringBuilder sb = path ( qPath , cartId , itemId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "label" , label ) ; addBody ( o , "value" , value ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhConfigurationItem . class ) ; }
Setup configuration item for the product
163
6
12,768
public OvhConfigurationItem cart_cartId_item_itemId_configuration_configurationId_GET ( String cartId , Long itemId , Long configurationId ) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration/{configurationId}" ; StringBuilder sb = path ( qPath , cartId , itemId , configurationId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhConfigurationItem . class ) ; }
Retrieve configuration item
129
4
12,769
public void cart_cartId_item_itemId_configuration_configurationId_DELETE ( String cartId , Long itemId , Long configurationId ) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/configuration/{configurationId}" ; StringBuilder sb = path ( qPath , cartId , itemId , configurationId ) ; execN ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Delete configuration item
113
3
12,770
public ArrayList < OvhConfigurationRequirements > cart_cartId_item_itemId_requiredConfiguration_GET ( String cartId , Long itemId ) throws IOException { String qPath = "/order/cart/{cartId}/item/{itemId}/requiredConfiguration" ; StringBuilder sb = path ( qPath , cartId , itemId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t6 ) ; }
Retrieve all required configuration item of the cart item
113
10
12,771
public ArrayList < Long > cart_cartId_item_GET ( String cartId ) throws IOException { String qPath = "/order/cart/{cartId}/item" ; StringBuilder sb = path ( qPath , cartId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t5 ) ; }
List all the items of a cart
89
7
12,772
public OvhCart cart_cartId_GET ( String cartId ) throws IOException { String qPath = "/order/cart/{cartId}" ; StringBuilder sb = path ( qPath , cartId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhCart . class ) ; }
Retrieve information about a specific cart
85
7
12,773
public OvhCart cart_cartId_PUT ( String cartId , String description , Date expire ) throws IOException { String qPath = "/order/cart/{cartId}" ; StringBuilder sb = path ( qPath , cartId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "expire" , expire ) ; String resp = execN ( qPath , "PUT" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhCart . class ) ; }
Modify information about a specific cart
136
7
12,774
public OvhOrder cart_cartId_checkout_POST ( String cartId , Boolean autoPayWithPreferredPaymentMethod , Boolean waiveRetractationPeriod ) throws IOException { String qPath = "/order/cart/{cartId}/checkout" ; StringBuilder sb = path ( qPath , cartId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "autoPayWithPreferredPaymentMethod" , autoPayWithPreferredPaymentMethod ) ; addBody ( o , "waiveRetractationPeriod" , waiveRetractationPeriod ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOrder . class ) ; }
Validate your shopping and create order
178
7
12,775
public void cart_cartId_assign_POST ( String cartId ) throws IOException { String qPath = "/order/cart/{cartId}/assign" ; StringBuilder sb = path ( qPath , cartId ) ; exec ( qPath , "POST" , sb . toString ( ) , null ) ; }
Assign a shopping cart to an loggedin client
73
10
12,776
public ArrayList < String > cart_cartId_coupon_POST ( String cartId , String coupon ) throws IOException { String qPath = "/order/cart/{cartId}/coupon" ; StringBuilder sb = path ( qPath , cartId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "coupon" , coupon ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t1 ) ; }
Add a new coupon to cart
130
6
12,777
public void cart_cartId_coupon_DELETE ( String cartId , String coupon ) throws IOException { String qPath = "/order/cart/{cartId}/coupon" ; StringBuilder sb = path ( qPath , cartId ) ; query ( sb , "coupon" , coupon ) ; execN ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Delete a coupon from cart
97
5
12,778
public ArrayList < OvhGenericProductDefinition > cart_cartId_csp2_GET ( String cartId ) throws IOException { String qPath = "/order/cart/{cartId}/csp2" ; StringBuilder sb = path ( qPath , cartId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t3 ) ; }
Get informations about SaaS CSP2 offers
97
11
12,779
public ArrayList < OvhGenericOptionDefinition > cart_cartId_csp2_options_GET ( String cartId , String planCode ) throws IOException { String qPath = "/order/cart/{cartId}/csp2/options" ; StringBuilder sb = path ( qPath , cartId ) ; query ( sb , "planCode" , planCode ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
Get informations about SaaS CSP2 options
119
11
12,780
public ArrayList < OvhProductInformation > cart_cartId_domainTransfer_GET ( String cartId , String domain ) throws IOException { String qPath = "/order/cart/{cartId}/domainTransfer" ; StringBuilder sb = path ( qPath , cartId ) ; query ( sb , "domain" , domain ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t7 ) ; }
Get informations about a domain name transfer
109
8
12,781
public OvhOrder cart_cartId_summary_GET ( String cartId ) throws IOException { String qPath = "/order/cart/{cartId}/summary" ; StringBuilder sb = path ( qPath , cartId ) ; String resp = execN ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhOrder . class ) ; }
Get a summary of your current order
90
7
12,782
public OvhTask organizationName_service_exchangeService_publicFolder_POST ( String organizationName , String exchangeService , OvhPublicFolderRightTypeEnum anonymousPermission , OvhPublicFolderRightTypeEnum defaultPermission , String path , Long quota , OvhPublicFolderTypeEnum type ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/publicFolder" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "anonymousPermission" , anonymousPermission ) ; addBody ( o , "defaultPermission" , defaultPermission ) ; addBody ( o , "path" , path ) ; addBody ( o , "quota" , quota ) ; addBody ( o , "type" , type ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create organization public folder
241
4
12,783
public OvhTask organizationName_service_exchangeService_publicFolder_path_permission_POST ( String organizationName , String exchangeService , String path , OvhPublicFolderRightTypeEnum accessRights , Long allowedAccountId ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/publicFolder/{path}/permission" ; StringBuilder sb = path ( qPath , organizationName , exchangeService , path ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "accessRights" , accessRights ) ; addBody ( o , "allowedAccountId" , allowedAccountId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create public folder permission
198
4
12,784
public OvhPublicFolderQuota organizationName_service_exchangeService_publicFolderQuota_GET ( String organizationName , String exchangeService ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/publicFolderQuota" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPublicFolderQuota . class ) ; }
Get public folder quota usage in total available space
122
9
12,785
public OvhTask organizationName_service_exchangeService_domain_POST ( String organizationName , String exchangeService , Boolean configureAutodiscover , Boolean configureMx , Boolean main , String mxRelay , String name , String organization2010 , OvhDomainTypeEnum type ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/domain" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "configureAutodiscover" , configureAutodiscover ) ; addBody ( o , "configureMx" , configureMx ) ; addBody ( o , "main" , main ) ; addBody ( o , "mxRelay" , mxRelay ) ; addBody ( o , "name" , name ) ; addBody ( o , "organization2010" , organization2010 ) ; addBody ( o , "type" , type ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create new domain in exchange services
269
6
12,786
public OvhTask organizationName_service_exchangeService_sharedAccount_POST ( String organizationName , String exchangeService , String displayName , String firstName , Boolean hiddenFromGAL , String initials , String lastName , OvhMailingFilterEnum [ ] mailingFilter , Long quota , String sharedEmailAddress ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/sharedAccount" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "displayName" , displayName ) ; addBody ( o , "firstName" , firstName ) ; addBody ( o , "hiddenFromGAL" , hiddenFromGAL ) ; addBody ( o , "initials" , initials ) ; addBody ( o , "lastName" , lastName ) ; addBody ( o , "mailingFilter" , mailingFilter ) ; addBody ( o , "quota" , quota ) ; addBody ( o , "sharedEmailAddress" , sharedEmailAddress ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create new shared mailbox in exchange server
290
7
12,787
public ArrayList < String > organizationName_service_exchangeService_externalContact_GET ( String organizationName , String exchangeService , String displayName , String externalEmailAddress , String firstName , Long id , String lastName ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/externalContact" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; query ( sb , "displayName" , displayName ) ; query ( sb , "externalEmailAddress" , externalEmailAddress ) ; query ( sb , "firstName" , firstName ) ; query ( sb , "id" , id ) ; query ( sb , "lastName" , lastName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
External contacts for this service
201
5
12,788
public OvhTask organizationName_service_exchangeService_renewSSL_POST ( String organizationName , String exchangeService , String dcv ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/renewSSL" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "dcv" , dcv ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Renew SSL if it will expire in next 30 days
152
11
12,789
public OvhTask organizationName_service_exchangeService_activateSharepoint_POST ( String organizationName , String exchangeService , String primaryEmailAddress , String subDomain ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/activateSharepoint" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "primaryEmailAddress" , primaryEmailAddress ) ; addBody ( o , "subDomain" , subDomain ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Activate Sharepoint infra connected to this exchange service
173
11
12,790
public ArrayList < Long > organizationName_service_exchangeService_mailingList_mailingListAddress_member_account_GET ( String organizationName , String exchangeService , String mailingListAddress ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/mailingList/{mailingListAddress}/member/account" ; StringBuilder sb = path ( qPath , organizationName , exchangeService , mailingListAddress ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
Mailing list account member
142
5
12,791
public OvhTask organizationName_service_exchangeService_mailingList_mailingListAddress_member_contact_POST ( String organizationName , String exchangeService , String mailingListAddress , Long memberAccountId , Long memberContactId ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/mailingList/{mailingListAddress}/member/contact" ; StringBuilder sb = path ( qPath , organizationName , exchangeService , mailingListAddress ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "memberAccountId" , memberAccountId ) ; addBody ( o , "memberContactId" , memberContactId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Add new mailing list member
205
5
12,792
public OvhTask organizationName_service_exchangeService_mailingList_mailingListAddress_DELETE ( String organizationName , String exchangeService , String mailingListAddress ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/mailingList/{mailingListAddress}" ; StringBuilder sb = path ( qPath , organizationName , exchangeService , mailingListAddress ) ; String resp = exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTask . class ) ; }
Delete mailing list
138
3
12,793
public OvhTask organizationName_service_exchangeService_mailingList_POST ( String organizationName , String exchangeService , OvhMailingListDepartRestrictionEnum departRestriction , String displayName , Boolean hiddenFromGAL , OvhMailingListJoinRestrictionEnum joinRestriction , String mailingListAddress , Long maxReceiveSize , Long maxSendSize , Boolean senderAuthentification ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/mailingList" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "departRestriction" , departRestriction ) ; addBody ( o , "displayName" , displayName ) ; addBody ( o , "hiddenFromGAL" , hiddenFromGAL ) ; addBody ( o , "joinRestriction" , joinRestriction ) ; addBody ( o , "mailingListAddress" , mailingListAddress ) ; addBody ( o , "maxReceiveSize" , maxReceiveSize ) ; addBody ( o , "maxSendSize" , maxSendSize ) ; addBody ( o , "senderAuthentification" , senderAuthentification ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Add mailing list
327
3
12,794
public OvhTask organizationName_service_exchangeService_account_primaryEmailAddress_archive_POST ( String organizationName , String exchangeService , String primaryEmailAddress , Long quota ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/account/{primaryEmailAddress}/archive" ; StringBuilder sb = path ( qPath , organizationName , exchangeService , primaryEmailAddress ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "quota" , quota ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create new archive mailbox
169
4
12,795
public OvhTask organizationName_service_exchangeService_account_primaryEmailAddress_outlookURL_POST ( String organizationName , String exchangeService , String primaryEmailAddress , OvhLanguageEnum language , OvhOutlookVersionEnum version ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/account/{primaryEmailAddress}/outlookURL" ; StringBuilder sb = path ( qPath , organizationName , exchangeService , primaryEmailAddress ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "language" , language ) ; addBody ( o , "version" , version ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Generate outlook url
197
4
12,796
public ArrayList < String > organizationName_service_exchangeService_account_GET ( String organizationName , String exchangeService , OvhOvhLicenceEnum accountLicense , Long id , String primaryEmailAddress ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/account" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; query ( sb , "accountLicense" , accountLicense ) ; query ( sb , "id" , id ) ; query ( sb , "primaryEmailAddress" , primaryEmailAddress ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Accounts associated to this exchange service
171
7
12,797
public OvhTask organizationName_service_exchangeService_account_POST ( String organizationName , String exchangeService , String SAMAccountName , String company , String displayName , String domain , String firstName , Boolean hiddenFromGAL , String initials , String lastName , OvhOvhLicenceEnum license , Boolean litigation , Long litigationPeriod , String login , OvhMailingFilterEnum [ ] mailingFilter , Boolean outlookLicense , String password , OvhSpamAndVirusConfiguration spamAndVirusConfiguration ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/account" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "SAMAccountName" , SAMAccountName ) ; addBody ( o , "company" , company ) ; addBody ( o , "displayName" , displayName ) ; addBody ( o , "domain" , domain ) ; addBody ( o , "firstName" , firstName ) ; addBody ( o , "hiddenFromGAL" , hiddenFromGAL ) ; addBody ( o , "initials" , initials ) ; addBody ( o , "lastName" , lastName ) ; addBody ( o , "license" , license ) ; addBody ( o , "litigation" , litigation ) ; addBody ( o , "litigationPeriod" , litigationPeriod ) ; addBody ( o , "login" , login ) ; addBody ( o , "mailingFilter" , mailingFilter ) ; addBody ( o , "outlookLicense" , outlookLicense ) ; addBody ( o , "password" , password ) ; addBody ( o , "spamAndVirusConfiguration" , spamAndVirusConfiguration ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Create new mailbox in exchange server
447
6
12,798
public ArrayList < String > organizationName_service_exchangeService_device_GET ( String organizationName , String exchangeService , String IMEI , OvhDeviceActiveSyncStateEnum deviceState , String identity ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/device" ; StringBuilder sb = path ( qPath , organizationName , exchangeService ) ; query ( sb , "IMEI" , IMEI ) ; query ( sb , "deviceState" , deviceState ) ; query ( sb , "identity" , identity ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
List of your ActiveSync devices registered on this Exchange service
170
11
12,799
public OvhTask organizationName_service_exchangeService_protocol_activeSyncMailNotification_notifiedAccountId_DELETE ( String organizationName , String exchangeService , Long notifiedAccountId ) throws IOException { String qPath = "/email/exchange/{organizationName}/service/{exchangeService}/protocol/activeSyncMailNotification/{notifiedAccountId}" ; StringBuilder sb = path ( qPath , organizationName , exchangeService , notifiedAccountId ) ; String resp = exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTask . class ) ; }
Unubscribe address from ActiveSync quarantine notifications
148
9