All URIs are relative to https://api.korewireless.com
Method | HTTP request | Description |
---|---|---|
createVaultConfiguration | POST /vault/subscriptions/{subscriptionid}/configurations | |
createVaultKey | POST /vault/subscriptions/{subscriptionid}/encryptionkeys | |
deleteConfiguration | DELETE /vault/subscriptions/{subscriptionid}/configurations/{configid} | |
deleteVaultKey | DELETE /vault/subscriptions/{subscriptionid}/encryptionkeys/{keyid} | |
enableEncryption | POST /vault/subscriptions/{subscriptionid}/encryption | |
getExports | GET /vault/subscriptions/{subscriptionid}/exports | |
getRegistryData | GET /vault/subscriptions/{subscriptionid}/folders | |
getReplays | GET /vault/subscriptions/{subscriptionid}/replays | |
getVaultAudit | GET /vault/subscriptions/{subscriptionid}/audit | |
getVaultConfigurations | GET /vault/subscriptions/{subscriptionid}/configurations | |
getVaultFiles | GET /vault/subscriptions/{subscriptionid}/registry/{registryid}/files | |
getVaultKeys | GET /vault/subscriptions/{subscriptionid}/encryptionkeys | |
getVaultMetrics | GET /vault/subscriptions/{subscriptionid}/metrics | |
getVaultStatus | GET /vault/subscriptions/{subscriptionid}/status | |
setRetention | POST /vault/subscriptions/{subscriptionid}/retention | |
startExport | POST /vault/subscriptions/{subscriptionid}/exports | |
startReplay | POST /vault/subscriptions/{subscriptionid}/replays |
Frame createVaultConfiguration(subscriptionid, opts)
create vault configuration
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'createConfiguration': new OmniCoreModelAndStateManagementApi.CreateConfiguration() // CreateConfiguration | application/json
};
apiInstance.createVaultConfiguration(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
createConfiguration | CreateConfiguration | application/json | [optional] |
- Content-Type: application/json
- Accept: application/json
Frame createVaultKey(subscriptionid, opts)
Create Vault Key
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'createVaultKeyBody': new OmniCoreModelAndStateManagementApi.CreateVaultKeyBody() // CreateVaultKeyBody | application/json
};
apiInstance.createVaultKey(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
createVaultKeyBody | CreateVaultKeyBody | application/json | [optional] |
- Content-Type: application/json
- Accept: application/json
Frame deleteConfiguration(subscriptionid, configid)
Delete Configuration
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let configid = "configid_example"; // String | config id
apiInstance.deleteConfiguration(subscriptionid, configid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
configid | String | config id |
- Content-Type: Not defined
- Accept: application/json
Frame deleteVaultKey(subscriptionid, keyid)
Delete Vault Key
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let keyid = "keyid_example"; // String | key id
apiInstance.deleteVaultKey(subscriptionid, keyid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
keyid | String | key id |
- Content-Type: Not defined
- Accept: application/json
Frame enableEncryption(subscriptionid, opts)
Enable Encryption
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'enableEncryptionBody': new OmniCoreModelAndStateManagementApi.EnableEncryptionBody() // EnableEncryptionBody | application/json
};
apiInstance.enableEncryption(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
enableEncryptionBody | EnableEncryptionBody | application/json | [optional] |
- Content-Type: application/json
- Accept: application/json
GetExportsResponse getExports(subscriptionid)
Get Exports
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
apiInstance.getExports(subscriptionid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID |
- Content-Type: Not defined
- Accept: application/json
FolderData getRegistryData(subscriptionid)
Get vault folder data
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
apiInstance.getRegistryData(subscriptionid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID |
- Content-Type: Not defined
- Accept: application/json
GetReplaysResponse getReplays(subscriptionid)
Get Replays
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
apiInstance.getReplays(subscriptionid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID |
- Content-Type: Not defined
- Accept: application/json
AuditResult getVaultAudit(subscriptionid, opts)
Get vault Audit
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'pageNumber': 56, // Number | Page Number
'pageSize': 56 // Number | Page Size
};
apiInstance.getVaultAudit(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
pageNumber | Number | Page Number | [optional] |
pageSize | Number | Page Size | [optional] |
- Content-Type: Not defined
- Accept: application/json
Configurations getVaultConfigurations(subscriptionid)
Get vault configurations
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
apiInstance.getVaultConfigurations(subscriptionid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID |
- Content-Type: Not defined
- Accept: application/json
FileDetails getVaultFiles(subscriptionid, registryid, opts)
Get vault files
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let registryid = "registryid_example"; // String | registry ID
let opts = {
'fileType': "fileType_example" // String | file type
};
apiInstance.getVaultFiles(subscriptionid, registryid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
registryid | String | registry ID | |
fileType | String | file type | [optional] |
- Content-Type: Not defined
- Accept: application/json
GetKeysResponse getVaultKeys(subscriptionid)
Get Vault Keys
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
apiInstance.getVaultKeys(subscriptionid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID |
- Content-Type: Not defined
- Accept: application/json
MetricsResponse getVaultMetrics(subscriptionid, opts)
Get vault metrics
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'startTime': "startTime_example", // String | start time
'endTime': "endTime_example" // String | end time
};
apiInstance.getVaultMetrics(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
startTime | String | start time | [optional] |
endTime | String | end time | [optional] |
- Content-Type: Not defined
- Accept: application/json
VaultStatus getVaultStatus(subscriptionid)
Get vault status
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
apiInstance.getVaultStatus(subscriptionid, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID |
- Content-Type: Not defined
- Accept: application/json
Frame setRetention(subscriptionid, opts)
Set Retention Period
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'setRetentionBody': new OmniCoreModelAndStateManagementApi.SetRetentionBody() // SetRetentionBody | application/json
};
apiInstance.setRetention(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
setRetentionBody | SetRetentionBody | application/json | [optional] |
- Content-Type: application/json
- Accept: application/json
Frame startExport(subscriptionid, opts)
Start Export
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'startExportBody': new OmniCoreModelAndStateManagementApi.StartExportBody() // StartExportBody | application/json
};
apiInstance.startExport(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
startExportBody | StartExportBody | application/json | [optional] |
- Content-Type: application/json
- Accept: application/json
String startReplay(subscriptionid, opts)
Start Replay
import OmniCoreModelAndStateManagementApi from 'omni_core_model_and_state_management_api';
let defaultClient = OmniCoreModelAndStateManagementApi.ApiClient.instance;
// Configure API key authorization: apiKey
let apiKey = defaultClient.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apiKey.apiKeyPrefix = 'Token';
// Configure Bearer (JWT) access token for authorization: bearerAuth
let bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
let apiInstance = new OmniCoreModelAndStateManagementApi.VaultApi();
let subscriptionid = "subscriptionid_example"; // String | Subscription ID
let opts = {
'replayBody': new OmniCoreModelAndStateManagementApi.ReplayBody() // ReplayBody | application/json
};
apiInstance.startReplay(subscriptionid, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
subscriptionid | String | Subscription ID | |
replayBody | ReplayBody | application/json | [optional] |
String
- Content-Type: application/json
- Accept: application/json