SMO_INTEGRATIONS_B
This table stores the configuration details of integration with an external system. Integration with an external system allows to receive events and send commands.
Details
-
Schema: FUSION
-
Object owner: SMO
-
Object type: TABLE
-
Tablespace: Default
Primary Key
Name | Columns |
---|---|
SMO_INTEGRATIONS_B_PK |
INTEGRATION_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
INTEGRATION_ID | NUMBER | 18 | Yes | The unique identifier of the integration. Its value is an application-generated unique ID. | |
OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
INTEGRATION_CODE | VARCHAR2 | 30 | Yes | A code that represents the alternate key to the integration. | |
INTEGRATION_TYPE | VARCHAR2 | 30 | Yes | Identifier of the type of integration. Valid types include MQTT. | |
HOST | VARCHAR2 | 2048 | Indicates the host url of the integration. | ||
PORT | NUMBER | 6 | Indicates the port of the integration. | ||
AUTHENTICATION_TYPE | VARCHAR2 | 30 | Identifier of the authentication type of the integration. Valid types include BASIC. | ||
AUTH_REFERENCE_KEY | VARCHAR2 | 60 | The key used for storage and retrieval of the authentication information for the integration. | ||
CONTEXT_PATH | VARCHAR2 | 4000 | Indicates the context path of the integration based on the integration type. In case of integration type MQTT, this identifies the topic. | ||
ENABLED_FLAG | VARCHAR2 | 1 | Yes | Indicates if the integration is enabled or not. | |
DEFAULT_FLAG | VARCHAR2 | 1 | Yes | Indicates if the integration is set as default integration. | |
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
SMO_INTEGRATIONS_B_U01 | Unique | Default | INTEGRATION_ID |
SMO_INTEGRATIONS_B_U02 | Unique | Default | INTEGRATION_CODE |