public class ConfigsApi
extends java.lang.Object
| Constructor and Description | 
|---|
ConfigsApi(ConfigsService configsService)
Constructs Configs API endpoint initialized with corresponding service class. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
CreateConfigRequestExecutor | 
create(Config config)
Provides executor that can be used to create new config. 
 | 
DeletePendingConfigsRequestExecutor | 
delete(java.util.List<java.lang.String> uniqueIds)
Provides executor that can be used to delete pending configs. 
 | 
DeletePendingConfigsRequestExecutor | 
delete(java.lang.String... uniqueIds)
Provides executor that can be used to delete pending configs. 
 | 
ConfigsRequestExecutor | 
fetch()
Provides executor that can be used to obtain configs. 
 | 
ReadAllRequestExecutor | 
readAll()
Provides executor that can be used to obtain READ_ALL secure command. 
 | 
SecureConfigsRequestExecutor | 
secure()
Provides executor that can be used to obtain secure configs. 
 | 
public ConfigsApi(ConfigsService configsService)
configsService - the configs API service.public ConfigsRequestExecutor fetch()
public SecureConfigsRequestExecutor secure()
public ReadAllRequestExecutor readAll()
public CreateConfigRequestExecutor create(Config config)
config - the new config.public DeletePendingConfigsRequestExecutor delete(java.lang.String... uniqueIds)
uniqueIds - config unique identifiers.public DeletePendingConfigsRequestExecutor delete(java.util.List<java.lang.String> uniqueIds)
uniqueIds - config unique identifiers.