All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| connectionsServiceCreateConnectionsAccounts | POST /api/v3/connections/accounts | Summary: Create Connections accounts Description: Create Connections acccounts. |
| connectionsServiceCreateConnectionsConfigs | POST /api/v3/connections/configs | Summary: Create connections configs Description: Create Connection config by connection type. |
| connectionsServiceCreatePlugin | POST /api/v3/connections/plugins | Summary: Create plugin Description: Create UC generic plugin |
| connectionsServiceCreateSettings | POST /api/v3/connections/settings | Summary: Create settings Description: Create Settings. |
| connectionsServiceDeleteConnectionsAccounts | DELETE /api/v3/connections/accounts/{account_id} | Summary: Delete Connections accounts Description: Delete Connections acccounts. |
| connectionsServiceDeleteConnectionsConfigs | DELETE /api/v3/connections/configs/{connection_id} | Summary: Delete connections configs Description: Delete Connection config by connection id. |
| connectionsServiceDeleteConnector | DELETE /api/v3/connections/{connection_id} | Summary: Delete connector Description: Delete a Connection. |
| connectionsServiceDeletePlugin | DELETE /api/v3/connections/plugins/{id} | Summary: Delete plugin. Description: Delete plugin. |
| connectionsServiceGeneratePackage | PUT /api/v3/connections/plugins/{id}/package | Summary: Generate package. Description: Generate package. |
| connectionsServiceGetBannerState | GET /api/v3/connections/banner | Summary: Get banner state for object verb page. Description: Get banner state for object verb page. |
| connectionsServiceGetConnectionsAccounts | GET /api/v3/connections/accounts | Summary: Get Connections accounts Description: Get Connections acccounts. |
| connectionsServiceGetConnectionsConfigs | GET /api/v3/connections/configs | Summary: Get connections configs Description: Get Connection config by connection type. |
| connectionsServiceGetConnectionsWithFilters | POST /api/v3/connections | Summary: Get connections with filters Description: Get connections with filters. |
| connectionsServiceGetConnectorsSummary | GET /api/v3/connections/summary | Summary: Get connectors summary Description: Get a summary of Connectors. |
| connectionsServiceGetDataSources | GET /api/v3/connections/datasources | Summary: Get data sources Description: Get a list of data sources. |
| connectionsServiceGetGuardRecordFields | GET /api/v3/connections/fields | Summary: Get list of guard record fields. Description: Get list of guard record fields. |
| connectionsServiceGetHeaders | GET /api/v3/connections/headers | Summary: Get headers Description: Get a list of Headers. |
| connectionsServiceGetPlugins | GET /api/v3/connections/plugins | Summary: Get plugins Description: Get custom universal connector plugins |
| connectionsServiceGetSettings | GET /api/v3/connections/settings | Summary: Get settings Description: Get a list of Settings. |
| connectionsServicePartialUpdateConnectors | PATCH /api/v3/connections | Summary: Partial update connectors Description: Partial update of Connectors. |
| connectionsServicePostStapCommand | POST /api/v3/stap/commands | Summary: Post stap command Description: Send a STAP command down to kafka for snif-assist. |
| connectionsServiceUpdateBannerState | PUT /api/v3/connections/banner | Summary: Update banner state for object verb page. Description: Update banner state for object verb page. |
| connectionsServiceUpdateConnectionsAccounts | PUT /api/v3/connections/accounts | Summary: Update Connections accounts Description: Update Connections acccounts. |
| connectionsServiceUpdateConnectionsConfigs | PATCH /api/v3/connections/configs | Summary: Update connections configs Description: Update Connection config by connection id. |
| connectionsServiceUpdateConnectors | PUT /api/v3/connections | Summary: Update connectors Description: Update a list of Connectors. |
| connectionsServiceUpdatePlugin | PUT /api/v3/connections/plugins/{id} | Summary: Update plugin. Description: Update plugin. |
| connectionsServiceUpdateSettings | PUT /api/v3/connections/settings | Summary: Update settings Description: Update Settings. |
| connectionsServiceValidateAwsConnection | POST /api/v3/connections/validate/aws | Summary: Validate an AWS connection. Description: Validate an AWS connection. |
| connectionsServiceValidateAzureConnection | POST /api/v3/connections/validate/azure | Summary: Validate an Azure connection. Description: Validate an Azure connection. |
| connectionsServiceValidateGcpConnection | POST /api/v3/connections/validate/gcp | Summary: Validate a GCP connection. Description: Validate a GCP connection. |
Connectionsv3CreateConnectionsAccountsResponse connectionsServiceCreateConnectionsAccounts(connectionsv3CreateConnectionsAccountsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceCreateConnectionsAccountsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceCreateConnectionsAccountsRequest = {
connectionsv3CreateConnectionsAccountsRequest: {
account: {
accessKey: "accessKey_example",
authenticationType: "authenticationType_example",
connectionType: "connectionType_example",
name: "name_example",
roleArn: "roleArn_example",
secretAccessKey: "secretAccessKey_example",
},
accountId: "accountId_example",
},
};
const data = await apiInstance.connectionsServiceCreateConnectionsAccounts(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3CreateConnectionsAccountsRequest | Connectionsv3CreateConnectionsAccountsRequest |
Connectionsv3CreateConnectionsAccountsResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3CreateConnectionsConfigsResponse connectionsServiceCreateConnectionsConfigs(connectionsv3CreateConnectionsConfigsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceCreateConnectionsConfigsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceCreateConnectionsConfigsRequest = {
connectionsv3CreateConnectionsConfigsRequest: {
connectionId: "connectionId_example",
streamConnection: {
accountId: "accountId_example",
accountName: "accountName_example",
clusterResourceId: "clusterResourceId_example",
consumerGroupName: "consumerGroupName_example",
dbDnsEndpoint: "dbDnsEndpoint_example",
dbName: "dbName_example",
dbType: "dbType_example",
name: "name_example",
namespace: "namespace_example",
password: "password_example",
port: "port_example",
provider: "provider_example",
region: "region_example",
startMonitor: "startMonitor_example",
status: "UNDEFINED_STATUS",
statusText: "statusText_example",
statusTimestamp: "statusTimestamp_example",
storageConnectionString: "storageConnectionString_example",
username: "username_example",
},
type: "UNDEFINED_TYPE",
ucConnection: {
alias: "alias_example",
configId: "configId_example",
datasourceType: "datasourceType_example",
edgeDeploymentServer: {
id: "id_example",
name: "name_example",
},
filterAlias: "filterAlias_example",
host: "host_example",
inputAlias: "inputAlias_example",
lastResponse: "lastResponse_example",
port: "port_example",
status: "UNDEFINED_STATUS",
statusText: "statusText_example",
ucConnectionId: "ucConnectionId_example",
},
},
};
const data = await apiInstance.connectionsServiceCreateConnectionsConfigs(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3CreateConnectionsConfigsRequest | Connectionsv3CreateConnectionsConfigsRequest |
Connectionsv3CreateConnectionsConfigsResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3CreatePluginResponse connectionsServiceCreatePlugin(connectionsv3CreatePluginRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceCreatePluginRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceCreatePluginRequest = {
connectionsv3CreatePluginRequest: {
datasourceType: "datasourceType_example",
developerName: "developerName_example",
documentLink: "documentLink_example",
logfile: "logfile_example",
name: "name_example",
readme: "readme_example",
records: [
{
guardRecordName: "guardRecordName_example",
value: "value_example",
},
],
supportedInputs: [
"supportedInputs_example",
],
version: "version_example",
versionTested: "versionTested_example",
},
};
const data = await apiInstance.connectionsServiceCreatePlugin(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3CreatePluginRequest | Connectionsv3CreatePluginRequest |
Connectionsv3CreatePluginResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
any connectionsServiceCreateSettings(connectionsv3CreateSettingsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceCreateSettingsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceCreateSettingsRequest = {
connectionsv3CreateSettingsRequest: {
settings: [
{
description: "description_example",
filters: [
{
id: "id_example",
values: [
"values_example",
],
},
],
headers: [
"headers_example",
],
id: "id_example",
name: "name_example",
order: "NONE",
sortedBy: "sortedBy_example",
},
],
},
};
const data = await apiInstance.connectionsServiceCreateSettings(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3CreateSettingsRequest | Connectionsv3CreateSettingsRequest |
any
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3DeleteConnectionsAccountsResponse connectionsServiceDeleteConnectionsAccounts()
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceDeleteConnectionsAccountsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceDeleteConnectionsAccountsRequest = {
// Account id.
accountId: "account_id_example",
};
const data = await apiInstance.connectionsServiceDeleteConnectionsAccounts(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | [string] | Account id. | defaults to undefined |
Connectionsv3DeleteConnectionsAccountsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3DeleteConnectionsConfigsResponse connectionsServiceDeleteConnectionsConfigs()
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceDeleteConnectionsConfigsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceDeleteConnectionsConfigsRequest = {
// Connection id.
connectionId: "connection_id_example",
};
const data = await apiInstance.connectionsServiceDeleteConnectionsConfigs(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionId | [string] | Connection id. | defaults to undefined |
Connectionsv3DeleteConnectionsConfigsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
any connectionsServiceDeleteConnector()
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceDeleteConnectorRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceDeleteConnectorRequest = {
// The connection id
connectionId: "connection_id_example",
};
const data = await apiInstance.connectionsServiceDeleteConnector(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionId | [string] | The connection id | defaults to undefined |
any
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3DeletePluginResponse connectionsServiceDeletePlugin()
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceDeletePluginRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceDeletePluginRequest = {
// plugin id
id: "id_example",
};
const data = await apiInstance.connectionsServiceDeletePlugin(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| id | [string] | plugin id | defaults to undefined |
Connectionsv3DeletePluginResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GeneratePackageResponse connectionsServiceGeneratePackage(connectionsv3GeneratePackageRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceGeneratePackageRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceGeneratePackageRequest = {
// id
id: "id_example",
connectionsv3GeneratePackageRequest: {
datasourceType: "datasourceType_example",
developerName: "developerName_example",
documentLink: "documentLink_example",
id: "id_example",
logfile: "logfile_example",
name: "name_example",
readme: "readme_example",
records: [
{
guardRecordName: "guardRecordName_example",
value: "value_example",
},
],
state: "state_example",
supportedInputs: [
"supportedInputs_example",
],
version: "version_example",
versionTested: "versionTested_example",
},
};
const data = await apiInstance.connectionsServiceGeneratePackage(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3GeneratePackageRequest | Connectionsv3GeneratePackageRequest | ||
| id | [string] | id | defaults to undefined |
Connectionsv3GeneratePackageResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetBannerStateResponse connectionsServiceGetBannerState()
import { createConfiguration, ConnectionsServiceApi } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request = {};
const data = await apiInstance.connectionsServiceGetBannerState(request);
console.log('API called successfully. Returned data:', data);This endpoint does not need any parameter.
Connectionsv3GetBannerStateResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetConnectionsAccountsResponse connectionsServiceGetConnectionsAccounts()
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceGetConnectionsAccountsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceGetConnectionsAccountsRequest = {
// Optional: account id. (optional)
accountId: "account_id_example",
// Optional: acccount access key. (optional)
accessKey: "access_key_example",
};
const data = await apiInstance.connectionsServiceGetConnectionsAccounts(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | [string] | Optional: account id. | (optional) defaults to undefined |
| accessKey | [string] | Optional: acccount access key. | (optional) defaults to undefined |
Connectionsv3GetConnectionsAccountsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetConnectionsConfigsResponse connectionsServiceGetConnectionsConfigs()
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceGetConnectionsConfigsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceGetConnectionsConfigsRequest = {
// The type of connector. (optional)
type: "UNDEFINED_TYPE",
// Optional: if connection id did not provide then return all connections. (optional)
connectionId: "connection_id_example",
};
const data = await apiInstance.connectionsServiceGetConnectionsConfigs(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| type | [**'UNDEFINED_TYPE' | 'AWS' | 'AZURE' |
| connectionId | [string] | Optional: if connection id did not provide then return all connections. | (optional) defaults to undefined |
Connectionsv3GetConnectionsConfigsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetConnectionsWithFiltersResponse connectionsServiceGetConnectionsWithFilters(connectionsv3GetConnectionsWithFiltersRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceGetConnectionsWithFiltersRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceGetConnectionsWithFiltersRequest = {
connectionsv3GetConnectionsWithFiltersRequest: {
calculateFacets: true,
calculatePresetStats: true,
calculateTotal: true,
fetchSize: 1,
filters: [
{
id: "id_example",
values: [
"values_example",
],
},
],
headers: [
"headers_example",
],
offset: 1,
order: "NONE",
search: "search_example",
sortBy: "sortBy_example",
},
};
const data = await apiInstance.connectionsServiceGetConnectionsWithFilters(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3GetConnectionsWithFiltersRequest | Connectionsv3GetConnectionsWithFiltersRequest |
Connectionsv3GetConnectionsWithFiltersResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetConnectorsSummaryResponse connectionsServiceGetConnectorsSummary()
import { createConfiguration, ConnectionsServiceApi } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request = {};
const data = await apiInstance.connectionsServiceGetConnectorsSummary(request);
console.log('API called successfully. Returned data:', data);This endpoint does not need any parameter.
Connectionsv3GetConnectorsSummaryResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetDataSourcesResponse connectionsServiceGetDataSources()
import { createConfiguration, ConnectionsServiceApi } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request = {};
const data = await apiInstance.connectionsServiceGetDataSources(request);
console.log('API called successfully. Returned data:', data);This endpoint does not need any parameter.
Connectionsv3GetDataSourcesResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetGuardRecordFieldsResponse connectionsServiceGetGuardRecordFields()
import { createConfiguration, ConnectionsServiceApi } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request = {};
const data = await apiInstance.connectionsServiceGetGuardRecordFields(request);
console.log('API called successfully. Returned data:', data);This endpoint does not need any parameter.
Connectionsv3GetGuardRecordFieldsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetHeadersResponse connectionsServiceGetHeaders()
import { createConfiguration, ConnectionsServiceApi } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request = {};
const data = await apiInstance.connectionsServiceGetHeaders(request);
console.log('API called successfully. Returned data:', data);This endpoint does not need any parameter.
Connectionsv3GetHeadersResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetPluginsResponse connectionsServiceGetPlugins()
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceGetPluginsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceGetPluginsRequest = {
// Optional: if no plug-in id is provided, returns list of all plug-ins. (optional)
id: "id_example",
};
const data = await apiInstance.connectionsServiceGetPlugins(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| id | [string] | Optional: if no plug-in id is provided, returns list of all plug-ins. | (optional) defaults to undefined |
Connectionsv3GetPluginsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3GetSettingsResponse connectionsServiceGetSettings()
import { createConfiguration, ConnectionsServiceApi } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request = {};
const data = await apiInstance.connectionsServiceGetSettings(request);
console.log('API called successfully. Returned data:', data);This endpoint does not need any parameter.
Connectionsv3GetSettingsResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3PartialUpdateConnectorsResponse connectionsServicePartialUpdateConnectors(connectionsv3PartialUpdateConnectorsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServicePartialUpdateConnectorsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServicePartialUpdateConnectorsRequest = {
connectionsv3PartialUpdateConnectorsRequest: {
connectors: [
{
columns: [
{
id: "id_example",
values: [
"values_example",
],
},
],
id: "id_example",
lastResponse: "lastResponse_example",
tags: [
"tags_example",
],
},
],
},
};
const data = await apiInstance.connectionsServicePartialUpdateConnectors(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3PartialUpdateConnectorsRequest | Connectionsv3PartialUpdateConnectorsRequest |
Connectionsv3PartialUpdateConnectorsResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3StatusResponseBase connectionsServicePostStapCommand(connectionsv3StapCommandRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServicePostStapCommandRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServicePostStapCommandRequest = {
connectionsv3StapCommandRequest: {
command: "command_example",
operation: "STAP_REINITIALIZE_BUFFER",
stapId: "stapId_example",
},
};
const data = await apiInstance.connectionsServicePostStapCommand(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3StapCommandRequest | Connectionsv3StapCommandRequest |
Connectionsv3StatusResponseBase
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3UpdateBannerStateResponse connectionsServiceUpdateBannerState(connectionsv3UpdateBannerStateRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceUpdateBannerStateRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceUpdateBannerStateRequest = {
connectionsv3UpdateBannerStateRequest: {
hideObjectVerbBanner: true,
},
};
const data = await apiInstance.connectionsServiceUpdateBannerState(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3UpdateBannerStateRequest | Connectionsv3UpdateBannerStateRequest |
Connectionsv3UpdateBannerStateResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3UpdateConnectionsAccountsResponse connectionsServiceUpdateConnectionsAccounts(connectionsv3UpdateConnectionsAccountsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceUpdateConnectionsAccountsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceUpdateConnectionsAccountsRequest = {
connectionsv3UpdateConnectionsAccountsRequest: {
account: {
accessKey: "accessKey_example",
authenticationType: "authenticationType_example",
connectionType: "connectionType_example",
name: "name_example",
roleArn: "roleArn_example",
secretAccessKey: "secretAccessKey_example",
},
accountId: "accountId_example",
},
};
const data = await apiInstance.connectionsServiceUpdateConnectionsAccounts(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3UpdateConnectionsAccountsRequest | Connectionsv3UpdateConnectionsAccountsRequest |
Connectionsv3UpdateConnectionsAccountsResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3UpdateConnectionsConfigsResponse connectionsServiceUpdateConnectionsConfigs(connectionsv3UpdateConnectionsConfigsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceUpdateConnectionsConfigsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceUpdateConnectionsConfigsRequest = {
connectionsv3UpdateConnectionsConfigsRequest: {
streamConnectionConfigs: [
{
connectionId: "connectionId_example",
streamConnection: {
accountId: "accountId_example",
accountName: "accountName_example",
clusterResourceId: "clusterResourceId_example",
consumerGroupName: "consumerGroupName_example",
dbDnsEndpoint: "dbDnsEndpoint_example",
dbName: "dbName_example",
dbType: "dbType_example",
name: "name_example",
namespace: "namespace_example",
password: "password_example",
port: "port_example",
provider: "provider_example",
region: "region_example",
startMonitor: "startMonitor_example",
status: "UNDEFINED_STATUS",
statusText: "statusText_example",
statusTimestamp: "statusTimestamp_example",
storageConnectionString: "storageConnectionString_example",
username: "username_example",
},
},
],
type: "UNDEFINED_TYPE",
ucConnectionConfigs: [
{
connectionId: "connectionId_example",
ucConnectionSummary: {
alias: "alias_example",
configId: "configId_example",
datasourceType: "datasourceType_example",
edgeDeploymentServer: {
id: "id_example",
name: "name_example",
},
filterAlias: "filterAlias_example",
host: "host_example",
inputAlias: "inputAlias_example",
lastResponse: "lastResponse_example",
port: "port_example",
status: "UNDEFINED_STATUS",
statusText: "statusText_example",
ucConnectionId: "ucConnectionId_example",
},
},
],
},
};
const data = await apiInstance.connectionsServiceUpdateConnectionsConfigs(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3UpdateConnectionsConfigsRequest | Connectionsv3UpdateConnectionsConfigsRequest |
Connectionsv3UpdateConnectionsConfigsResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
any connectionsServiceUpdateConnectors(connectionsv3UpdateConnectorsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceUpdateConnectorsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceUpdateConnectorsRequest = {
connectionsv3UpdateConnectorsRequest: {
connectors: [
{
columns: [
{
id: "id_example",
values: [
"values_example",
],
},
],
id: "id_example",
tags: [
"tags_example",
],
type: "UNDEFINED_TYPE",
},
],
},
};
const data = await apiInstance.connectionsServiceUpdateConnectors(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3UpdateConnectorsRequest | Connectionsv3UpdateConnectorsRequest |
any
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3UpdatePluginResponse connectionsServiceUpdatePlugin(connectionsv3UpdatePluginRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceUpdatePluginRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceUpdatePluginRequest = {
// id
id: "id_example",
connectionsv3UpdatePluginRequest: {
datasourceType: "datasourceType_example",
developerName: "developerName_example",
documentLink: "documentLink_example",
id: "id_example",
logfile: "logfile_example",
name: "name_example",
readme: "readme_example",
records: [
{
guardRecordName: "guardRecordName_example",
value: "value_example",
},
],
state: "state_example",
supportedInputs: [
"supportedInputs_example",
],
version: "version_example",
versionTested: "versionTested_example",
},
};
const data = await apiInstance.connectionsServiceUpdatePlugin(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3UpdatePluginRequest | Connectionsv3UpdatePluginRequest | ||
| id | [string] | id | defaults to undefined |
Connectionsv3UpdatePluginResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
any connectionsServiceUpdateSettings(connectionsv3UpdateSettingsRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceUpdateSettingsRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceUpdateSettingsRequest = {
connectionsv3UpdateSettingsRequest: {
settings: [
{
description: "description_example",
filters: [
{
id: "id_example",
values: [
"values_example",
],
},
],
headers: [
"headers_example",
],
id: "id_example",
name: "name_example",
order: "NONE",
sortedBy: "sortedBy_example",
},
],
},
};
const data = await apiInstance.connectionsServiceUpdateSettings(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3UpdateSettingsRequest | Connectionsv3UpdateSettingsRequest |
any
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3ValidateConnectionResponse connectionsServiceValidateAwsConnection(connectionsv3ValidateAwsConnectionRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceValidateAwsConnectionRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceValidateAwsConnectionRequest = {
connectionsv3ValidateAwsConnectionRequest: {
accessKey: "accessKey_example",
bucketName: "bucketName_example",
groupName: "groupName_example",
inputPluginType: "inputPluginType_example",
queueUrl: "queueUrl_example",
region: "region_example",
secretKey: "secretKey_example",
},
};
const data = await apiInstance.connectionsServiceValidateAwsConnection(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3ValidateAwsConnectionRequest | Connectionsv3ValidateAwsConnectionRequest |
Connectionsv3ValidateConnectionResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3ValidateConnectionResponse connectionsServiceValidateAzureConnection(connectionsv3ValidateAzureConnectionRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceValidateAzureConnectionRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceValidateAzureConnectionRequest = {
connectionsv3ValidateAzureConnectionRequest: {
eventHubName: "eventHubName_example",
storageConnectionString: "storageConnectionString_example",
},
};
const data = await apiInstance.connectionsServiceValidateAzureConnection(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3ValidateAzureConnectionRequest | Connectionsv3ValidateAzureConnectionRequest |
Connectionsv3ValidateConnectionResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Connectionsv3ValidateConnectionResponse connectionsServiceValidateGcpConnection(connectionsv3ValidateGcpConnectionRequest)
import { createConfiguration, ConnectionsServiceApi } from '';
import type { ConnectionsServiceApiConnectionsServiceValidateGcpConnectionRequest } from '';
const configuration = createConfiguration();
const apiInstance = new ConnectionsServiceApi(configuration);
const request: ConnectionsServiceApiConnectionsServiceValidateGcpConnectionRequest = {
connectionsv3ValidateGcpConnectionRequest: {
clientEmail: "clientEmail_example",
privateKey: "privateKey_example",
projectId: "projectId_example",
subscription: "subscription_example",
topic: "topic_example",
},
};
const data = await apiInstance.connectionsServiceValidateGcpConnection(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| connectionsv3ValidateGcpConnectionRequest | Connectionsv3ValidateGcpConnectionRequest |
Connectionsv3ValidateConnectionResponse
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]