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
This data source returns list of connector objects.
8
+
9
+
## Example Usage
10
+
11
+
```hcl
12
+
data "fivetran_connectors" "connector" {
13
+
id = "anonymous_mystery"
14
+
}
15
+
```
16
+
17
+
<!-- schema generated by tfplugindocs -->
18
+
## Schema
19
+
20
+
### Read-Only
21
+
22
+
-`connectors` (Block Set) (see [below for nested schema](#nestedblock--connectors))
23
+
-`id` (String) The ID of this resource.
24
+
25
+
<aid="nestedblock--connectors"></a>
26
+
### Nested Schema for `connectors`
27
+
28
+
Read-Only:
29
+
30
+
-`connected_by` (String) The unique identifier of the user who has created the connector in your account.
31
+
-`created_at` (String) The timestamp of the time the connector was created in your account.
32
+
-`daily_sync_time` (String) The optional parameter that defines the sync start time when the sync frequency is already set or being set by the current request to 1440. It can be specified in one hour increments starting from 00:00 to 23:00. If not specified, we will use [the baseline sync start time](https://fivetran.com/docs/getting-started/syncoverview#syncfrequencyandscheduling). This parameter has no effect on the [0 to 60 minutes offset](https://fivetran.com/docs/getting-started/syncoverview#syncstarttimesandoffsets) used to determine the actual sync start time.
33
+
-`data_delay_sensitivity` (String) The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL. CUSTOM is only available for customers using the Enterprise plan or above.
34
+
-`data_delay_threshold` (Number) Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when data_delay_sensitivity set to CUSTOM.
35
+
-`failed_at` (String) The timestamp of the time the connector sync failed last time.
36
+
-`group_id` (String) The unique identifier for the Group (Destination) within the Fivetran system.
37
+
-`hybrid_deployment_agent_id` (String) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
38
+
-`id` (String) The unique identifier for the connector within the Fivetran system.
39
+
-`local_processing_agent_id` (String) (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
40
+
-`name` (String) The name used both as the connector's name within the Fivetran system and as the source schema's name within your destination.
41
+
-`networking_method` (String) Possible values: Directly, SshTunnel, ProxyAgent.
42
+
-`pause_after_trial` (Boolean) Specifies whether the connector should be paused after the free trial period has ended.
43
+
-`paused` (Boolean) Specifies whether the connector is paused.
This data source returns list of destination objects.
8
+
9
+
## Example Usage
10
+
11
+
```hcl
12
+
data "fivetran_destinations" "dest" {
13
+
id = "anonymous_mystery"
14
+
}
15
+
```
16
+
17
+
<!-- schema generated by tfplugindocs -->
18
+
## Schema
19
+
20
+
### Read-Only
21
+
22
+
-`destinations` (Block Set) (see [below for nested schema](#nestedblock--destinations))
23
+
-`id` (String) The ID of this resource.
24
+
25
+
<aid="nestedblock--destinations"></a>
26
+
### Nested Schema for `destinations`
27
+
28
+
Read-Only:
29
+
30
+
-`daylight_saving_time_enabled` (Boolean) Shift my UTC offset with daylight savings time (US Only)
31
+
-`group_id` (String) The unique identifier for the Group within the Fivetran system.
32
+
-`hybrid_deployment_agent_id` (String) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
33
+
-`id` (String) The unique identifier for the destination within the Fivetran system.
34
+
-`local_processing_agent_id` (String) (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
35
+
-`networking_method` (String) Possible values: Directly, SshTunnel, ProxyAgent.
36
+
-`private_link_id` (String) The private link ID.
37
+
-`region` (String) Data processing location. This is where Fivetran will operate and run computation on data.
38
+
-`service` (String) The destination type id within the Fivetran system.
This data source returns list of logging service objects.
8
+
9
+
## Example Usage
10
+
11
+
```hcl
12
+
data "fivetran_external_logs" "extlog" {
13
+
id = "anonymous_mystery"
14
+
}
15
+
```
16
+
17
+
<!-- schema generated by tfplugindocs -->
18
+
## Schema
19
+
20
+
### Read-Only
21
+
22
+
-`id` (String) The ID of this resource.
23
+
-`logs` (Block Set) (see [below for nested schema](#nestedblock--logs))
24
+
25
+
<aid="nestedblock--logs"></a>
26
+
### Nested Schema for `logs`
27
+
28
+
Read-Only:
29
+
30
+
-`enabled` (Boolean) The boolean value specifying whether the log service is enabled.
31
+
-`id` (String) The unique identifier for the log service within the Fivetran system.
32
+
-`service` (String) The name for the log service type within the Fivetran system. We support the following log services: azure_monitor_log, cloudwatch, datadog_log, new_relic_log, splunkLog, stackdriver.
0 commit comments