All URIs are relative to https://localhost/api/v48
Method | HTTP request | Description |
---|---|---|
abortCommand | POST /commands/{commandId}/abort | Abort a running command. |
getCommandResultData | GET /commands/{commandId}/download | Download a zip-compressed archive of diagnostic bundle. |
getCommandWithSteps | GET /commands/{commandId}/steps | Retrieve detailed information of an asynchronous command including the command steps. |
getStandardError | GET /commands/{commandId}/logs/stderr | Download a zip-compressed archive of standard error outputs for the command's one-off processes. |
getStandardOutput | GET /commands/{commandId}/logs/stdout | Download a zip-compressed archive of standard outputs for the command's one-off processes. |
readCommand | GET /commands/{commandId} | Retrieve detailed information on an asynchronous command. |
readCommands | GET /commands/commands | Retrieve detailed information on all recent commands. |
retry | POST /commands/{commandId}/retry | Try to rerun a command. |
ApiCommand abortCommand(commandId)
Abort a running command.
Abort a running command.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal commandId = new java.math.BigDecimal(); // java.math.BigDecimal | The command id.
try {
ApiCommand result = apiInstance.abortCommand(commandId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#abortCommand");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
commandId | java.math.BigDecimal | The command id. |
File getCommandResultData(commandId)
Download a zip-compressed archive of diagnostic bundle.
Download a zip-compressed archive of diagnostic bundle. Log files are returned zipped together.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal commandId = new java.math.BigDecimal(); // java.math.BigDecimal | The command id.
try {
File result = apiInstance.getCommandResultData(commandId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#getCommandResultData");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
commandId | java.math.BigDecimal | The command id. |
ApiCommandWithSteps getCommandWithSteps(commandId)
Retrieve detailed information of an asynchronous command including the command steps.
Retrieve detailed information of an asynchronous command including the command steps.
Cloudera Manager keeps the results and statuses of asynchronous commands, which have non-negative command IDs. On the other hand, synchronous commands complete immediately, and their results are passed back in the return object of the command execution API call. Outside of that return object, there is no way to check the result of a synchronous command.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal commandId = new java.math.BigDecimal(); // java.math.BigDecimal | The command id.
try {
ApiCommandWithSteps result = apiInstance.getCommandWithSteps(commandId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#getCommandWithSteps");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
commandId | java.math.BigDecimal | The command id. |
File getStandardError(commandId)
Download a zip-compressed archive of standard error outputs for the command's one-off processes.
Download a zip-compressed archive of standard error outputs for the command's one-off processes. Log files are returned zipped together.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal commandId = new java.math.BigDecimal(); // java.math.BigDecimal | The command id.
try {
File result = apiInstance.getStandardError(commandId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#getStandardError");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
commandId | java.math.BigDecimal | The command id. |
File getStandardOutput(commandId)
Download a zip-compressed archive of standard outputs for the command's one-off processes.
Download a zip-compressed archive of standard outputs for the command's one-off processes. Log files are returned zipped together.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal commandId = new java.math.BigDecimal(); // java.math.BigDecimal | The command id.
try {
File result = apiInstance.getStandardOutput(commandId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#getStandardOutput");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
commandId | java.math.BigDecimal | The command id. |
ApiCommand readCommand(commandId)
Retrieve detailed information on an asynchronous command.
Retrieve detailed information on an asynchronous command.
Cloudera Manager keeps the results and statuses of asynchronous commands, which have non-negative command IDs. On the other hand, synchronous commands complete immediately, and their results are passed back in the return object of the command execution API call. Outside of that return object, there is no way to check the result of a synchronous command.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal commandId = new java.math.BigDecimal(); // java.math.BigDecimal | The command id.
try {
ApiCommand result = apiInstance.readCommand(commandId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#readCommand");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
commandId | java.math.BigDecimal | The command id. |
ApiCommandList readCommands(endTime, limit, name, offset, startTime, success)
Retrieve detailed information on all recent commands.
Retrieve detailed information on all recent commands.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal endTime = new java.math.BigDecimal(); // java.math.BigDecimal | timestamp of the command end time
java.math.BigDecimal limit = new java.math.BigDecimal(); // java.math.BigDecimal | command count to return (from offset)
String name = "name_example"; // String | the command name, unique for the command class HdfsCreateSnapshotCommand#COMMAND_NAME
java.math.BigDecimal offset = new java.math.BigDecimal(); // java.math.BigDecimal | command position to start
java.math.BigDecimal startTime = new java.math.BigDecimal(); // java.math.BigDecimal | timestamp of the command start time
Boolean success = true; // Boolean | whether the command was successful, if already finished
try {
ApiCommandList result = apiInstance.readCommands(endTime, limit, name, offset, startTime, success);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#readCommands");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
endTime | java.math.BigDecimal | timestamp of the command end time | [optional] [default to -1] |
limit | java.math.BigDecimal | command count to return (from offset) | [optional] [default to 50] |
name | String | the command name, unique for the command class HdfsCreateSnapshotCommand#COMMAND_NAME | [optional] |
offset | java.math.BigDecimal | command position to start | [optional] [default to 0] |
startTime | java.math.BigDecimal | timestamp of the command start time | [optional] [default to -1] |
success | Boolean | whether the command was successful, if already finished | [optional] |
ApiCommand retry(commandId)
Try to rerun a command.
Try to rerun a command.
// Import classes:
//import com.cloudera.api.swagger.client.ApiClient;
//import com.cloudera.api.swagger.client.ApiException;
//import com.cloudera.api.swagger.client.Configuration;
//import com.cloudera.api.swagger.client.auth.*;
//import com.cloudera.api.swagger.CommandsResourceApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basic
HttpBasicAuth basic = (HttpBasicAuth) defaultClient.getAuthentication("basic");
basic.setUsername("YOUR USERNAME");
basic.setPassword("YOUR PASSWORD");
CommandsResourceApi apiInstance = new CommandsResourceApi();
java.math.BigDecimal commandId = new java.math.BigDecimal(); // java.math.BigDecimal | ID of the command that needs to be run.
try {
ApiCommand result = apiInstance.retry(commandId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommandsResourceApi#retry");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
commandId | java.math.BigDecimal | ID of the command that needs to be run. |