You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**name** | **str** | The name of the connection check job. | [optional]
8
-
**mode** | **object** | This value will always be `check`. | [optional]
8
+
**mode** | **str** | This value will always be `check`. | [optional]
9
+
**status** | **str** | The status of the connection check job. Possible values are: - running - succeeded - failed | [optional]
10
+
**start_time** | **str** | The date and time the connection check job started. | [optional]
11
+
**completion_time** | **str** | The date and time the connection check job was completed. | [optional]
12
+
**error** | **bool** | Indicates if the connection check job resulted in an error. This will be true if any of the exit_status properties are non-zero. | [optional]
13
+
**check_exit_status** | **int** | The exit status of the connection check job. Possible values are: null - The connection check job is still running 0 - The connection check job was successful 1 - The connection check job was unsuccessful | [optional]
14
+
**discovery_exit_status** | **int** | The exit status of the discovery portion of the connection check job. Possible values are: null - Job is still running 0 - Job was successful Any non-zero value - Discovery failed | [optional]
15
+
**discovery_error_message** | **str** | Exception message raised when discovery failed during the connection check job. If successful, this will be null. | [optional]
16
+
**tap_exit_status** | **int** | The exit status of the tap. Possible values are: null - Tap is still running 0 - Tap was successful Any non-zero value - Tap failed | [optional]
17
+
**tap_error_message** | **str** | Exception message raised when extraction failed during the job. If successful, this will be null. | [optional]
18
+
**target_exit_status** | **int** | The exit status of the target portion of the connection check job. Possible values are: null - Target is still running 0 - Target was successful Any non-zero value - Target failed | [optional]
19
+
**target_error_message** | **str** | This value will always be null. | [optional]
9
20
10
21
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/MetadataObject.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
**replication_key** | **str** | Indicates the field being used as the stream’s Replication Key. | [optional]
11
11
**replication_method** | **str** | The Replication Method the stream uses to replicate data. Accepted values are: FULL_TABLE - The stream is using Full Table Replication INCREMENTAL - The stream is using Key-based Incremental Replication LOG_BASED - The stream is using Log-based Incremental Replication. Note: This method is only available for certain database sources, and requires additional setup to use. | [optional]
12
12
**row_count** | **int** | For database sources only. The number of rows (records) in the stream. | [optional]
13
-
**schema_name** | **str** | For database sources only. The name of the schema containing the stream. | [optional]
13
+
**schema_name** | **int** | For database sources only. The name of the schema containing the stream. | [optional]
14
14
**selected** | **bool** | Indicates whether a field should be included in a stream’s field selection list. This value will be present only if the stream containing the field is selected (selected: true). null - The value has not been set true - The field is selected false - The field is not selected | [optional]
15
15
**table_key_properties** | **list[str]** | An array of strings listing the fields that make up the key properties of the table. These are the table’s defined Primary Keys. | [optional]
16
16
**valid_replication_keys** | **list[str]** | An array of strings indicating the fields valid for use as Replication Keys in Key-based Incremental Replication (replication-method: INCREMENTAL). Note: For SaaS sources, the fields listed in this array are pre-defined by Stitch and will be used as the Replication Keys for the stream. They cannot be modified. | [optional]
Copy file name to clipboardExpand all lines: docs/StreamLevelMetadata.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
**replication_key** | **str** | Indicates the field being used as the stream’s Replication Key. | [optional]
11
11
**replication_method** | **str** | The Replication Method the stream uses to replicate data. Accepted values are: FULL_TABLE - The stream is using Full Table Replication INCREMENTAL - The stream is using Key-based Incremental Replication LOG_BASED - The stream is using Log-based Incremental Replication. Note: This method is only available for certain database sources, and requires additional setup to use. | [optional]
12
12
**row_count** | **int** | For database sources only. The number of rows (records) in the stream. | [optional]
13
-
**schema_name** | **str** | For database sources only. The name of the schema containing the stream. | [optional]
13
+
**schema_name** | **int** | For database sources only. The name of the schema containing the stream. | [optional]
14
14
**selected** | **bool** | Indicates whether a stream should be set to replicate. Accepted values are: true - The stream is selected and data for selected fields will be replicated false - The stream is not selected and no data will be replicated | [optional]
15
15
**table_key_properties** | **list[str]** | An array of strings listing the fields that make up the key properties of the table. These are the table’s defined Primary Keys. | [optional]
16
16
**valid_replication_keys** | **list[str]** | An array of strings indicating the fields valid for use as Replication Keys in Key-based Incremental Replication (replication-method: INCREMENTAL). Note: For SaaS sources, the fields listed in this array are pre-defined by Stitch and will be used as the Replication Keys for the stream. They cannot be modified. | [optional]
0 commit comments