Skip to content

ngsiem_data_connection_info

Returns detailed information for one or more NG-SIEM data connections. Some of the details returned include connection name, vendor, parser, status,

Added in version 4.13.0

ParameterTypeRequiredDefaultDescription
connection_idslistNoA list of data connection IDs to get information about. If not provided, connections will be returned based on filter and pagination settings. Cannot be used together with I(filter).
filterstrNoFQL (Falcon Query Language) filter expression to limit results. “Supported fields: C(name), C(id), C(vendor_name), C(vendor_product_name), “C(status) accepts: C(Pending), C(Active), C(Disconnected), C(Error), C(Idle), C(Paused).” “C(type) accepts: C(PUSH), C(PULL).” “Examples: C(name:‘edge’), C(status:‘Active’), C(type:‘PUSH’).” Cannot be used together with I(connection_ids).
include_statusboolNofalseWhether to enrich each connection with its current provisioning status. When enabled, adds a C(provisioning_status) field to each connection. This requires an additional API call per connection.
limitintNo100Maximum number of data connections to return. Must be between 1 and 500.
offsetintNo0Starting index for pagination. Use with I(limit) to paginate through large result sets.
sortstrNoProperty to sort results by. “B(Note:) Only C(name.asc) is supported by the API. Other sort values are rejected.”
- name: Get all data connections
crowdstrike.falcon.ngsiem_data_connection_info:
- name: Get specific data connections by ID
crowdstrike.falcon.ngsiem_data_connection_info:
connection_ids:
- "abcdef1234567890abcdef1234567890"
- "1234567890abcdef1234567890abcdef"
- name: Search connections by name pattern
crowdstrike.falcon.ngsiem_data_connection_info:
filter: "name:'*edge*'"
limit: 50
- name: Filter connections by status
crowdstrike.falcon.ngsiem_data_connection_info:
filter: "status:'Active'"
sort: "name.asc"
- name: Filter PUSH connections and include provisioning status
crowdstrike.falcon.ngsiem_data_connection_info:
filter: "type:'PUSH'"
include_status: true
KeyTypeDescription
data_connections-
metaM