All URIs are relative to https://api.eu-west-2.outscale.com/api/v1
CreateNicResponse createNic(createNicRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
CreateNicRequest createNicRequest = new CreateNicRequest(); // CreateNicRequest |
try {
CreateNicResponse result = apiInstance.createNic(createNicRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#createNic");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
CreateNicResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |
DeleteNicResponse deleteNic(deleteNicRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
DeleteNicRequest deleteNicRequest = new DeleteNicRequest(); // DeleteNicRequest |
try {
DeleteNicResponse result = apiInstance.deleteNic(deleteNicRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#deleteNic");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
DeleteNicResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |
LinkNicResponse linkNic(linkNicRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
LinkNicRequest linkNicRequest = new LinkNicRequest(); // LinkNicRequest |
try {
LinkNicResponse result = apiInstance.linkNic(linkNicRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#linkNic");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
LinkNicResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |
LinkPrivateIpsResponse linkPrivateIps(linkPrivateIpsRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
LinkPrivateIpsRequest linkPrivateIpsRequest = new LinkPrivateIpsRequest(); // LinkPrivateIpsRequest |
try {
LinkPrivateIpsResponse result = apiInstance.linkPrivateIps(linkPrivateIpsRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#linkPrivateIps");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
LinkPrivateIpsResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |
ReadNicsResponse readNics(readNicsRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
ReadNicsRequest readNicsRequest = new ReadNicsRequest(); // ReadNicsRequest |
try {
ReadNicsResponse result = apiInstance.readNics(readNicsRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#readNics");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
ReadNicsResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |
UnlinkNicResponse unlinkNic(unlinkNicRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
UnlinkNicRequest unlinkNicRequest = new UnlinkNicRequest(); // UnlinkNicRequest |
try {
UnlinkNicResponse result = apiInstance.unlinkNic(unlinkNicRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#unlinkNic");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
UnlinkNicResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |
UnlinkPrivateIpsResponse unlinkPrivateIps(unlinkPrivateIpsRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
UnlinkPrivateIpsRequest unlinkPrivateIpsRequest = new UnlinkPrivateIpsRequest(); // UnlinkPrivateIpsRequest |
try {
UnlinkPrivateIpsResponse result = apiInstance.unlinkPrivateIps(unlinkPrivateIpsRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#unlinkPrivateIps");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
UnlinkPrivateIpsResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |
UpdateNicResponse updateNic(updateNicRequest)
// Import classes:
import io.github.outscale.osc_sdk_java.client.ApiClient;
import io.github.outscale.osc_sdk_java.client.ApiException;
import io.github.outscale.osc_sdk_java.client.Configuration;
import io.github.outscale.osc_sdk_java.client.auth.*;
import io.github.outscale.osc_sdk_java.client.models.*;
import io.github.outscale.osc_sdk_java.client.api.NicApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.eu-west-2.outscale.com/api/v1");
// Configure AWS Signature V4 authorization
defaultClient.setAWS4Configuration("YOUR_ACCESS_KEY", "YOUR_SECRET_KEY", "REGION", "SERVICE")
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
NicApi apiInstance = new NicApi(defaultClient);
UpdateNicRequest updateNicRequest = new UpdateNicRequest(); // UpdateNicRequest |
try {
UpdateNicResponse result = apiInstance.updateNic(updateNicRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling NicApi#updateNic");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
UpdateNicResponse
ApiKeyAuth
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Status code |
Description |
Response headers |
200 |
The HTTP 200 response (OK). |
- |
400 |
The HTTP 400 response (Bad Request). |
- |
401 |
The HTTP 401 response (Unauthorized). |
- |
500 |
The HTTP 500 response (Internal Server Error). |
- |