idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
12,500
public OvhOperation serviceName_output_elasticsearch_index_indexId_PUT ( String serviceName , String indexId , Boolean alertNotifyEnabled , String description ) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/index/{indexId}" ; StringBuilder sb = path ( qPath , serviceName , indexId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "alertNotifyEnabled" , alertNotifyEnabled ) ; addBody ( o , "description" , description ) ; String resp = exec ( qPath , "PUT" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOperation . class ) ; }
Update specified elasticsearch index
175
5
12,501
public ArrayList < Long > serviceName_consumption_GET ( String serviceName , Date hpcspotItemEndDate_from , Date hpcspotItemEndDate_to , Long hpcspotItemId , Long orderId , OvhConsumptionTypeEnum type ) throws IOException { String qPath = "/hpcspot/{serviceName}/consumption" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "hpcspotItemEndDate.from" , hpcspotItemEndDate_from ) ; query ( sb , "hpcspotItemEndDate.to" , hpcspotItemEndDate_to ) ; query ( sb , "hpcspotItemId" , hpcspotItemId ) ; query ( sb , "orderId" , orderId ) ; query ( sb , "type" , type ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Details of the consumption of your account
226
7
12,502
void write ( CallInfo callInfo , DataSet data ) { Element rootNode = root ( callInfo ) ; write ( rootNode , data . getSource ( ) ) ; Element dsNode = createNode ( rootNode , DATA_SET_TAG ) ; write ( dsNode , ROWS_TAG , data . getSource ( ) . getMetaData ( ) . columns ( ) , data . getRows ( ) . iterator ( ) ) ; flush ( rootNode ) ; }
Write a data set to the log .
102
8
12,503
void write ( CallInfo callInfo , SQLException e ) { Element rootNode = root ( callInfo ) ; Element exNode = createNode ( rootNode , DATABASE_EXCEPTION_TAG ) ; StringWriter sw = new StringWriter ( ) ; sw . append ( ' ' ) ; e . printStackTrace ( new PrintWriter ( sw ) ) ; exNode . appendChild ( xmlDoc . createCDATASection ( sw . toString ( ) ) ) ; flush ( rootNode ) ; }
Report a database exception onto the log .
111
8
12,504
void writeSQL ( CallInfo callInfo , String sql ) { Element rootNode = root ( callInfo ) ; writeSQL ( rootNode , sql ) ; flush ( rootNode ) ; }
Log SQL code .
39
4
12,505
void writeCallInfo ( CallInfo callInfo ) { Element rootNode = root ( callInfo ) ; createNode ( rootNode , callInfo . getAPIMethodInfo ( ) . getMethodName ( ) ) ; flush ( rootNode ) ; }
Log plain call information .
53
5
12,506
public OvhPrice xdsl_offers_offersName_GET ( net . minidev . ovh . api . price . xdsl . OvhOffersEnum offersName ) throws IOException { String qPath = "/price/xdsl/offers/{offersName}" ; StringBuilder sb = path ( qPath , offersName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of xdsl offers
117
8
12,507
public OvhPrice xdsl_addressMove_fee_option_GET ( net . minidev . ovh . api . price . xdsl . addressmove . OvhFeeEnum option ) throws IOException { String qPath = "/price/xdsl/addressMove/fee/{option}" ; StringBuilder sb = path ( qPath , option ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of address move option fee
118
8
12,508
public OvhPrice xdsl_options_ipv4_ipRange_GET ( net . minidev . ovh . api . price . xdsl . options . OvhIpv4Enum ipRange ) throws IOException { String qPath = "/price/xdsl/options/ipv4/{ipRange}" ; StringBuilder sb = path ( qPath , ipRange ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of IPv4 options
125
7
12,509
public OvhPrice xdsl_options_line_lineAction_GET ( net . minidev . ovh . api . price . xdsl . options . OvhLineEnum lineAction ) throws IOException { String qPath = "/price/xdsl/options/line/{lineAction}" ; StringBuilder sb = path ( qPath , lineAction ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of line action
118
6
12,510
public OvhPrice dedicated_server_antiDDoSPro_commercialRange_GET ( net . minidev . ovh . api . price . dedicated . server . OvhAntiDDoSProEnum commercialRange ) throws IOException { String qPath = "/price/dedicated/server/antiDDoSPro/{commercialRange}" ; StringBuilder sb = path ( qPath , commercialRange ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of anti - DDos Pro option
123
9
12,511
public OvhPrice dedicated_server_firewall_firewallModel_GET ( net . minidev . ovh . api . price . dedicated . server . OvhFirewallEnum firewallModel ) throws IOException { String qPath = "/price/dedicated/server/firewall/{firewallModel}" ; StringBuilder sb = path ( qPath , firewallModel ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of available firewall models
119
6
12,512
public OvhPrice dedicated_server_ip_routedTo_GET ( net . minidev . ovh . api . price . dedicated . server . OvhIpEnum routedTo ) throws IOException { String qPath = "/price/dedicated/server/ip/{routedTo}" ; StringBuilder sb = path ( qPath , routedTo ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of IPs
117
5
12,513
public OvhPrice dedicated_server_backupStorage_capacity_GET ( net . minidev . ovh . api . price . dedicated . server . OvhBackupStorageEnum capacity ) throws IOException { String qPath = "/price/dedicated/server/backupStorage/{capacity}" ; StringBuilder sb = path ( qPath , capacity ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of backup storage offer
116
6
12,514
public OvhPrice dedicated_nasha_model_modelName_GET ( net . minidev . ovh . api . price . dedicated . nasha . OvhModelEnum modelName ) throws IOException { String qPath = "/price/dedicated/nasha/model/{modelName}" ; StringBuilder sb = path ( qPath , modelName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of Nas HA offers
117
7
12,515
public OvhPrice overTheBox_offer_offerName_GET ( net . minidev . ovh . api . price . overthebox . OvhOfferEnum offerName ) throws IOException { String qPath = "/price/overTheBox/offer/{offerName}" ; StringBuilder sb = path ( qPath , offerName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of overTheBox offers
114
8
12,516
public OvhPrice hpcspot_consumption_job_reference_GET ( net . minidev . ovh . api . price . hpcspot . consumption . OvhJobEnum reference ) throws IOException { String qPath = "/price/hpcspot/consumption/job/{reference}" ; StringBuilder sb = path ( qPath , reference ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of a JOB consumption for 1 hour
117
11
12,517
public OvhPrice hpcspot_account_subscription_subscriptionName_GET ( net . minidev . ovh . api . price . hpcspot . account . OvhSubscriptionEnum subscriptionName ) throws IOException { String qPath = "/price/hpcspot/account/subscription/{subscriptionName}" ; StringBuilder sb = path ( qPath , subscriptionName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price of a HPC Spot Account for 1 month
124
12
12,518
public OvhPrice hosting_web_cdn_cdnName_GET ( net . minidev . ovh . api . price . hosting . web . OvhCdnEnum cdnName ) throws IOException { String qPath = "/price/hosting/web/cdn/{cdnName}" ; StringBuilder sb = path ( qPath , cdnName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price for cdn option
117
7
12,519
public OvhPrice hosting_web_ssl_sslName_GET ( net . minidev . ovh . api . price . hosting . web . OvhSslEnum sslName ) throws IOException { String qPath = "/price/hosting/web/ssl/{sslName}" ; StringBuilder sb = path ( qPath , sslName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price for hosted ssl option
117
8
12,520
public OvhPrice hosting_web_extraSqlPerso_extraSqlPersoName_GET ( net . minidev . ovh . api . price . hosting . web . OvhExtraSqlPersoEnum extraSqlPersoName ) throws IOException { String qPath = "/price/hosting/web/extraSqlPerso/{extraSqlPersoName}" ; StringBuilder sb = path ( qPath , extraSqlPersoName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price for extra sql perso option
142
9
12,521
public OvhPrice hosting_privateDatabase_privateDatabaseName_GET ( net . minidev . ovh . api . price . hosting . OvhPrivateDatabaseEnum privateDatabaseName ) throws IOException { String qPath = "/price/hosting/privateDatabase/{privateDatabaseName}" ; StringBuilder sb = path ( qPath , privateDatabaseName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the price for a private database
115
7
12,522
public OvhPrice domain_zone_option_optionName_GET ( net . minidev . ovh . api . price . domain . zone . OvhOptionEnum optionName ) throws IOException { String qPath = "/price/domain/zone/option/{optionName}" ; StringBuilder sb = path ( qPath , optionName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of zone options
113
5
12,523
public OvhPrice dedicatedCloud_2018v2_rbx2a_infrastructure_filer_hourly_filerProfile_GET ( net . minidev . ovh . api . price . dedicatedcloud . _2018v2 . rbx2a . infrastructure . filer . OvhHourlyEnum filerProfile ) throws IOException { String qPath = "/price/dedicatedCloud/2018v2/rbx2a/infrastructure/filer/hourly/{filerProfile}" ; StringBuilder sb = path ( qPath , filerProfile ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of dedicated Cloud hourly filer ressources
164
11
12,524
public OvhPrice dedicatedCloud_2016v7_sbg1a_enterprise_host_monthly_hostProfile_GET ( net . minidev . ovh . api . price . dedicatedcloud . _2016v7 . sbg1a . enterprise . host . OvhMonthlyEnum hostProfile ) throws IOException { String qPath = "/price/dedicatedCloud/2016v7/sbg1a/enterprise/host/monthly/{hostProfile}" ; StringBuilder sb = path ( qPath , hostProfile ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of dedicated Cloud monthly host ressources
156
10
12,525
public OvhPrice vps_2014v1_cloud_model_modelName_GET ( net . minidev . ovh . api . price . vps . _2014v1 . cloud . OvhModelEnum modelName ) throws IOException { String qPath = "/price/vps/2014v1/cloud/model/{modelName}" ; StringBuilder sb = path ( qPath , modelName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get price of VPS Cloud 2014
129
7
12,526
public OvhPrice saas_csp2_license_licenseName_GET ( net . minidev . ovh . api . price . saas . csp2 . OvhLicenseEnum licenseName ) throws IOException { String qPath = "/price/saas/csp2/license/{licenseName}" ; StringBuilder sb = path ( qPath , licenseName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the monthly price for an Office 365 license
122
9
12,527
public OvhPrice license_office_officeName_GET ( net . minidev . ovh . api . price . license . OvhOfficeEnum officeName ) throws IOException { String qPath = "/price/license/office/{officeName}" ; StringBuilder sb = path ( qPath , officeName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPrice . class ) ; }
Get the monthly price for an office license
107
8
12,528
public void mailingList_subscribe_POST ( String email , String mailingList ) throws IOException { String qPath = "/me/mailingList/subscribe" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "email" , email ) ; addBody ( o , "mailingList" , mailingList ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Subscribe an email to a restricted mailing list
115
8
12,529
public void identity_user_POST ( String description , String email , String group , String login , String password ) throws IOException { String qPath = "/me/identity/user" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "email" , email ) ; addBody ( o , "group" , group ) ; addBody ( o , "login" , login ) ; addBody ( o , "password" , password ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Create a new user
152
4
12,530
public void identity_user_user_PUT ( String user , String description , String email , String group ) throws IOException { String qPath = "/me/identity/user/{user}" ; StringBuilder sb = path ( qPath , user ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "email" , email ) ; addBody ( o , "group" , group ) ; exec ( qPath , "PUT" , sb . toString ( ) , o ) ; }
Alter a user
132
4
12,531
public void identity_group_group_PUT ( String group , String description , OvhRoleEnum role ) throws IOException { String qPath = "/me/identity/group/{group}" ; StringBuilder sb = path ( qPath , group ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "role" , role ) ; exec ( qPath , "PUT" , sb . toString ( ) , o ) ; }
Alter a group
121
4
12,532
public void billing_invoicesByPostalMail_POST ( Boolean enable ) throws IOException { String qPath = "/me/billing/invoicesByPostalMail" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "enable" , enable ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Enable or disable invoices by postal mail
104
9
12,533
public OvhAutomaticPaymentMean availableAutomaticPaymentMeans_GET ( ) throws IOException { String qPath = "/me/availableAutomaticPaymentMeans" ; StringBuilder sb = path ( qPath ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhAutomaticPaymentMean . class ) ; }
List available payment methods in this Nic s country
93
9
12,534
public void api_application_applicationId_DELETE ( Long applicationId ) throws IOException { String qPath = "/me/api/application/{applicationId}" ; StringBuilder sb = path ( qPath , applicationId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Remove this application . It will revoke all credential belonging to this application .
74
14
12,535
public void api_credential_credentialId_DELETE ( Long credentialId ) throws IOException { String qPath = "/me/api/credential/{credentialId}" ; StringBuilder sb = path ( qPath , credentialId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Remove this credential
82
3
12,536
public ArrayList < Long > api_credential_GET ( Long applicationId , OvhCredentialStateEnum status ) throws IOException { String qPath = "/me/api/credential" ; StringBuilder sb = path ( qPath ) ; query ( sb , "applicationId" , applicationId ) ; query ( sb , "status" , status ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
List of your Api Credentials
117
8
12,537
public void autorenew_POST ( Long renewDay ) throws IOException { String qPath = "/me/autorenew" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "renewDay" , renewDay ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Activate auto renew for this nic
95
7
12,538
public OvhPaymentMeanValidation paymentMean_bankAccount_POST ( String bic , String description , String iban , String ownerAddress , String ownerName , Boolean setDefault ) throws IOException { String qPath = "/me/paymentMean/bankAccount" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "bic" , bic ) ; addBody ( o , "description" , description ) ; addBody ( o , "iban" , iban ) ; addBody ( o , "ownerAddress" , ownerAddress ) ; addBody ( o , "ownerName" , ownerName ) ; addBody ( o , "setDefault" , setDefault ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhPaymentMeanValidation . class ) ; }
Enable payment through a new account
214
6
12,539
public OvhPaymentMeanValidation paymentMean_creditCard_POST ( String description , String returnUrl , Boolean setDefault ) throws IOException { String qPath = "/me/paymentMean/creditCard" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "returnUrl" , returnUrl ) ; addBody ( o , "setDefault" , setDefault ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhPaymentMeanValidation . class ) ; }
Add a new credit card
161
5
12,540
public OvhMovement credit_code_POST ( String inputCode ) throws IOException { String qPath = "/me/credit/code" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "inputCode" , inputCode ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhMovement . class ) ; }
Validate a code to generate associated credit movement
114
9
12,541
public OvhMovement credit_balance_balanceName_movement_movementId_GET ( String balanceName , Long movementId ) throws IOException { String qPath = "/me/credit/balance/{balanceName}/movement/{movementId}" ; StringBuilder sb = path ( qPath , balanceName , movementId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhMovement . class ) ; }
Retrieve a specific movement for a credit balance
113
9
12,542
public OvhBalance credit_balance_balanceName_GET ( String balanceName ) throws IOException { String qPath = "/me/credit/balance/{balanceName}" ; StringBuilder sb = path ( qPath , balanceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhBalance . class ) ; }
Retrieve a credit balance
88
5
12,543
public ArrayList < String > credit_balance_GET ( OvhType type ) throws IOException { String qPath = "/me/credit/balance" ; StringBuilder sb = path ( qPath ) ; query ( sb , "type" , type ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
Retrieve credit balance names
90
5
12,544
public OvhIpxe ipxeScript_POST ( String description , String name , String script ) throws IOException { String qPath = "/me/ipxeScript" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "name" , name ) ; addBody ( o , "script" , script ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhIpxe . class ) ; }
Add an IPXE script
143
6
12,545
public ArrayList < Long > payment_thod_GET ( String paymentType , OvhStatus status ) throws IOException { String qPath = "/me/payment/method" ; StringBuilder sb = path ( qPath ) ; query ( sb , "paymentType" , paymentType ) ; query ( sb , "status" , status ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
Retrieve payment method ID list
109
6
12,546
public OvhValidationResult payment_thod_POST ( Long billingContactId , OvhCallbackUrl callbackUrl , Boolean _default , String description , Long orderId , String paymentType , Boolean register ) throws IOException { String qPath = "/me/payment/method" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "billingContactId" , billingContactId ) ; addBody ( o , "callbackUrl" , callbackUrl ) ; addBody ( o , "default" , _default ) ; addBody ( o , "description" , description ) ; addBody ( o , "orderId" , orderId ) ; addBody ( o , "paymentType" , paymentType ) ; addBody ( o , "register" , register ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhValidationResult . class ) ; }
Pay an order and register a new payment method if necessary
225
11
12,547
public OvhPaymentMethod payment_thod_paymentMethodId_GET ( Long paymentMethodId ) throws IOException { String qPath = "/me/payment/method/{paymentMethodId}" ; StringBuilder sb = path ( qPath , paymentMethodId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPaymentMethod . class ) ; }
Get one payment method
97
4
12,548
public net . minidev . ovh . api . billing . OvhPaymentMethod payment_thod_paymentMethodId_PUT ( Long paymentMethodId , Long billingContactId , Boolean _default , String description ) throws IOException { String qPath = "/me/payment/method/{paymentMethodId}" ; StringBuilder sb = path ( qPath , paymentMethodId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "billingContactId" , billingContactId ) ; addBody ( o , "default" , _default ) ; addBody ( o , "description" , description ) ; String resp = exec ( qPath , "PUT" , sb . toString ( ) , o ) ; return convertTo ( resp , net . minidev . ovh . api . billing . OvhPaymentMethod . class ) ; }
Edit payment method
197
3
12,549
public OvhPaymentMethod payment_thod_paymentMethodId_finalize_POST ( Long paymentMethodId , Long expirationMonth , Long expirationYear , String registrationId ) throws IOException { String qPath = "/me/payment/method/{paymentMethodId}/finalize" ; StringBuilder sb = path ( qPath , paymentMethodId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "expirationMonth" , expirationMonth ) ; addBody ( o , "expirationYear" , expirationYear ) ; addBody ( o , "registrationId" , registrationId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhPaymentMethod . class ) ; }
Finalize one payment method registration
181
6
12,550
public OvhTransaction payment_transaction_transactionId_GET ( Long transactionId ) throws IOException { String qPath = "/me/payment/transaction/{transactionId}" ; StringBuilder sb = path ( qPath , transactionId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTransaction . class ) ; }
Get associated payment method transaction
92
5
12,551
public ArrayList < Long > payment_transaction_GET ( Long paymentMethodId , net . minidev . ovh . api . me . payment . method . transaction . OvhStatus status ) throws IOException { String qPath = "/me/payment/transaction" ; StringBuilder sb = path ( qPath ) ; query ( sb , "paymentMethodId" , paymentMethodId ) ; query ( sb , "status" , status ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
Retrieve associated payment method transaction ID list
132
8
12,552
public ArrayList < OvhSlaOperationService > sla_id_services_GET ( Long id ) throws IOException { String qPath = "/me/sla/{id}/services" ; StringBuilder sb = path ( qPath , id ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t4 ) ; }
Get services impacted by this SLA
91
7
12,553
public void sshKey_POST ( String key , String keyName ) throws IOException { String qPath = "/me/sshKey" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "key" , key ) ; addBody ( o , "keyName" , keyName ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Add a new public SSH key
107
6
12,554
public void sshKey_keyName_DELETE ( String keyName ) throws IOException { String qPath = "/me/sshKey/{keyName}" ; StringBuilder sb = path ( qPath , keyName ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Remove this public SSH key
72
5
12,555
public Long subAccount_POST ( String description ) throws IOException { String qPath = "/me/subAccount" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , Long . class ) ; }
Create a new sub - account
103
6
12,556
public ArrayList < String > refund_GET ( Date date_from , Date date_to , Long orderId ) throws IOException { String qPath = "/me/refund" ; StringBuilder sb = path ( qPath ) ; query ( sb , "date.from" , date_from ) ; query ( sb , "date.to" , date_to ) ; query ( sb , "orderId" , orderId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; }
List of all the refunds the logged account has
130
9
12,557
public ArrayList < Long > agreements_GET ( OvhAgreementStateEnum agreed , Long contractId ) throws IOException { String qPath = "/me/agreements" ; StringBuilder sb = path ( qPath ) ; query ( sb , "agreed" , agreed ) ; query ( sb , "contractId" , contractId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
List of contracts signed between you and OVH
110
10
12,558
public OvhVoucherStatus voucher_checkValidity_POST ( String voucher ) throws IOException { String qPath = "/me/voucher/checkValidity" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "voucher" , voucher ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhVoucherStatus . class ) ; }
Verify existing voucher
123
4
12,559
public OvhCampaign consent_campaignName_GET ( String campaignName ) throws IOException { String qPath = "/me/consent/{campaignName}" ; StringBuilder sb = path ( qPath , campaignName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhCampaign . class ) ; }
Retrieve information about a consent campaign
85
7
12,560
public OvhConsent consent_campaignName_decision_GET ( String campaignName ) throws IOException { String qPath = "/me/consent/{campaignName}/decision" ; StringBuilder sb = path ( qPath , campaignName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhConsent . class ) ; }
Get decision value for a consent campaign
94
7
12,561
public void consent_campaignName_decision_PUT ( String campaignName , Boolean value ) throws IOException { String qPath = "/me/consent/{campaignName}/decision" ; StringBuilder sb = path ( qPath , campaignName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "value" , value ) ; exec ( qPath , "PUT" , sb . toString ( ) , o ) ; }
Update decision of a consent campaign
109
6
12,562
public OvhMailDomain2Service fax_customDomains_POST ( String domain ) throws IOException { String qPath = "/me/fax/customDomains" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "domain" , domain ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhMailDomain2Service . class ) ; }
Create a custom domain for your fax services
119
8
12,563
public OvhDefaultIpRestriction telephony_defaultIpRestriction_POST ( String subnet , OvhProtocolEnum type ) throws IOException { String qPath = "/me/telephony/defaultIpRestriction" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "subnet" , subnet ) ; addBody ( o , "type" , type ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhDefaultIpRestriction . class ) ; }
Create a default IP restriction for your future VoIP lines
150
11
12,564
public OvhSettings telephony_settings_GET ( ) throws IOException { String qPath = "/me/telephony/settings" ; StringBuilder sb = path ( qPath ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhSettings . class ) ; }
Get the telephony settings linked to the customer account
77
10
12,565
public void telephony_settings_POST ( OvhSettings settings ) throws IOException { String qPath = "/me/telephony/settings" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "settings" , settings ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Change the telephony settings linked to the customer account
95
10
12,566
public void order_orderId_pay_POST ( Long orderId , OvhPayWithPaymentMethod paymentMethod ) throws IOException { String qPath = "/me/order/{orderId}/pay" ; StringBuilder sb = path ( qPath , orderId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "paymentMethod" , paymentMethod ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Pay with a payment method reference
115
6
12,567
public OvhOrderStatusEnum order_orderId_status_GET ( Long orderId ) throws IOException { String qPath = "/me/order/{orderId}/status" ; StringBuilder sb = path ( qPath , orderId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhOrderStatusEnum . class ) ; }
Return status of order
95
4
12,568
public void order_orderId_payWithRegisteredPaymentMean_POST ( Long orderId , OvhReusablePaymentMeanEnum paymentMean , Long paymentMeanId ) throws IOException { String qPath = "/me/order/{orderId}/payWithRegisteredPaymentMean" ; StringBuilder sb = path ( qPath , orderId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "paymentMean" , paymentMean ) ; addBody ( o , "paymentMeanId" , paymentMeanId ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Pay with an already registered payment mean
157
7
12,569
public OvhPaymentMethods order_orderId_paymentMethods_GET ( Long orderId ) throws IOException { String qPath = "/me/order/{orderId}/paymentMethods" ; StringBuilder sb = path ( qPath , orderId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPaymentMethods . class ) ; }
List of registered payment method you can use to pay this order
95
12
12,570
public ArrayList < OvhRegisteredPaymentMean > order_orderId_availableRegisteredPaymentMean_GET ( Long orderId ) throws IOException { String qPath = "/me/order/{orderId}/availableRegisteredPaymentMean" ; StringBuilder sb = path ( qPath , orderId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t6 ) ; }
List of registered payment mean you can use to pay this order
104
12
12,571
public void order_orderId_retraction_POST ( Long orderId , String comment , OvhRetractionReasonEnum reason ) throws IOException { String qPath = "/me/order/{orderId}/retraction" ; StringBuilder sb = path ( qPath , orderId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "comment" , comment ) ; addBody ( o , "reason" , reason ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Request retraction of order
129
5
12,572
public ArrayList < Long > order_GET ( Date date_from , Date date_to ) throws IOException { String qPath = "/me/order" ; StringBuilder sb = path ( qPath ) ; query ( sb , "date.from" , date_from ) ; query ( sb , "date.to" , date_to ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
List of all the orders the logged account has
111
9
12,573
public ArrayList < net . minidev . ovh . api . me . consumption . OvhTransaction > consumption_usage_history_GET ( Date beginDate , Date endDate ) throws IOException { String qPath = "/me/consumption/usage/history" ; StringBuilder sb = path ( qPath ) ; query ( sb , "beginDate" , beginDate ) ; query ( sb , "endDate" , endDate ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t7 ) ; }
Get list of transactions between two dates
131
7
12,574
public ArrayList < net . minidev . ovh . api . me . consumption . OvhTransaction > consumption_usage_forecast_GET ( ) throws IOException { String qPath = "/me/consumption/usage/forecast" ; StringBuilder sb = path ( qPath ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t7 ) ; }
Get forecasted consumptions for all services
98
8
12,575
public OvhSetting xdsl_setting_GET ( ) throws IOException { String qPath = "/me/xdsl/setting" ; StringBuilder sb = path ( qPath ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhSetting . class ) ; }
Get xdsl settings linked to the nichandle
78
12
12,576
public void xdsl_setting_POST ( Boolean resellerFastModemShipping , Boolean resellerModemBasicConfig ) throws IOException { String qPath = "/me/xdsl/setting" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "resellerFastModemShipping" , resellerFastModemShipping ) ; addBody ( o , "resellerModemBasicConfig" , resellerModemBasicConfig ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Change xdsl settings linked to the nichandle
139
12
12,577
public void ipOrganisation_organisationId_DELETE ( String organisationId ) throws IOException { String qPath = "/me/ipOrganisation/{organisationId}" ; StringBuilder sb = path ( qPath , organisationId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Delete this organisation
76
3
12,578
public void ipOrganisation_POST ( String abuse_mailbox , String address , String city , OvhCountryEnum country , String firstname , String lastname , String phone , OvhIpRegistryEnum registry , String state , String zip ) throws IOException { String qPath = "/me/ipOrganisation" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "abuse_mailbox" , abuse_mailbox ) ; addBody ( o , "address" , address ) ; addBody ( o , "city" , city ) ; addBody ( o , "country" , country ) ; addBody ( o , "firstname" , firstname ) ; addBody ( o , "lastname" , lastname ) ; addBody ( o , "phone" , phone ) ; addBody ( o , "registry" , registry ) ; addBody ( o , "state" , state ) ; addBody ( o , "zip" , zip ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Add an organisation
253
3
12,579
public ArrayList < Long > task_domain_GET ( String domain , OvhNicOperationFunctionEnum function , OvhOperationStatusEnum status ) throws IOException { String qPath = "/me/task/domain" ; StringBuilder sb = path ( qPath ) ; query ( sb , "domain" , domain ) ; query ( sb , "function" , function ) ; query ( sb , "status" , status ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
List of domain task
129
4
12,580
public void task_domain_id_accelerate_POST ( Long id ) throws IOException { String qPath = "/me/task/domain/{id}/accelerate" ; StringBuilder sb = path ( qPath , id ) ; exec ( qPath , "POST" , sb . toString ( ) , null ) ; }
Accelerate the task
75
5
12,581
public ArrayList < Long > task_contactChange_GET ( String askingAccount , net . minidev . ovh . api . nichandle . changecontact . OvhTaskStateEnum state , String toAccount ) throws IOException { String qPath = "/me/task/contactChange" ; StringBuilder sb = path ( qPath ) ; query ( sb , "askingAccount" , askingAccount ) ; query ( sb , "state" , state ) ; query ( sb , "toAccount" , toAccount ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
List of service contact change tasks you are involved in
150
10
12,582
public void task_contactChange_id_refuse_POST ( Long id , String token ) throws IOException { String qPath = "/me/task/contactChange/{id}/refuse" ; StringBuilder sb = path ( qPath , id ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "token" , token ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Refuse this change request
110
5
12,583
public void document_id_DELETE ( String id ) throws IOException { String qPath = "/me/document/{id}" ; StringBuilder sb = path ( qPath , id ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Delete a document
66
3
12,584
public OvhDocument document_POST ( String name , OvhSafeKeyValue < String > [ ] tags ) throws IOException { String qPath = "/me/document" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "name" , name ) ; addBody ( o , "tags" , tags ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhDocument . class ) ; }
Create new document
129
3
12,585
public OvhTask changeEmail_POST ( String newEmail ) throws IOException { String qPath = "/me/changeEmail" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "newEmail" , newEmail ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; }
Initiate an email change procedure
110
7
12,586
public OvhVipStatus vipStatus_GET ( ) throws IOException { String qPath = "/me/vipStatus" ; StringBuilder sb = path ( qPath ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhVipStatus . class ) ; }
VIP Status of this account
79
6
12,587
public net . minidev . ovh . api . debt . entry . OvhAssociatedObject bill_billId_debt_operation_operationId_associatedObject_GET ( String billId , Long operationId ) throws IOException { String qPath = "/me/bill/{billId}/debt/operation/{operationId}/associatedObject" ; StringBuilder sb = path ( qPath , billId , operationId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , net . minidev . ovh . api . debt . entry . OvhAssociatedObject . class ) ; }
Return main data about the object related to this debt operation
148
11
12,588
public OvhContact contact_contactId_PUT ( Long contactId , OvhAddress address , String birthCity , OvhCountryEnum birthCountry , Date birthDay , String birthZip , String cellPhone , String companyNationalIdentificationNumber , String email , String fax , String firstName , OvhGenderEnum gender , OvhLanguageEnum language , String lastName , OvhLegalFormEnum legalForm , String nationalIdentificationNumber , OvhCountryEnum nationality , String organisationName , String organisationType , String phone , String vat ) throws IOException { String qPath = "/me/contact/{contactId}" ; StringBuilder sb = path ( qPath , contactId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "address" , address ) ; addBody ( o , "birthCity" , birthCity ) ; addBody ( o , "birthCountry" , birthCountry ) ; addBody ( o , "birthDay" , birthDay ) ; addBody ( o , "birthZip" , birthZip ) ; addBody ( o , "cellPhone" , cellPhone ) ; addBody ( o , "companyNationalIdentificationNumber" , companyNationalIdentificationNumber ) ; addBody ( o , "email" , email ) ; addBody ( o , "fax" , fax ) ; addBody ( o , "firstName" , firstName ) ; addBody ( o , "gender" , gender ) ; addBody ( o , "language" , language ) ; addBody ( o , "lastName" , lastName ) ; addBody ( o , "legalForm" , legalForm ) ; addBody ( o , "nationalIdentificationNumber" , nationalIdentificationNumber ) ; addBody ( o , "nationality" , nationality ) ; addBody ( o , "organisationName" , organisationName ) ; addBody ( o , "organisationType" , organisationType ) ; addBody ( o , "phone" , phone ) ; addBody ( o , "vat" , vat ) ; String resp = exec ( qPath , "PUT" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhContact . class ) ; }
Update an existing contact
484
4
12,589
public OvhContinentCountryLocation geolocation_POST ( ) throws IOException { String qPath = "/me/geolocation" ; StringBuilder sb = path ( qPath ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhContinentCountryLocation . class ) ; }
Fetch visitor country & region
82
6
12,590
public void passwordRecover_POST ( OvhOvhCompanyEnum ovhCompany , String ovhId ) throws IOException { String qPath = "/me/passwordRecover" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "ovhCompany" , ovhCompany ) ; addBody ( o , "ovhId" , ovhId ) ; execN ( qPath , "POST" , sb . toString ( ) , o ) ; }
Request a password recover
126
4
12,591
public ArrayList < Long > deposit_depositId_paidBills_billId_debt_operation_GET ( String depositId , String billId , Long depositOrderId ) throws IOException { String qPath = "/me/deposit/{depositId}/paidBills/{billId}/debt/operation" ; StringBuilder sb = path ( qPath , depositId , billId ) ; query ( sb , "depositOrderId" , depositOrderId ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; }
All operations related to these debts
142
6
12,592
public void installationTemplate_templateName_DELETE ( String templateName ) throws IOException { String qPath = "/me/installationTemplate/{templateName}" ; StringBuilder sb = path ( qPath , templateName ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
remove this template
73
3
12,593
public void installationTemplate_templateName_partitionScheme_POST ( String templateName , String name , Long priority ) throws IOException { String qPath = "/me/installationTemplate/{templateName}/partitionScheme" ; StringBuilder sb = path ( qPath , templateName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "name" , name ) ; addBody ( o , "priority" , priority ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Add a scheme of partition
130
5
12,594
public void installationTemplate_templateName_partitionScheme_schemeName_hardwareRaid_name_DELETE ( String templateName , String schemeName , String name ) throws IOException { String qPath = "/me/installationTemplate/{templateName}/partitionScheme/{schemeName}/hardwareRaid/{name}" ; StringBuilder sb = path ( qPath , templateName , schemeName , name ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
Remove this RAID
119
3
12,595
public void installationTemplate_templateName_partitionScheme_schemeName_hardwareRaid_POST ( String templateName , String schemeName , String [ ] disks , OvhTemplateOsHardwareRaidEnum mode , String name , Long step ) throws IOException { String qPath = "/me/installationTemplate/{templateName}/partitionScheme/{schemeName}/hardwareRaid" ; StringBuilder sb = path ( qPath , templateName , schemeName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "disks" , disks ) ; addBody ( o , "mode" , mode ) ; addBody ( o , "name" , name ) ; addBody ( o , "step" , step ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Add an hardware RAID in this partitioning scheme
195
9
12,596
public void installationTemplate_templateName_partitionScheme_schemeName_DELETE ( String templateName , String schemeName ) throws IOException { String qPath = "/me/installationTemplate/{templateName}/partitionScheme/{schemeName}" ; StringBuilder sb = path ( qPath , templateName , schemeName ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
remove this scheme of partition
100
5
12,597
public void installationTemplate_templateName_partitionScheme_schemeName_partition_POST ( String templateName , String schemeName , OvhTemplateOsFileSystemEnum filesystem , String mountpoint , Long raid , Long size , Long step , OvhTemplatePartitionTypeEnum type , String volumeName ) throws IOException { String qPath = "/me/installationTemplate/{templateName}/partitionScheme/{schemeName}/partition" ; StringBuilder sb = path ( qPath , templateName , schemeName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "filesystem" , filesystem ) ; addBody ( o , "mountpoint" , mountpoint ) ; addBody ( o , "raid" , raid ) ; addBody ( o , "size" , size ) ; addBody ( o , "step" , step ) ; addBody ( o , "type" , type ) ; addBody ( o , "volumeName" , volumeName ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Add a partition in this partitioning scheme
249
8
12,598
public void installationTemplate_templateName_partitionScheme_schemeName_partition_mountpoint_DELETE ( String templateName , String schemeName , String mountpoint ) throws IOException { String qPath = "/me/installationTemplate/{templateName}/partitionScheme/{schemeName}/partition/{mountpoint}" ; StringBuilder sb = path ( qPath , templateName , schemeName , mountpoint ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; }
remove this partition
121
3
12,599
public void installationTemplate_POST ( String baseTemplateName , OvhTemplateOsLanguageEnum defaultLanguage , String name ) throws IOException { String qPath = "/me/installationTemplate" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "baseTemplateName" , baseTemplateName ) ; addBody ( o , "defaultLanguage" , defaultLanguage ) ; addBody ( o , "name" , name ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; }
Create a template
135
3