repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_input_inputId_action_GET
public ArrayList<OvhInputAction> serviceName_input_inputId_action_GET(String serviceName, String inputId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/input/{inputId}/action"; StringBuilder sb = path(qPath, serviceName, inputId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
java
public ArrayList<OvhInputAction> serviceName_input_inputId_action_GET(String serviceName, String inputId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/input/{inputId}/action"; StringBuilder sb = path(qPath, serviceName, inputId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t3); }
[ "public", "ArrayList", "<", "OvhInputAction", ">", "serviceName_input_inputId_action_GET", "(", "String", "serviceName", ",", "String", "inputId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/input/{inputId}/action\"", ";", "String...
Returns actions of specified input REST: GET /dbaas/logs/{serviceName}/input/{inputId}/action @param serviceName [required] Service name @param inputId [required] Input ID
[ "Returns", "actions", "of", "specified", "input" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L543-L548
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_option_optionId_GET
public OvhOption serviceName_option_optionId_GET(String serviceName, String optionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/option/{optionId}"; StringBuilder sb = path(qPath, serviceName, optionId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhOption.class); }
java
public OvhOption serviceName_option_optionId_GET(String serviceName, String optionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/option/{optionId}"; StringBuilder sb = path(qPath, serviceName, optionId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhOption.class); }
[ "public", "OvhOption", "serviceName_option_optionId_GET", "(", "String", "serviceName", ",", "String", "optionId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/option/{optionId}\"", ";", "StringBuilder", "sb", "=", "path", "(", ...
Returns details of a subscribed option REST: GET /dbaas/logs/{serviceName}/option/{optionId} @param serviceName [required] Service name @param optionId [required] Option ID
[ "Returns", "details", "of", "a", "subscribed", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L636-L641
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_role_roleId_GET
public OvhRole serviceName_role_roleId_GET(String serviceName, String roleId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}"; StringBuilder sb = path(qPath, serviceName, roleId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhRole.class); }
java
public OvhRole serviceName_role_roleId_GET(String serviceName, String roleId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}"; StringBuilder sb = path(qPath, serviceName, roleId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhRole.class); }
[ "public", "OvhRole", "serviceName_role_roleId_GET", "(", "String", "serviceName", ",", "String", "roleId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/role/{roleId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ...
Returns details of specified role REST: GET /dbaas/logs/{serviceName}/role/{roleId} @param serviceName [required] Service name @param roleId [required] Role ID
[ "Returns", "details", "of", "specified", "role" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L733-L738
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_role_roleId_PUT
public OvhOperation serviceName_role_roleId_PUT(String serviceName, String roleId, String description, String name, String optionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}"; StringBuilder sb = path(qPath, serviceName, roleId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "name", name); addBody(o, "optionId", optionId); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_role_roleId_PUT(String serviceName, String roleId, String description, String name, String optionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}"; StringBuilder sb = path(qPath, serviceName, roleId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "name", name); addBody(o, "optionId", optionId); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_role_roleId_PUT", "(", "String", "serviceName", ",", "String", "roleId", ",", "String", "description", ",", "String", "name", ",", "String", "optionId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/...
Update information of specified role REST: PUT /dbaas/logs/{serviceName}/role/{roleId} @param serviceName [required] Service name @param roleId [required] Role ID @param optionId [required] Option ID @param name [required] Name @param description [required] Description
[ "Update", "information", "of", "specified", "role" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L750-L759
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_role_roleId_permission_permissionId_GET
public ArrayList<OvhPermission> serviceName_role_roleId_permission_permissionId_GET(String serviceName, String roleId, String permissionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}/permission/{permissionId}"; StringBuilder sb = path(qPath, serviceName, roleId, permissionId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
java
public ArrayList<OvhPermission> serviceName_role_roleId_permission_permissionId_GET(String serviceName, String roleId, String permissionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}/permission/{permissionId}"; StringBuilder sb = path(qPath, serviceName, roleId, permissionId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t5); }
[ "public", "ArrayList", "<", "OvhPermission", ">", "serviceName_role_roleId_permission_permissionId_GET", "(", "String", "serviceName", ",", "String", "roleId", ",", "String", "permissionId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{servic...
Returns details of specified permission REST: GET /dbaas/logs/{serviceName}/role/{roleId}/permission/{permissionId} @param serviceName [required] Service name @param roleId [required] Role ID @param permissionId [required] Permission ID
[ "Returns", "details", "of", "specified", "permission" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L801-L806
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_role_roleId_member_POST
public OvhOperation serviceName_role_roleId_member_POST(String serviceName, String roleId, String note, String username) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}/member"; StringBuilder sb = path(qPath, serviceName, roleId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "note", note); addBody(o, "username", username); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_role_roleId_member_POST(String serviceName, String roleId, String note, String username) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}/member"; StringBuilder sb = path(qPath, serviceName, roleId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "note", note); addBody(o, "username", username); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_role_roleId_member_POST", "(", "String", "serviceName", ",", "String", "roleId", ",", "String", "note", ",", "String", "username", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/role/{roleId}/...
Append user into the member list of specified role REST: POST /dbaas/logs/{serviceName}/role/{roleId}/member @param serviceName [required] Service name @param roleId [required] Role ID @param username [required] Username @param note [required] Custom note
[ "Append", "user", "into", "the", "member", "list", "of", "specified", "role" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L897-L905
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_role_roleId_member_username_GET
public OvhMember serviceName_role_roleId_member_username_GET(String serviceName, String roleId, String username) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}/member/{username}"; StringBuilder sb = path(qPath, serviceName, roleId, username); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhMember.class); }
java
public OvhMember serviceName_role_roleId_member_username_GET(String serviceName, String roleId, String username) throws IOException { String qPath = "/dbaas/logs/{serviceName}/role/{roleId}/member/{username}"; StringBuilder sb = path(qPath, serviceName, roleId, username); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhMember.class); }
[ "public", "OvhMember", "serviceName_role_roleId_member_username_GET", "(", "String", "serviceName", ",", "String", "roleId", ",", "String", "username", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/role/{roleId}/member/{username}\"", ...
Returns the member metadata REST: GET /dbaas/logs/{serviceName}/role/{roleId}/member/{username} @param serviceName [required] Service name @param roleId [required] Role ID @param username [required] Username
[ "Returns", "the", "member", "metadata" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L930-L935
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_GET
public net.minidev.ovh.api.dbaas.logs.OvhService serviceName_GET(String serviceName) throws IOException { String qPath = "/dbaas/logs/{serviceName}"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, net.minidev.ovh.api.dbaas.logs.OvhService.class); }
java
public net.minidev.ovh.api.dbaas.logs.OvhService serviceName_GET(String serviceName) throws IOException { String qPath = "/dbaas/logs/{serviceName}"; StringBuilder sb = path(qPath, serviceName); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, net.minidev.ovh.api.dbaas.logs.OvhService.class); }
[ "public", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "dbaas", ".", "logs", ".", "OvhService", "serviceName_GET", "(", "String", "serviceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}\"", ";", "StringBuilde...
Returns the service object of connected identity. REST: GET /dbaas/logs/{serviceName} @param serviceName [required] Service name
[ "Returns", "the", "service", "object", "of", "connected", "identity", "." ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L996-L1001
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_PUT
public OvhOperation serviceName_PUT(String serviceName, String displayName, Boolean isCapped) throws IOException { String qPath = "/dbaas/logs/{serviceName}"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "displayName", displayName); addBody(o, "isCapped", isCapped); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_PUT(String serviceName, String displayName, Boolean isCapped) throws IOException { String qPath = "/dbaas/logs/{serviceName}"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "displayName", displayName); addBody(o, "isCapped", isCapped); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_PUT", "(", "String", "serviceName", ",", "String", "displayName", ",", "Boolean", "isCapped", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}\"", ";", "StringBuilder", "sb", "=", "path", ...
Update the service properties REST: PUT /dbaas/logs/{serviceName} @param serviceName [required] Service name @param displayName [required] Service custom name @param isCapped [required] If set, block indexation when plan's limit is reached
[ "Update", "the", "service", "properties" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1011-L1019
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_dashboard_POST
public OvhOperation serviceName_output_graylog_dashboard_POST(String serviceName, Boolean autoSelectOption, String description, String optionId, String title) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/dashboard"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "autoSelectOption", autoSelectOption); addBody(o, "description", description); addBody(o, "optionId", optionId); addBody(o, "title", title); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_output_graylog_dashboard_POST(String serviceName, Boolean autoSelectOption, String description, String optionId, String title) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/dashboard"; StringBuilder sb = path(qPath, serviceName); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "autoSelectOption", autoSelectOption); addBody(o, "description", description); addBody(o, "optionId", optionId); addBody(o, "title", title); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_output_graylog_dashboard_POST", "(", "String", "serviceName", ",", "Boolean", "autoSelectOption", ",", "String", "description", ",", "String", "optionId", ",", "String", "title", ")", "throws", "IOException", "{", "String", "qPath"...
Register a new graylog dashboard REST: POST /dbaas/logs/{serviceName}/output/graylog/dashboard @param serviceName [required] Service name @param optionId [required] Option ID @param title [required] Title @param description [required] Description @param autoSelectOption [required] If set, automatically selects a compatible option
[ "Register", "a", "new", "graylog", "dashboard" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1116-L1126
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_dashboard_dashboardId_GET
public OvhDashboard serviceName_output_graylog_dashboard_dashboardId_GET(String serviceName, String dashboardId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/dashboard/{dashboardId}"; StringBuilder sb = path(qPath, serviceName, dashboardId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDashboard.class); }
java
public OvhDashboard serviceName_output_graylog_dashboard_dashboardId_GET(String serviceName, String dashboardId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/dashboard/{dashboardId}"; StringBuilder sb = path(qPath, serviceName, dashboardId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhDashboard.class); }
[ "public", "OvhDashboard", "serviceName_output_graylog_dashboard_dashboardId_GET", "(", "String", "serviceName", ",", "String", "dashboardId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/output/graylog/dashboard/{dashboardId}\"", ";", "S...
Returns details of specified graylog dashboard REST: GET /dbaas/logs/{serviceName}/output/graylog/dashboard/{dashboardId} @param serviceName [required] Service name @param dashboardId [required] Dashboard ID
[ "Returns", "details", "of", "specified", "graylog", "dashboard" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1149-L1154
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_GET
public OvhStream serviceName_output_graylog_stream_streamId_GET(String serviceName, String streamId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}"; StringBuilder sb = path(qPath, serviceName, streamId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhStream.class); }
java
public OvhStream serviceName_output_graylog_stream_streamId_GET(String serviceName, String streamId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}"; StringBuilder sb = path(qPath, serviceName, streamId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhStream.class); }
[ "public", "OvhStream", "serviceName_output_graylog_stream_streamId_GET", "(", "String", "serviceName", ",", "String", "streamId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}\"", ";", "StringBuilder", "...
Returns details of specified graylog stream REST: GET /dbaas/logs/{serviceName}/output/graylog/stream/{streamId} @param serviceName [required] Service name @param streamId [required] Stream ID
[ "Returns", "details", "of", "specified", "graylog", "stream" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1286-L1291
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_PUT
public OvhOperation serviceName_output_graylog_stream_streamId_PUT(String serviceName, String streamId, OvhStreamColdStorageCompressionEnum coldStorageCompression, Boolean coldStorageEnabled, Boolean coldStorageNotifyEnabled, Long coldStorageRetention, String description, Boolean indexingEnabled, String optionId, String title, Boolean webSocketEnabled) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}"; StringBuilder sb = path(qPath, serviceName, streamId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "coldStorageCompression", coldStorageCompression); addBody(o, "coldStorageEnabled", coldStorageEnabled); addBody(o, "coldStorageNotifyEnabled", coldStorageNotifyEnabled); addBody(o, "coldStorageRetention", coldStorageRetention); addBody(o, "description", description); addBody(o, "indexingEnabled", indexingEnabled); addBody(o, "optionId", optionId); addBody(o, "title", title); addBody(o, "webSocketEnabled", webSocketEnabled); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_output_graylog_stream_streamId_PUT(String serviceName, String streamId, OvhStreamColdStorageCompressionEnum coldStorageCompression, Boolean coldStorageEnabled, Boolean coldStorageNotifyEnabled, Long coldStorageRetention, String description, Boolean indexingEnabled, String optionId, String title, Boolean webSocketEnabled) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}"; StringBuilder sb = path(qPath, serviceName, streamId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "coldStorageCompression", coldStorageCompression); addBody(o, "coldStorageEnabled", coldStorageEnabled); addBody(o, "coldStorageNotifyEnabled", coldStorageNotifyEnabled); addBody(o, "coldStorageRetention", coldStorageRetention); addBody(o, "description", description); addBody(o, "indexingEnabled", indexingEnabled); addBody(o, "optionId", optionId); addBody(o, "title", title); addBody(o, "webSocketEnabled", webSocketEnabled); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_output_graylog_stream_streamId_PUT", "(", "String", "serviceName", ",", "String", "streamId", ",", "OvhStreamColdStorageCompressionEnum", "coldStorageCompression", ",", "Boolean", "coldStorageEnabled", ",", "Boolean", "coldStorageNotifyEnabled...
Update information of specified graylog stream REST: PUT /dbaas/logs/{serviceName}/output/graylog/stream/{streamId} @param serviceName [required] Service name @param streamId [required] Stream ID @param webSocketEnabled [required] Web socket enabled @param indexingEnabled [required] ES indexing enabled @param coldStorageRetention [required] Cold storage retention time @param coldStorageCompression [required] Cold storage compression @param description [required] Description @param coldStorageNotifyEnabled [required] Cold storage notify enabled @param optionId [required] Option ID @param title [required] Title @param coldStorageEnabled [required] Cold storage enabled
[ "Update", "information", "of", "specified", "graylog", "stream" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1309-L1324
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_alert_POST
public OvhOperation serviceName_output_graylog_stream_streamId_alert_POST(String serviceName, String streamId, Long backlog, OvhStreamAlertConditionConditionTypeEnum conditionType, OvhStreamAlertConditionConstraintTypeEnum constraintType, String field, Long grace, String queryFilter, Boolean repeatNotificationsEnabled, Long threshold, OvhStreamAlertConditionThresholdTypeEnum thresholdType, Long time, String title, String value) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/alert"; StringBuilder sb = path(qPath, serviceName, streamId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "backlog", backlog); addBody(o, "conditionType", conditionType); addBody(o, "constraintType", constraintType); addBody(o, "field", field); addBody(o, "grace", grace); addBody(o, "queryFilter", queryFilter); addBody(o, "repeatNotificationsEnabled", repeatNotificationsEnabled); addBody(o, "threshold", threshold); addBody(o, "thresholdType", thresholdType); addBody(o, "time", time); addBody(o, "title", title); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_output_graylog_stream_streamId_alert_POST(String serviceName, String streamId, Long backlog, OvhStreamAlertConditionConditionTypeEnum conditionType, OvhStreamAlertConditionConstraintTypeEnum constraintType, String field, Long grace, String queryFilter, Boolean repeatNotificationsEnabled, Long threshold, OvhStreamAlertConditionThresholdTypeEnum thresholdType, Long time, String title, String value) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/alert"; StringBuilder sb = path(qPath, serviceName, streamId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "backlog", backlog); addBody(o, "conditionType", conditionType); addBody(o, "constraintType", constraintType); addBody(o, "field", field); addBody(o, "grace", grace); addBody(o, "queryFilter", queryFilter); addBody(o, "repeatNotificationsEnabled", repeatNotificationsEnabled); addBody(o, "threshold", threshold); addBody(o, "thresholdType", thresholdType); addBody(o, "time", time); addBody(o, "title", title); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_output_graylog_stream_streamId_alert_POST", "(", "String", "serviceName", ",", "String", "streamId", ",", "Long", "backlog", ",", "OvhStreamAlertConditionConditionTypeEnum", "conditionType", ",", "OvhStreamAlertConditionConstraintTypeEnum", "c...
Register a new alert on specified graylog stream REST: POST /dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/alert @param serviceName [required] Service name @param streamId [required] Stream ID @param thresholdType [required] Threshold type @param grace [required] Grace period @param constraintType [required] Constraint type @param conditionType [required] Condition type @param repeatNotificationsEnabled [required] Repeat notifications enabled @param value [required] Value @param backlog [required] Backlog @param threshold [required] Threshold @param time [required] Time @param title [required] Title @param field [required] Field @param queryFilter [required] Query filter
[ "Register", "a", "new", "alert", "on", "specified", "graylog", "stream" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1359-L1377
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_alert_alertId_GET
public OvhStreamAlertCondition serviceName_output_graylog_stream_streamId_alert_alertId_GET(String serviceName, String streamId, String alertId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/alert/{alertId}"; StringBuilder sb = path(qPath, serviceName, streamId, alertId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhStreamAlertCondition.class); }
java
public OvhStreamAlertCondition serviceName_output_graylog_stream_streamId_alert_alertId_GET(String serviceName, String streamId, String alertId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/alert/{alertId}"; StringBuilder sb = path(qPath, serviceName, streamId, alertId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhStreamAlertCondition.class); }
[ "public", "OvhStreamAlertCondition", "serviceName_output_graylog_stream_streamId_alert_alertId_GET", "(", "String", "serviceName", ",", "String", "streamId", ",", "String", "alertId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/output...
Returns details of specified graylog stream alert REST: GET /dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/alert/{alertId} @param serviceName [required] Service name @param streamId [required] Stream ID @param alertId [required] Alert ID
[ "Returns", "details", "of", "specified", "graylog", "stream", "alert" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1402-L1407
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_archive_archiveId_GET
public OvhArchive serviceName_output_graylog_stream_streamId_archive_archiveId_GET(String serviceName, String streamId, String archiveId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/archive/{archiveId}"; StringBuilder sb = path(qPath, serviceName, streamId, archiveId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhArchive.class); }
java
public OvhArchive serviceName_output_graylog_stream_streamId_archive_archiveId_GET(String serviceName, String streamId, String archiveId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/archive/{archiveId}"; StringBuilder sb = path(qPath, serviceName, streamId, archiveId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhArchive.class); }
[ "public", "OvhArchive", "serviceName_output_graylog_stream_streamId_archive_archiveId_GET", "(", "String", "serviceName", ",", "String", "streamId", ",", "String", "archiveId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/output/graylo...
Returns details of specified archive REST: GET /dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/archive/{archiveId} @param serviceName [required] Service name @param streamId [required] Stream ID @param archiveId [required] Archive ID
[ "Returns", "details", "of", "specified", "archive" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1457-L1462
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_archive_archiveId_url_POST
public OvhArchiveUrl serviceName_output_graylog_stream_streamId_archive_archiveId_url_POST(String serviceName, String streamId, String archiveId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/archive/{archiveId}/url"; StringBuilder sb = path(qPath, serviceName, streamId, archiveId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhArchiveUrl.class); }
java
public OvhArchiveUrl serviceName_output_graylog_stream_streamId_archive_archiveId_url_POST(String serviceName, String streamId, String archiveId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/archive/{archiveId}/url"; StringBuilder sb = path(qPath, serviceName, streamId, archiveId); String resp = exec(qPath, "POST", sb.toString(), null); return convertTo(resp, OvhArchiveUrl.class); }
[ "public", "OvhArchiveUrl", "serviceName_output_graylog_stream_streamId_archive_archiveId_url_POST", "(", "String", "serviceName", ",", "String", "streamId", ",", "String", "archiveId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/outpu...
Get a public temporary URL to access the archive REST: POST /dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/archive/{archiveId}/url @param serviceName [required] Service name @param streamId [required] Stream ID @param archiveId [required] Archive ID
[ "Get", "a", "public", "temporary", "URL", "to", "access", "the", "archive" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1472-L1477
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_rule_ruleId_GET
public ArrayList<OvhStreamRule> serviceName_output_graylog_stream_streamId_rule_ruleId_GET(String serviceName, String streamId, String ruleId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/rule/{ruleId}"; StringBuilder sb = path(qPath, serviceName, streamId, ruleId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
java
public ArrayList<OvhStreamRule> serviceName_output_graylog_stream_streamId_rule_ruleId_GET(String serviceName, String streamId, String ruleId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/rule/{ruleId}"; StringBuilder sb = path(qPath, serviceName, streamId, ruleId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, t6); }
[ "public", "ArrayList", "<", "OvhStreamRule", ">", "serviceName_output_graylog_stream_streamId_rule_ruleId_GET", "(", "String", "serviceName", ",", "String", "streamId", ",", "String", "ruleId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{ser...
Returns details of specified graylog stream rule REST: GET /dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/rule/{ruleId} @param serviceName [required] Service name @param streamId [required] Stream ID @param ruleId [required] Rule ID
[ "Returns", "details", "of", "specified", "graylog", "stream", "rule" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1530-L1535
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_graylog_stream_streamId_rule_POST
public OvhOperation serviceName_output_graylog_stream_streamId_rule_POST(String serviceName, String streamId, String field, Boolean isInverted, OvhStreamRuleOperatorEnum operator, String value) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/rule"; StringBuilder sb = path(qPath, serviceName, streamId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "field", field); addBody(o, "isInverted", isInverted); addBody(o, "operator", operator); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_output_graylog_stream_streamId_rule_POST(String serviceName, String streamId, String field, Boolean isInverted, OvhStreamRuleOperatorEnum operator, String value) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/rule"; StringBuilder sb = path(qPath, serviceName, streamId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "field", field); addBody(o, "isInverted", isInverted); addBody(o, "operator", operator); addBody(o, "value", value); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_output_graylog_stream_streamId_rule_POST", "(", "String", "serviceName", ",", "String", "streamId", ",", "String", "field", ",", "Boolean", "isInverted", ",", "OvhStreamRuleOperatorEnum", "operator", ",", "String", "value", ")", "thr...
Register a new rule on specified graylog stream REST: POST /dbaas/logs/{serviceName}/output/graylog/stream/{streamId}/rule @param serviceName [required] Service name @param streamId [required] Stream ID @param value [required] Field value @param field [required] Field name @param operator [required] Field operator @param isInverted [required] Invert condition
[ "Register", "a", "new", "rule", "on", "specified", "graylog", "stream" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1563-L1573
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_elasticsearch_alias_aliasId_index_POST
public OvhOperation serviceName_output_elasticsearch_alias_aliasId_index_POST(String serviceName, String aliasId, String indexId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}/index"; StringBuilder sb = path(qPath, serviceName, aliasId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "indexId", indexId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_output_elasticsearch_alias_aliasId_index_POST(String serviceName, String aliasId, String indexId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}/index"; StringBuilder sb = path(qPath, serviceName, aliasId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "indexId", indexId); String resp = exec(qPath, "POST", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_output_elasticsearch_alias_aliasId_index_POST", "(", "String", "serviceName", ",", "String", "aliasId", ",", "String", "indexId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/output/elasticsearch/...
Attach a elasticsearch index to specified elasticsearch alias REST: POST /dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}/index @param serviceName [required] Service name @param aliasId [required] Alias ID @param indexId [required] Index ID
[ "Attach", "a", "elasticsearch", "index", "to", "specified", "elasticsearch", "alias" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1597-L1604
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_elasticsearch_alias_aliasId_GET
public OvhAlias serviceName_output_elasticsearch_alias_aliasId_GET(String serviceName, String aliasId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}"; StringBuilder sb = path(qPath, serviceName, aliasId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhAlias.class); }
java
public OvhAlias serviceName_output_elasticsearch_alias_aliasId_GET(String serviceName, String aliasId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}"; StringBuilder sb = path(qPath, serviceName, aliasId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhAlias.class); }
[ "public", "OvhAlias", "serviceName_output_elasticsearch_alias_aliasId_GET", "(", "String", "serviceName", ",", "String", "aliasId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}\"", ";", "StringBuilder...
Returns specified elasticsearch alias REST: GET /dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId} @param serviceName [required] Service name @param aliasId [required] Alias ID
[ "Returns", "specified", "elasticsearch", "alias" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1702-L1707
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_elasticsearch_alias_aliasId_PUT
public OvhOperation serviceName_output_elasticsearch_alias_aliasId_PUT(String serviceName, String aliasId, String description, String optionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}"; StringBuilder sb = path(qPath, serviceName, aliasId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "optionId", optionId); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
java
public OvhOperation serviceName_output_elasticsearch_alias_aliasId_PUT(String serviceName, String aliasId, String description, String optionId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId}"; StringBuilder sb = path(qPath, serviceName, aliasId); HashMap<String, Object>o = new HashMap<String, Object>(); addBody(o, "description", description); addBody(o, "optionId", optionId); String resp = exec(qPath, "PUT", sb.toString(), o); return convertTo(resp, OvhOperation.class); }
[ "public", "OvhOperation", "serviceName_output_elasticsearch_alias_aliasId_PUT", "(", "String", "serviceName", ",", "String", "aliasId", ",", "String", "description", ",", "String", "optionId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serv...
Update specified elasticsearch alias REST: PUT /dbaas/logs/{serviceName}/output/elasticsearch/alias/{aliasId} @param serviceName [required] Service name @param aliasId [required] Alias ID @param optionId [required] Option ID @param description [required] Description
[ "Update", "specified", "elasticsearch", "alias" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1718-L1726
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_elasticsearch_index_indexId_GET
public OvhIndex serviceName_output_elasticsearch_index_indexId_GET(String serviceName, String indexId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/index/{indexId}"; StringBuilder sb = path(qPath, serviceName, indexId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhIndex.class); }
java
public OvhIndex serviceName_output_elasticsearch_index_indexId_GET(String serviceName, String indexId) throws IOException { String qPath = "/dbaas/logs/{serviceName}/output/elasticsearch/index/{indexId}"; StringBuilder sb = path(qPath, serviceName, indexId); String resp = exec(qPath, "GET", sb.toString(), null); return convertTo(resp, OvhIndex.class); }
[ "public", "OvhIndex", "serviceName_output_elasticsearch_index_indexId_GET", "(", "String", "serviceName", ",", "String", "indexId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas/logs/{serviceName}/output/elasticsearch/index/{indexId}\"", ";", "StringBuilder...
Returns specified elasticsearch index REST: GET /dbaas/logs/{serviceName}/output/elasticsearch/index/{indexId} @param serviceName [required] Service name @param indexId [required] Index ID
[ "Returns", "specified", "elasticsearch", "index" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1835-L1840
train
UrielCh/ovh-java-sdk
ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java
ApiOvhDbaaslogs.serviceName_output_elasticsearch_index_indexId_PUT
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); }
java
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); }
[ "public", "OvhOperation", "serviceName_output_elasticsearch_index_indexId_PUT", "(", "String", "serviceName", ",", "String", "indexId", ",", "Boolean", "alertNotifyEnabled", ",", "String", "description", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/dbaas...
Update specified elasticsearch index REST: PUT /dbaas/logs/{serviceName}/output/elasticsearch/index/{indexId} @param serviceName [required] Service name @param indexId [required] Index ID @param alertNotifyEnabled [required] Alert notify enabled @param description [required] Description
[ "Update", "specified", "elasticsearch", "index" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-dbaaslogs/src/main/java/net/minidev/ovh/api/ApiOvhDbaaslogs.java#L1851-L1859
train
UrielCh/ovh-java-sdk
ovh-java-sdk-hpcspot/src/main/java/net/minidev/ovh/api/ApiOvhHpcspot.java
ApiOvhHpcspot.serviceName_consumption_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "Long", ">", "serviceName_consumption_GET", "(", "String", "serviceName", ",", "Date", "hpcspotItemEndDate_from", ",", "Date", "hpcspotItemEndDate_to", ",", "Long", "hpcspotItemId", ",", "Long", "orderId", ",", "OvhConsumptionTypeEnum", "type...
Details of the consumption of your account REST: GET /hpcspot/{serviceName}/consumption @param hpcspotItemEndDate_from [required] Filter the value of hpcspotItemEndDate property (>=) @param hpcspotItemId [required] Filter the value of hpcspotItemId property (=) @param orderId [required] Filter the value of orderId property (=) @param hpcspotItemEndDate_to [required] Filter the value of hpcspotItemEndDate property (<=) @param type [required] Filter the value of type property (=) @param serviceName [required] The internal name of your HPC Spot account
[ "Details", "of", "the", "consumption", "of", "your", "account" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-hpcspot/src/main/java/net/minidev/ovh/api/ApiOvhHpcspot.java#L88-L98
train
JDBDT/jdbdt
src/main/java/org/jdbdt/Log.java
Log.write
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); }
java
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); }
[ "void", "write", "(", "CallInfo", "callInfo", ",", "DataSet", "data", ")", "{", "Element", "rootNode", "=", "root", "(", "callInfo", ")", ";", "write", "(", "rootNode", ",", "data", ".", "getSource", "(", ")", ")", ";", "Element", "dsNode", "=", "creat...
Write a data set to the log. @param callInfo Call info. @param data Data set.
[ "Write", "a", "data", "set", "to", "the", "log", "." ]
7e32845ad41dfbc5d6fd0fd561e3613697186df4
https://github.com/JDBDT/jdbdt/blob/7e32845ad41dfbc5d6fd0fd561e3613697186df4/src/main/java/org/jdbdt/Log.java#L167-L173
train
JDBDT/jdbdt
src/main/java/org/jdbdt/Log.java
Log.write
void write(CallInfo callInfo, SQLException e) { Element rootNode = root(callInfo); Element exNode = createNode(rootNode, DATABASE_EXCEPTION_TAG); StringWriter sw = new StringWriter(); sw.append('\n'); e.printStackTrace(new PrintWriter(sw)); exNode.appendChild(xmlDoc.createCDATASection(sw.toString())); flush(rootNode); }
java
void write(CallInfo callInfo, SQLException e) { Element rootNode = root(callInfo); Element exNode = createNode(rootNode, DATABASE_EXCEPTION_TAG); StringWriter sw = new StringWriter(); sw.append('\n'); e.printStackTrace(new PrintWriter(sw)); exNode.appendChild(xmlDoc.createCDATASection(sw.toString())); flush(rootNode); }
[ "void", "write", "(", "CallInfo", "callInfo", ",", "SQLException", "e", ")", "{", "Element", "rootNode", "=", "root", "(", "callInfo", ")", ";", "Element", "exNode", "=", "createNode", "(", "rootNode", ",", "DATABASE_EXCEPTION_TAG", ")", ";", "StringWriter", ...
Report a database exception onto the log. @param callInfo Call info. @param e Database exception.
[ "Report", "a", "database", "exception", "onto", "the", "log", "." ]
7e32845ad41dfbc5d6fd0fd561e3613697186df4
https://github.com/JDBDT/jdbdt/blob/7e32845ad41dfbc5d6fd0fd561e3613697186df4/src/main/java/org/jdbdt/Log.java#L180-L188
train
JDBDT/jdbdt
src/main/java/org/jdbdt/Log.java
Log.writeSQL
void writeSQL(CallInfo callInfo, String sql) { Element rootNode = root(callInfo); writeSQL(rootNode, sql); flush(rootNode); }
java
void writeSQL(CallInfo callInfo, String sql) { Element rootNode = root(callInfo); writeSQL(rootNode, sql); flush(rootNode); }
[ "void", "writeSQL", "(", "CallInfo", "callInfo", ",", "String", "sql", ")", "{", "Element", "rootNode", "=", "root", "(", "callInfo", ")", ";", "writeSQL", "(", "rootNode", ",", "sql", ")", ";", "flush", "(", "rootNode", ")", ";", "}" ]
Log SQL code. @param callInfo Call info. @param sql SQL code.
[ "Log", "SQL", "code", "." ]
7e32845ad41dfbc5d6fd0fd561e3613697186df4
https://github.com/JDBDT/jdbdt/blob/7e32845ad41dfbc5d6fd0fd561e3613697186df4/src/main/java/org/jdbdt/Log.java#L236-L240
train
JDBDT/jdbdt
src/main/java/org/jdbdt/Log.java
Log.writeCallInfo
void writeCallInfo(CallInfo callInfo) { Element rootNode = root(callInfo); createNode(rootNode, callInfo.getAPIMethodInfo().getMethodName()); flush(rootNode); }
java
void writeCallInfo(CallInfo callInfo) { Element rootNode = root(callInfo); createNode(rootNode, callInfo.getAPIMethodInfo().getMethodName()); flush(rootNode); }
[ "void", "writeCallInfo", "(", "CallInfo", "callInfo", ")", "{", "Element", "rootNode", "=", "root", "(", "callInfo", ")", ";", "createNode", "(", "rootNode", ",", "callInfo", ".", "getAPIMethodInfo", "(", ")", ".", "getMethodName", "(", ")", ")", ";", "flu...
Log plain call information. @param callInfo Call information.
[ "Log", "plain", "call", "information", "." ]
7e32845ad41dfbc5d6fd0fd561e3613697186df4
https://github.com/JDBDT/jdbdt/blob/7e32845ad41dfbc5d6fd0fd561e3613697186df4/src/main/java/org/jdbdt/Log.java#L318-L322
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.xdsl_offers_offersName_GET
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); }
java
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); }
[ "public", "OvhPrice", "xdsl_offers_offersName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "xdsl", ".", "OvhOffersEnum", "offersName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/xdsl/offers/{offersName}\"", ...
Get the price of xdsl offers REST: GET /price/xdsl/offers/{offersName} @param offersName [required] The name of the offer
[ "Get", "the", "price", "of", "xdsl", "offers" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L24-L29
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.xdsl_addressMove_fee_option_GET
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); }
java
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); }
[ "public", "OvhPrice", "xdsl_addressMove_fee_option_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "xdsl", ".", "addressmove", ".", "OvhFeeEnum", "option", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/xdsl/add...
Get the price of address move option fee REST: GET /price/xdsl/addressMove/fee/{option} @param option [required] The option name
[ "Get", "the", "price", "of", "address", "move", "option", "fee" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L37-L42
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.xdsl_options_ipv4_ipRange_GET
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); }
java
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); }
[ "public", "OvhPrice", "xdsl_options_ipv4_ipRange_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "xdsl", ".", "options", ".", "OvhIpv4Enum", "ipRange", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/xdsl/options...
Get the price of IPv4 options REST: GET /price/xdsl/options/ipv4/{ipRange} @param ipRange [required] The range of the IPv4
[ "Get", "the", "price", "of", "IPv4", "options" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L50-L55
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.xdsl_options_line_lineAction_GET
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); }
java
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); }
[ "public", "OvhPrice", "xdsl_options_line_lineAction_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "xdsl", ".", "options", ".", "OvhLineEnum", "lineAction", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/xdsl/o...
Get the price of line action REST: GET /price/xdsl/options/line/{lineAction} @param lineAction [required] The type of line action
[ "Get", "the", "price", "of", "line", "action" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L63-L68
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.dedicated_server_antiDDoSPro_commercialRange_GET
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); }
java
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); }
[ "public", "OvhPrice", "dedicated_server_antiDDoSPro_commercialRange_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "dedicated", ".", "server", ".", "OvhAntiDDoSProEnum", "commercialRange", ")", "throws", "IOException", "{", "String", "q...
Get price of anti-DDos Pro option REST: GET /price/dedicated/server/antiDDoSPro/{commercialRange} @param commercialRange [required] commercial range of your dedicated server
[ "Get", "price", "of", "anti", "-", "DDos", "Pro", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L102-L107
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.dedicated_server_firewall_firewallModel_GET
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); }
java
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); }
[ "public", "OvhPrice", "dedicated_server_firewall_firewallModel_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "dedicated", ".", "server", ".", "OvhFirewallEnum", "firewallModel", ")", "throws", "IOException", "{", "String", "qPath", "...
Get price of available firewall models REST: GET /price/dedicated/server/firewall/{firewallModel} @param firewallModel [required] Model of firewall
[ "Get", "price", "of", "available", "firewall", "models" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L115-L120
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.dedicated_server_ip_routedTo_GET
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); }
java
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); }
[ "public", "OvhPrice", "dedicated_server_ip_routedTo_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "dedicated", ".", "server", ".", "OvhIpEnum", "routedTo", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/dedica...
Get price of IPs REST: GET /price/dedicated/server/ip/{routedTo} @param routedTo [required] Ip
[ "Get", "price", "of", "IPs" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L128-L133
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.dedicated_server_backupStorage_capacity_GET
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); }
java
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); }
[ "public", "OvhPrice", "dedicated_server_backupStorage_capacity_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "dedicated", ".", "server", ".", "OvhBackupStorageEnum", "capacity", ")", "throws", "IOException", "{", "String", "qPath", "...
Get price of backup storage offer REST: GET /price/dedicated/server/backupStorage/{capacity} @param capacity [required] Capacity in gigabytes of backup storage offer
[ "Get", "price", "of", "backup", "storage", "offer" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L141-L146
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.dedicated_nasha_model_modelName_GET
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); }
java
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); }
[ "public", "OvhPrice", "dedicated_nasha_model_modelName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "dedicated", ".", "nasha", ".", "OvhModelEnum", "modelName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/...
Get the price of Nas HA offers REST: GET /price/dedicated/nasha/model/{modelName} @param modelName [required] capacity in gigabit of Nas Ha
[ "Get", "the", "price", "of", "Nas", "HA", "offers" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L154-L159
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.overTheBox_offer_offerName_GET
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); }
java
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); }
[ "public", "OvhPrice", "overTheBox_offer_offerName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "overthebox", ".", "OvhOfferEnum", "offerName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/overTheBox/offer/{offe...
Get the price of overTheBox offers REST: GET /price/overTheBox/offer/{offerName} @param offerName [required] The name of the offer
[ "Get", "the", "price", "of", "overTheBox", "offers" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L167-L172
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.hpcspot_consumption_job_reference_GET
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); }
java
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); }
[ "public", "OvhPrice", "hpcspot_consumption_job_reference_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "hpcspot", ".", "consumption", ".", "OvhJobEnum", "reference", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/pr...
Get the price of a JOB consumption for 1 hour REST: GET /price/hpcspot/consumption/job/{reference} @param reference [required] The reference of the JOB consumption
[ "Get", "the", "price", "of", "a", "JOB", "consumption", "for", "1", "hour" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L180-L185
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.hpcspot_account_subscription_subscriptionName_GET
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); }
java
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); }
[ "public", "OvhPrice", "hpcspot_account_subscription_subscriptionName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "hpcspot", ".", "account", ".", "OvhSubscriptionEnum", "subscriptionName", ")", "throws", "IOException", "{", "String", ...
Get the price of a HPC Spot Account for 1 month REST: GET /price/hpcspot/account/subscription/{subscriptionName} @param subscriptionName [required] Subscription
[ "Get", "the", "price", "of", "a", "HPC", "Spot", "Account", "for", "1", "month" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L219-L224
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.hosting_web_cdn_cdnName_GET
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); }
java
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); }
[ "public", "OvhPrice", "hosting_web_cdn_cdnName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "hosting", ".", "web", ".", "OvhCdnEnum", "cdnName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/hosting/web/cdn/...
Get the price for cdn option REST: GET /price/hosting/web/cdn/{cdnName} @param cdnName [required] Cdn
[ "Get", "the", "price", "for", "cdn", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L232-L237
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.hosting_web_ssl_sslName_GET
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); }
java
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); }
[ "public", "OvhPrice", "hosting_web_ssl_sslName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "hosting", ".", "web", ".", "OvhSslEnum", "sslName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/hosting/web/ssl/...
Get the price for hosted ssl option REST: GET /price/hosting/web/ssl/{sslName} @param sslName [required] Ssl
[ "Get", "the", "price", "for", "hosted", "ssl", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L245-L250
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.hosting_web_extraSqlPerso_extraSqlPersoName_GET
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); }
java
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); }
[ "public", "OvhPrice", "hosting_web_extraSqlPerso_extraSqlPersoName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "hosting", ".", "web", ".", "OvhExtraSqlPersoEnum", "extraSqlPersoName", ")", "throws", "IOException", "{", "String", "qPa...
Get the price for extra sql perso option REST: GET /price/hosting/web/extraSqlPerso/{extraSqlPersoName} @param extraSqlPersoName [required] ExtraSqlPerso
[ "Get", "the", "price", "for", "extra", "sql", "perso", "option" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L258-L263
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.hosting_privateDatabase_privateDatabaseName_GET
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); }
java
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); }
[ "public", "OvhPrice", "hosting_privateDatabase_privateDatabaseName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "hosting", ".", "OvhPrivateDatabaseEnum", "privateDatabaseName", ")", "throws", "IOException", "{", "String", "qPath", "=", ...
Get the price for a private database REST: GET /price/hosting/privateDatabase/{privateDatabaseName} @param privateDatabaseName [required] PrivateDatabase
[ "Get", "the", "price", "for", "a", "private", "database" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L271-L276
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.domain_zone_option_optionName_GET
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); }
java
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); }
[ "public", "OvhPrice", "domain_zone_option_optionName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "domain", ".", "zone", ".", "OvhOptionEnum", "optionName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/doma...
Get price of zone options REST: GET /price/domain/zone/option/{optionName} @param optionName [required] Option
[ "Get", "price", "of", "zone", "options" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L284-L289
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.dedicatedCloud_2018v2_rbx2a_infrastructure_filer_hourly_filerProfile_GET
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); }
java
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); }
[ "public", "OvhPrice", "dedicatedCloud_2018v2_rbx2a_infrastructure_filer_hourly_filerProfile_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "dedicatedcloud", ".", "_2018v2", ".", "rbx2a", ".", "infrastructure", ".", "filer", ".", "OvhHourl...
Get price of dedicated Cloud hourly filer ressources REST: GET /price/dedicatedCloud/2018v2/rbx2a/infrastructure/filer/hourly/{filerProfile} @param filerProfile [required] type of the hourly ressources you want to order
[ "Get", "price", "of", "dedicated", "Cloud", "hourly", "filer", "ressources" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L4327-L4332
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.dedicatedCloud_2016v7_sbg1a_enterprise_host_monthly_hostProfile_GET
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); }
java
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); }
[ "public", "OvhPrice", "dedicatedCloud_2016v7_sbg1a_enterprise_host_monthly_hostProfile_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "dedicatedcloud", ".", "_2016v7", ".", "sbg1a", ".", "enterprise", ".", "host", ".", "OvhMonthlyEnum", ...
Get price of dedicated Cloud monthly host ressources REST: GET /price/dedicatedCloud/2016v7/sbg1a/enterprise/host/monthly/{hostProfile} @param hostProfile [required] type of the monthly ressources you want to order
[ "Get", "price", "of", "dedicated", "Cloud", "monthly", "host", "ressources" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L4353-L4358
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.vps_2014v1_cloud_model_modelName_GET
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); }
java
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); }
[ "public", "OvhPrice", "vps_2014v1_cloud_model_modelName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "vps", ".", "_2014v1", ".", "cloud", ".", "OvhModelEnum", "modelName", ")", "throws", "IOException", "{", "String", "qPath", "=...
Get price of VPS Cloud 2014 REST: GET /price/vps/2014v1/cloud/model/{modelName} @param modelName [required] Model
[ "Get", "price", "of", "VPS", "Cloud", "2014" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L6745-L6750
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.saas_csp2_license_licenseName_GET
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); }
java
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); }
[ "public", "OvhPrice", "saas_csp2_license_licenseName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "saas", ".", "csp2", ".", "OvhLicenseEnum", "licenseName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/saas...
Get the monthly price for an Office 365 license REST: GET /price/saas/csp2/license/{licenseName} @param licenseName [required] License
[ "Get", "the", "monthly", "price", "for", "an", "Office", "365", "license" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L7256-L7261
train
UrielCh/ovh-java-sdk
ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java
ApiOvhPrice.license_office_officeName_GET
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); }
java
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); }
[ "public", "OvhPrice", "license_office_officeName_GET", "(", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "price", ".", "license", ".", "OvhOfficeEnum", "officeName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/price/license/office/{officeNa...
Get the monthly price for an office license REST: GET /price/license/office/{officeName} @param officeName [required] Office
[ "Get", "the", "monthly", "price", "for", "an", "office", "license" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-price/src/main/java/net/minidev/ovh/api/ApiOvhPrice.java#L7269-L7274
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.mailingList_subscribe_POST
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); }
java
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); }
[ "public", "void", "mailingList_subscribe_POST", "(", "String", "email", ",", "String", "mailingList", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/mailingList/subscribe\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "Hash...
Subscribe an email to a restricted mailing list REST: POST /me/mailingList/subscribe @param email [required] Email you want to subscribe to @param mailingList [required] Mailing list
[ "Subscribe", "an", "email", "to", "a", "restricted", "mailing", "list" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L142-L149
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.identity_user_POST
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); }
java
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); }
[ "public", "void", "identity_user_POST", "(", "String", "description", ",", "String", "email", ",", "String", "group", ",", "String", "login", ",", "String", "password", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/identity/user\"", ";", "Str...
Create a new user REST: POST /me/identity/user @param login [required] User's login @param description [required] User's description @param email [required] User's email @param password [required] User's password @param group [required] User's group
[ "Create", "a", "new", "user" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L186-L196
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.identity_user_user_PUT
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); }
java
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); }
[ "public", "void", "identity_user_user_PUT", "(", "String", "user", ",", "String", "description", ",", "String", "email", ",", "String", "group", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/identity/user/{user}\"", ";", "StringBuilder", "sb", ...
Alter a user REST: PUT /me/identity/user/{user} @param user [required] User's login @param email [required] User's email @param description [required] User's description @param group [required] User's group
[ "Alter", "a", "user" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L232-L240
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.identity_group_group_PUT
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); }
java
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); }
[ "public", "void", "identity_group_group_PUT", "(", "String", "group", ",", "String", "description", ",", "OvhRoleEnum", "role", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/identity/group/{group}\"", ";", "StringBuilder", "sb", "=", "path", "(",...
Alter a group REST: PUT /me/identity/group/{group} @param group [required] Group's name @param description [required] Group's description @param role [required] Group's role
[ "Alter", "a", "group" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L299-L306
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.billing_invoicesByPostalMail_POST
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); }
java
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); }
[ "public", "void", "billing_invoicesByPostalMail_POST", "(", "Boolean", "enable", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/billing/invoicesByPostalMail\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "Stri...
Enable or disable invoices by postal mail REST: POST /me/billing/invoicesByPostalMail @param enable [required] Send invoices through postal mail API beta
[ "Enable", "or", "disable", "invoices", "by", "postal", "mail" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L361-L367
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.availableAutomaticPaymentMeans_GET
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); }
java
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); }
[ "public", "OvhAutomaticPaymentMean", "availableAutomaticPaymentMeans_GET", "(", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/availableAutomaticPaymentMeans\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "String", "resp", "=", ...
List available payment methods in this Nic's country REST: GET /me/availableAutomaticPaymentMeans
[ "List", "available", "payment", "methods", "in", "this", "Nic", "s", "country" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L374-L379
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.api_application_applicationId_DELETE
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); }
java
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); }
[ "public", "void", "api_application_applicationId_DELETE", "(", "Long", "applicationId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/api/application/{applicationId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "applicationId", ")"...
Remove this application. It will revoke all credential belonging to this application. REST: DELETE /me/api/application/{applicationId} @param applicationId [required]
[ "Remove", "this", "application", ".", "It", "will", "revoke", "all", "credential", "belonging", "to", "this", "application", "." ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L463-L467
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.api_credential_credentialId_DELETE
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); }
java
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); }
[ "public", "void", "api_credential_credentialId_DELETE", "(", "Long", "credentialId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/api/credential/{credentialId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "credentialId", ")", ";...
Remove this credential REST: DELETE /me/api/credential/{credentialId} @param credentialId [required]
[ "Remove", "this", "credential" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L488-L492
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.api_credential_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "Long", ">", "api_credential_GET", "(", "Long", "applicationId", ",", "OvhCredentialStateEnum", "status", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/api/credential\"", ";", "StringBuilder", "sb", "=", "path", "(", ...
List of your Api Credentials REST: GET /me/api/credential @param status [required] Filter the value of status property (=) @param applicationId [required] Filter the value of applicationId property (like)
[ "List", "of", "your", "Api", "Credentials" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L514-L521
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.autorenew_POST
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); }
java
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); }
[ "public", "void", "autorenew_POST", "(", "Long", "renewDay", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/autorenew\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "String", ",", "Object", ">", "o", ...
Activate auto renew for this nic REST: POST /me/autorenew @param renewDay [required] Day of autorenew
[ "Activate", "auto", "renew", "for", "this", "nic" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L553-L559
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.paymentMean_bankAccount_POST
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); }
java
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); }
[ "public", "OvhPaymentMeanValidation", "paymentMean_bankAccount_POST", "(", "String", "bic", ",", "String", "description", ",", "String", "iban", ",", "String", "ownerAddress", ",", "String", "ownerName", ",", "Boolean", "setDefault", ")", "throws", "IOException", "{",...
Enable payment through a new account REST: POST /me/paymentMean/bankAccount @param ownerAddress [required] Account owner's address @param bic [required] Account's BIC @param iban [required] Account's IBAN @param ownerName [required] Account owner's name @param setDefault [required] Set as default payment mean once validated @param description [required] Custom description of this account
[ "Enable", "payment", "through", "a", "new", "account" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L717-L729
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.paymentMean_creditCard_POST
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); }
java
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); }
[ "public", "OvhPaymentMeanValidation", "paymentMean_creditCard_POST", "(", "String", "description", ",", "String", "returnUrl", ",", "Boolean", "setDefault", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/paymentMean/creditCard\"", ";", "StringBuilder", ...
Add a new credit card REST: POST /me/paymentMean/creditCard @param returnUrl [required] Callback URL where the customer will be redirected to after validation @param setDefault [required] Set as default payment mean once validated @param description [required] Custom description of this account
[ "Add", "a", "new", "credit", "card" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L801-L810
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.credit_code_POST
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); }
java
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); }
[ "public", "OvhMovement", "credit_code_POST", "(", "String", "inputCode", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/credit/code\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "String", ",", "Object", ...
Validate a code to generate associated credit movement REST: POST /me/credit/code @param inputCode [required] Code to validate
[ "Validate", "a", "code", "to", "generate", "associated", "credit", "movement" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L868-L875
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.credit_balance_balanceName_movement_movementId_GET
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); }
java
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); }
[ "public", "OvhMovement", "credit_balance_balanceName_movement_movementId_GET", "(", "String", "balanceName", ",", "Long", "movementId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/credit/balance/{balanceName}/movement/{movementId}\"", ";", "StringBuilder", ...
Retrieve a specific movement for a credit balance REST: GET /me/credit/balance/{balanceName}/movement/{movementId} @param balanceName [required] Credit balance name @param movementId [required] Movement ID
[ "Retrieve", "a", "specific", "movement", "for", "a", "credit", "balance" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L884-L889
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.credit_balance_balanceName_GET
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); }
java
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); }
[ "public", "OvhBalance", "credit_balance_balanceName_GET", "(", "String", "balanceName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/credit/balance/{balanceName}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "balanceName", ")", "...
Retrieve a credit balance REST: GET /me/credit/balance/{balanceName} @param balanceName [required] Balance name
[ "Retrieve", "a", "credit", "balance" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L910-L915
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.credit_balance_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "String", ">", "credit_balance_GET", "(", "OvhType", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/credit/balance\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(", "sb", ...
Retrieve credit balance names REST: GET /me/credit/balance @param type [required] Balance type
[ "Retrieve", "credit", "balance", "names" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L923-L929
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.ipxeScript_POST
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); }
java
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); }
[ "public", "OvhIpxe", "ipxeScript_POST", "(", "String", "description", ",", "String", "name", ",", "String", "script", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/ipxeScript\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", "...
Add an IPXE script REST: POST /me/ipxeScript @param script [required] Content of your IPXE script @param description [required] A personnal description of this script @param name [required] name of your script
[ "Add", "an", "IPXE", "script" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L976-L985
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.payment_thod_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "Long", ">", "payment_thod_GET", "(", "String", "paymentType", ",", "OvhStatus", "status", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/payment/method\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")"...
Retrieve payment method ID list REST: GET /me/payment/method @param status [required] Status @param paymentType [required] Payment method type API beta
[ "Retrieve", "payment", "method", "ID", "list" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1011-L1018
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.payment_thod_POST
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); }
java
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); }
[ "public", "OvhValidationResult", "payment_thod_POST", "(", "Long", "billingContactId", ",", "OvhCallbackUrl", "callbackUrl", ",", "Boolean", "_default", ",", "String", "description", ",", "Long", "orderId", ",", "String", "paymentType", ",", "Boolean", "register", ")"...
Pay an order and register a new payment method if necessary REST: POST /me/payment/method @param billingContactId [required] Billing contact id @param callbackUrl [required] URL's necessary to register @param _default [required] Is this payment method set as the default one @param description [required] Customer personalized description @param orderId [required] The ID of one order to pay it @param paymentType [required] Payment type @param register [required] Register this payment method if it's possible (by default it's false and do a oneshot transaction) API beta
[ "Pay", "an", "order", "and", "register", "a", "new", "payment", "method", "if", "necessary" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1034-L1047
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.payment_thod_paymentMethodId_GET
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); }
java
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); }
[ "public", "OvhPaymentMethod", "payment_thod_paymentMethodId_GET", "(", "Long", "paymentMethodId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/payment/method/{paymentMethodId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "paymentMet...
Get one payment method REST: GET /me/payment/method/{paymentMethodId} @param paymentMethodId [required] Payment method ID API beta
[ "Get", "one", "payment", "method" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1057-L1062
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.payment_thod_paymentMethodId_PUT
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); }
java
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); }
[ "public", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "billing", ".", "OvhPaymentMethod", "payment_thod_paymentMethodId_PUT", "(", "Long", "paymentMethodId", ",", "Long", "billingContactId", ",", "Boolean", "_default", ",", "String", "description", ")", "t...
Edit payment method REST: PUT /me/payment/method/{paymentMethodId} @param paymentMethodId [required] Payment method ID @param _default [required] Set this method like default @param description [required] Customer personalized description @param billingContactId [required] Change your billing contact API beta
[ "Edit", "payment", "method" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1075-L1084
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.payment_thod_paymentMethodId_finalize_POST
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); }
java
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); }
[ "public", "OvhPaymentMethod", "payment_thod_paymentMethodId_finalize_POST", "(", "Long", "paymentMethodId", ",", "Long", "expirationMonth", ",", "Long", "expirationYear", ",", "String", "registrationId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/pa...
Finalize one payment method registration REST: POST /me/payment/method/{paymentMethodId}/finalize @param paymentMethodId [required] Payment method ID @param expirationMonth [required] Expiration month @param expirationYear [required] Expiration year @param registrationId [required] Registration ID API beta
[ "Finalize", "one", "payment", "method", "registration" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1112-L1121
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.payment_transaction_transactionId_GET
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); }
java
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); }
[ "public", "OvhTransaction", "payment_transaction_transactionId_GET", "(", "Long", "transactionId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/payment/transaction/{transactionId}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "transa...
Get associated payment method transaction REST: GET /me/payment/transaction/{transactionId} @param transactionId [required] Payment method transaction ID API beta
[ "Get", "associated", "payment", "method", "transaction" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1131-L1136
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.payment_transaction_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "Long", ">", "payment_transaction_GET", "(", "Long", "paymentMethodId", ",", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "me", ".", "payment", ".", "method", ".", "transaction", ".", "OvhStatus", "status", ")", "throws", ...
Retrieve associated payment method transaction ID list REST: GET /me/payment/transaction @param paymentMethodId [required] Payment method ID @param status [required] Transaction status API beta
[ "Retrieve", "associated", "payment", "method", "transaction", "ID", "list" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1147-L1154
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.sla_id_services_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "OvhSlaOperationService", ">", "sla_id_services_GET", "(", "Long", "id", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/sla/{id}/services\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "id", ")", ";...
Get services impacted by this SLA REST: GET /me/sla/{id}/services @param id [required] Id of the object
[ "Get", "services", "impacted", "by", "this", "SLA" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1175-L1180
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.sshKey_POST
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); }
java
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); }
[ "public", "void", "sshKey_POST", "(", "String", "key", ",", "String", "keyName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/sshKey\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "String", ",", "O...
Add a new public SSH key REST: POST /me/sshKey @param key [required] ASCII encoded public SSH key to add @param keyName [required] name of the new public SSH key
[ "Add", "a", "new", "public", "SSH", "key" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1277-L1284
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.sshKey_keyName_DELETE
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); }
java
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); }
[ "public", "void", "sshKey_keyName_DELETE", "(", "String", "keyName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/sshKey/{keyName}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "keyName", ")", ";", "exec", "(", "qPath", "...
Remove this public SSH key REST: DELETE /me/sshKey/{keyName} @param keyName [required] Name of this public SSH key
[ "Remove", "this", "public", "SSH", "key" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1318-L1322
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.subAccount_POST
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); }
java
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); }
[ "public", "Long", "subAccount_POST", "(", "String", "description", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/subAccount\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "String", ",", "Object", ">", ...
Create a new sub-account REST: POST /me/subAccount @param description [required] Description of the new sub-account
[ "Create", "a", "new", "sub", "-", "account" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1381-L1388
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.refund_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "String", ">", "refund_GET", "(", "Date", "date_from", ",", "Date", "date_to", ",", "Long", "orderId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/refund\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPa...
List of all the refunds the logged account has REST: GET /me/refund @param date_from [required] Filter the value of date property (>=) @param date_to [required] Filter the value of date property (<=) @param orderId [required] Filter the value of orderId property (=)
[ "List", "of", "all", "the", "refunds", "the", "logged", "account", "has" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1451-L1459
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.agreements_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "Long", ">", "agreements_GET", "(", "OvhAgreementStateEnum", "agreed", ",", "Long", "contractId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/agreements\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ...
List of contracts signed between you and OVH REST: GET /me/agreements @param contractId [required] Filter the value of contractId property (like) @param agreed [required] Filter the value of agreed property (like)
[ "List", "of", "contracts", "signed", "between", "you", "and", "OVH" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1468-L1475
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.voucher_checkValidity_POST
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); }
java
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); }
[ "public", "OvhVoucherStatus", "voucher_checkValidity_POST", "(", "String", "voucher", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/voucher/checkValidity\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "String...
Verify existing voucher REST: POST /me/voucher/checkValidity @param voucher [required] Voucher value
[ "Verify", "existing", "voucher" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1522-L1529
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.consent_campaignName_GET
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); }
java
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); }
[ "public", "OvhCampaign", "consent_campaignName_GET", "(", "String", "campaignName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/consent/{campaignName}\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "campaignName", ")", ";", "St...
Retrieve information about a consent campaign REST: GET /me/consent/{campaignName} @param campaignName [required] Consent campaign name
[ "Retrieve", "information", "about", "a", "consent", "campaign" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1549-L1554
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.consent_campaignName_decision_GET
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); }
java
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); }
[ "public", "OvhConsent", "consent_campaignName_decision_GET", "(", "String", "campaignName", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/consent/{campaignName}/decision\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "campaignName", ...
Get decision value for a consent campaign REST: GET /me/consent/{campaignName}/decision @param campaignName [required] Consent campaign name
[ "Get", "decision", "value", "for", "a", "consent", "campaign" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1562-L1567
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.consent_campaignName_decision_PUT
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); }
java
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); }
[ "public", "void", "consent_campaignName_decision_PUT", "(", "String", "campaignName", ",", "Boolean", "value", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/consent/{campaignName}/decision\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ...
Update decision of a consent campaign REST: PUT /me/consent/{campaignName}/decision @param campaignName [required] Consent campaign name @param value [required] Decision value
[ "Update", "decision", "of", "a", "consent", "campaign" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1576-L1582
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.fax_customDomains_POST
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); }
java
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); }
[ "public", "OvhMailDomain2Service", "fax_customDomains_POST", "(", "String", "domain", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/fax/customDomains\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "String", ...
Create a custom domain for your fax services REST: POST /me/fax/customDomains @param domain [required] The custom domain of your fax services
[ "Create", "a", "custom", "domain", "for", "your", "fax", "services" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1651-L1658
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.telephony_defaultIpRestriction_POST
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); }
java
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); }
[ "public", "OvhDefaultIpRestriction", "telephony_defaultIpRestriction_POST", "(", "String", "subnet", ",", "OvhProtocolEnum", "type", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/telephony/defaultIpRestriction\"", ";", "StringBuilder", "sb", "=", "path",...
Create a default IP restriction for your future VoIP lines REST: POST /me/telephony/defaultIpRestriction @param subnet [required] The IPv4 subnet you want to allow @param type [required] The protocol you want to restrict (sip/mgcp)
[ "Create", "a", "default", "IP", "restriction", "for", "your", "future", "VoIP", "lines" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1761-L1769
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.telephony_settings_GET
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); }
java
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); }
[ "public", "OvhSettings", "telephony_settings_GET", "(", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/telephony/settings\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "String", "resp", "=", "exec", "(", "qPath", ",", ...
Get the telephony settings linked to the customer account REST: GET /me/telephony/settings
[ "Get", "the", "telephony", "settings", "linked", "to", "the", "customer", "account" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1801-L1806
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.telephony_settings_POST
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); }
java
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); }
[ "public", "void", "telephony_settings_POST", "(", "OvhSettings", "settings", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/telephony/settings\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "HashMap", "<", "String", ",", ...
Change the telephony settings linked to the customer account REST: POST /me/telephony/settings @param settings [required] Settings to be changed
[ "Change", "the", "telephony", "settings", "linked", "to", "the", "customer", "account" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1814-L1820
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.order_orderId_pay_POST
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); }
java
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); }
[ "public", "void", "order_orderId_pay_POST", "(", "Long", "orderId", ",", "OvhPayWithPaymentMethod", "paymentMethod", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/order/{orderId}/pay\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", ...
Pay with a payment method reference REST: POST /me/order/{orderId}/pay @param paymentMethod [required] Payment method informations for pay @param orderId [required] API beta
[ "Pay", "with", "a", "payment", "method", "reference" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1844-L1850
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.order_orderId_status_GET
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); }
java
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); }
[ "public", "OvhOrderStatusEnum", "order_orderId_status_GET", "(", "Long", "orderId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/order/{orderId}/status\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "orderId", ")", ";", "String"...
Return status of order REST: GET /me/order/{orderId}/status @param orderId [required]
[ "Return", "status", "of", "order" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1884-L1889
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.order_orderId_payWithRegisteredPaymentMean_POST
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); }
java
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); }
[ "public", "void", "order_orderId_payWithRegisteredPaymentMean_POST", "(", "Long", "orderId", ",", "OvhReusablePaymentMeanEnum", "paymentMean", ",", "Long", "paymentMeanId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/order/{orderId}/payWithRegisteredPaymen...
Pay with an already registered payment mean REST: POST /me/order/{orderId}/payWithRegisteredPaymentMean @param paymentMean [required] The registered payment mean you want to use @param paymentMeanId [required] Id of registered payment mean, mandatory for bankAccount, creditCard and paypal @param orderId [required]
[ "Pay", "with", "an", "already", "registered", "payment", "mean" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1912-L1919
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.order_orderId_paymentMethods_GET
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); }
java
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); }
[ "public", "OvhPaymentMethods", "order_orderId_paymentMethods_GET", "(", "Long", "orderId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/order/{orderId}/paymentMethods\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ",", "orderId", ")", ...
List of registered payment method you can use to pay this order REST: GET /me/order/{orderId}/paymentMethods @param orderId [required] API beta
[ "List", "of", "registered", "payment", "method", "you", "can", "use", "to", "pay", "this", "order" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L1972-L1977
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.order_orderId_availableRegisteredPaymentMean_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "OvhRegisteredPaymentMean", ">", "order_orderId_availableRegisteredPaymentMean_GET", "(", "Long", "orderId", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/order/{orderId}/availableRegisteredPaymentMean\"", ";", "StringBuilder", "s...
List of registered payment mean you can use to pay this order REST: GET /me/order/{orderId}/availableRegisteredPaymentMean @param orderId [required]
[ "List", "of", "registered", "payment", "mean", "you", "can", "use", "to", "pay", "this", "order" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L2054-L2059
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.order_orderId_retraction_POST
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); }
java
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); }
[ "public", "void", "order_orderId_retraction_POST", "(", "Long", "orderId", ",", "String", "comment", ",", "OvhRetractionReasonEnum", "reason", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/order/{orderId}/retraction\"", ";", "StringBuilder", "sb", "=...
Request retraction of order REST: POST /me/order/{orderId}/retraction @param reason [required] The reason why you want to retract @param comment [required] An optional comment of why you want to retract @param orderId [required]
[ "Request", "retraction", "of", "order" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L2096-L2103
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.order_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "Long", ">", "order_GET", "(", "Date", "date_from", ",", "Date", "date_to", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/order\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "query", "(...
List of all the orders the logged account has REST: GET /me/order @param date_to [required] Filter the value of date property (<=) @param date_from [required] Filter the value of date property (>=)
[ "List", "of", "all", "the", "orders", "the", "logged", "account", "has" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L2112-L2119
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.consumption_usage_history_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "me", ".", "consumption", ".", "OvhTransaction", ">", "consumption_usage_history_GET", "(", "Date", "beginDate", ",", "Date", "endDate", ")", "throws", "IOException", "{", "String"...
Get list of transactions between two dates REST: GET /me/consumption/usage/history @param beginDate [required] Begin date @param endDate [required] End date
[ "Get", "list", "of", "transactions", "between", "two", "dates" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L2128-L2135
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.consumption_usage_forecast_GET
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); }
java
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); }
[ "public", "ArrayList", "<", "net", ".", "minidev", ".", "ovh", ".", "api", ".", "me", ".", "consumption", ".", "OvhTransaction", ">", "consumption_usage_forecast_GET", "(", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/consumption/usage/forecas...
Get forecasted consumptions for all services REST: GET /me/consumption/usage/forecast
[ "Get", "forecasted", "consumptions", "for", "all", "services" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L2143-L2148
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.xdsl_setting_GET
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); }
java
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); }
[ "public", "OvhSetting", "xdsl_setting_GET", "(", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/xdsl/setting\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")", ";", "String", "resp", "=", "exec", "(", "qPath", ",", "\"GET\"", ...
Get xdsl settings linked to the nichandle REST: GET /me/xdsl/setting
[ "Get", "xdsl", "settings", "linked", "to", "the", "nichandle" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L2167-L2172
train
UrielCh/ovh-java-sdk
ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java
ApiOvhMe.xdsl_setting_POST
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); }
java
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); }
[ "public", "void", "xdsl_setting_POST", "(", "Boolean", "resellerFastModemShipping", ",", "Boolean", "resellerModemBasicConfig", ")", "throws", "IOException", "{", "String", "qPath", "=", "\"/me/xdsl/setting\"", ";", "StringBuilder", "sb", "=", "path", "(", "qPath", ")...
Change xdsl settings linked to the nichandle REST: POST /me/xdsl/setting @param resellerModemBasicConfig [required] Let the modem with vendor configuration. It prevent to apply the config managed by ovh manager @param resellerFastModemShipping [required] Send the modem as soon as possible, do not wait the xdsl line to be active
[ "Change", "xdsl", "settings", "linked", "to", "the", "nichandle" ]
6d531a40e56e09701943e334c25f90f640c55701
https://github.com/UrielCh/ovh-java-sdk/blob/6d531a40e56e09701943e334c25f90f640c55701/ovh-java-sdk-me/src/main/java/net/minidev/ovh/api/ApiOvhMe.java#L2181-L2188
train