code stringlengths 73 34.1k | label stringclasses 1
value |
|---|---|
public void project_serviceName_instance_instanceId_snapshot_POST(String serviceName, String instanceId, String snapshotName) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/snapshot";
StringBuilder sb = path(qPath, serviceName, instanceId);
HashMap<String, Object>o = new H... | java |
public OvhApplicationAccess project_serviceName_instance_instanceId_applicationAccess_POST(String serviceName, String instanceId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/applicationAccess";
StringBuilder sb = path(qPath, serviceName, instanceId);
String resp = exec(... | java |
public void project_serviceName_instance_instanceId_reboot_POST(String serviceName, String instanceId, OvhRebootTypeEnum type) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/reboot";
StringBuilder sb = path(qPath, serviceName, instanceId);
HashMap<String, Object>o = new Ha... | java |
public OvhInterface project_serviceName_instance_instanceId_interface_POST(String serviceName, String instanceId, String ip, String networkId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/interface";
StringBuilder sb = path(qPath, serviceName, instanceId);
HashMap<String... | java |
public void project_serviceName_instance_instanceId_interface_interfaceId_DELETE(String serviceName, String instanceId, String interfaceId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/interface/{interfaceId}";
StringBuilder sb = path(qPath, serviceName, instanceId, interf... | java |
public OvhInstanceVnc project_serviceName_instance_instanceId_vnc_POST(String serviceName, String instanceId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/vnc";
StringBuilder sb = path(qPath, serviceName, instanceId);
String resp = exec(qPath, "POST", sb.toString(), null... | java |
public void project_serviceName_instance_instanceId_resume_POST(String serviceName, String instanceId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/resume";
StringBuilder sb = path(qPath, serviceName, instanceId);
exec(qPath, "POST", sb.toString(), null);
} | java |
public OvhInstanceDetail project_serviceName_instance_instanceId_resize_POST(String serviceName, String instanceId, String flavorId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/resize";
StringBuilder sb = path(qPath, serviceName, instanceId);
HashMap<String, Object>o = ... | java |
public OvhInstanceDetail project_serviceName_instance_instanceId_activeMonthlyBilling_POST(String serviceName, String instanceId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/{instanceId}/activeMonthlyBilling";
StringBuilder sb = path(qPath, serviceName, instanceId);
String resp = ex... | java |
public ArrayList<OvhInstance> project_serviceName_instance_bulk_POST(String serviceName, String flavorId, String groupId, String imageId, Boolean monthlyBilling, String name, OvhNetworkBulkParams[] networks, Long number, String region, String sshKeyId, String userData, String volumeId) throws IOException {
String qPa... | java |
public ArrayList<OvhInstanceGroup> project_serviceName_instance_group_GET(String serviceName, String region) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/group";
StringBuilder sb = path(qPath, serviceName);
query(sb, "region", region);
String resp = exec(qPath, "GET", sb.toString()... | java |
public OvhInstanceGroup project_serviceName_instance_group_POST(String serviceName, String name, String region, OvhInstanceGroupTypeEnum type) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/group";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<Stri... | java |
public void project_serviceName_instance_group_groupId_DELETE(String serviceName, String groupId) throws IOException {
String qPath = "/cloud/project/{serviceName}/instance/group/{groupId}";
StringBuilder sb = path(qPath, serviceName, groupId);
exec(qPath, "DELETE", sb.toString(), null);
} | java |
public OvhAlerting project_serviceName_alerting_POST(String serviceName, OvhAlertingDelayEnum delay, String email, Long monthlyThreshold) throws IOException {
String qPath = "/cloud/project/{serviceName}/alerting";
StringBuilder sb = path(qPath, serviceName);
HashMap<String, Object>o = new HashMap<String, Object>... | java |
public ArrayList<OvhOrder> order_GET(String planCode) throws IOException {
String qPath = "/cloud/order";
StringBuilder sb = path(qPath);
query(sb, "planCode", planCode);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, t25);
} | java |
public OvhNewProject createProject_POST(Long credit, String description, String voucher) throws IOException {
String qPath = "/cloud/createProject";
StringBuilder sb = path(qPath);
HashMap<String, Object>o = new HashMap<String, Object>();
addBody(o, "credit", credit);
addBody(o, "description", description);
... | java |
public OvhPrice price_GET(String flavorId, String region) throws IOException {
String qPath = "/cloud/price";
StringBuilder sb = path(qPath);
query(sb, "flavorId", flavorId);
query(sb, "region", region);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhPrice.class);
} | java |
public OvhNewProjectInfo createProjectInfo_GET(String voucher) throws IOException {
String qPath = "/cloud/createProjectInfo";
StringBuilder sb = path(qPath);
query(sb, "voucher", voucher);
String resp = exec(qPath, "GET", sb.toString(), null);
return convertTo(resp, OvhNewProjectInfo.class);
} | java |
public OvhTask serviceName_pca_pcaServiceName_sessions_sessionId_restore_POST(String serviceName, String pcaServiceName, String sessionId) throws IOException {
String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/restore";
StringBuilder sb = path(qPath, serviceName, pcaServiceName, session... | java |
public ArrayList<String> serviceName_pca_pcaServiceName_sessions_sessionId_files_GET(String serviceName, String pcaServiceName, String sessionId, String name) throws IOException {
String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/sessions/{sessionId}/files";
StringBuilder sb = path(qPath, serviceName, pcaSe... | java |
public ArrayList<Long> serviceName_pca_pcaServiceName_billing_GET(String serviceName, String pcaServiceName, Boolean billed, Date date_from, Date date_to) throws IOException {
String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/billing";
StringBuilder sb = path(qPath, serviceName, pcaServiceName);
query(sb,... | java |
public ArrayList<String> serviceName_pca_pcaServiceName_tasks_GET(String serviceName, String pcaServiceName, OvhFunctionTypeEnum function, OvhTaskStateEnum status, Date todoDate_from, Date todoDate_to) throws IOException {
String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/tasks";
StringBuilder sb = path(qPa... | java |
public OvhTask serviceName_pca_pcaServiceName_tasks_POST(String serviceName, String pcaServiceName, String[] fileIds, String sessionId, OvhTaskTypeEnum taskFunction) throws IOException {
String qPath = "/cloud/{serviceName}/pca/{pcaServiceName}/tasks";
StringBuilder sb = path(qPath, serviceName, pcaServiceName);
... | java |
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);
} | java |
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, OvhNod... | java |
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);
ex... | java |
public final String getColumnName(int index) {
if (index < 0 || index >= columns.size()) {
throw new InvalidOperationException("Invalid column index: " + index);
}
return columns.get(index);
} | java |
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(qPat... | java |
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 = ne... | java |
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,... | java |
@JsonIgnore
public boolean isErrorCode(String... codes) {
for (String err : codes)
if (errorCode.equals(err))
return true;
return false;
} | java |
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(qPat... | java |
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... | java |
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, O... | java |
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);
} | java |
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", l... | java |
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,... | java |
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... | java |
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 = ... | java |
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";
Str... | java |
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(qPa... | java |
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... | java |
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, Ob... | java |
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,... | java |
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 H... | java |
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, "a... | java |
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 = exe... | java |
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, Obj... | java |
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);
r... | java |
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);
add... | java |
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);
} | java |
@SafeVarargs
public final QueryBuilder arguments(Object...args) {
set(Param.QUERY_ARGS, "");
queryArgs = args.clone();
return this;
} | java |
public final Query build(DB db) {
return new Query(CallInfo.create(), db, toSQL(), queryArgs);
} | java |
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, "ba... | java |
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<... | java |
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);
} | java |
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", ... | java |
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);
} | java |
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);
} | java |
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, "GE... | java |
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.... | java |
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"... | java |
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 ... | java |
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", bandwi... | java |
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 =... | java |
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 = e... | java |
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.toS... | java |
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 re... | java |
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";
S... | java |
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}/account... | java |
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, pl... | java |
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", quantit... | java |
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.to... | java |
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);
... | java |
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... | java |
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);... | java |
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.toSt... | java |
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"... | java |
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);
Str... | java |
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 = pat... | java |
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, OvhC... | java |
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 = exe... | java |
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(... | java |
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);
} | java |
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);
add... | java |
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);
Str... | java |
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);
} | java |
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", duratio... | java |
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);
} | java |
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.toStr... | java |
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, Obje... | java |
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 ... | java |
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... | java |
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... | java |
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);
} | java |
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);
} | java |
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);
S... | java |
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, "... | java |
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);
} | java |
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", s... | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.