API Stability |
Long-Term
|
The updateFdrFeedControl() GraphQL mutation may be used to update a FDR feed administrator control.
Syntax
Below is the syntax for the updateFdrFeedControl() mutation field:
graphql
updateFdrFeedControl(
input: UpdateFdrFeedControl!
): FdrFeedControl!
Below is an example of how this mutation field might be used:
graphql
mutation {
updateFdrFeedControl( input:
{ repositoryName: "humio",
id: "abc123",
maxNodes: { value: 3 }
}
)
{ id }
}
json
{
"data": {
"updateFdrFeedControl": {
"id": "abc123"
}
}
}
Given Datatypes
For UpdateFdrFeedControl, there are a few parameters that may be given. Below is a list of them along with a description of each:
Table: UpdateFdrFeedControl
Parameter | Type | Required | Default | Stability | Description |
---|---|---|---|---|---|
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column. | |||||
Table last updated: Sep 23, 2024 | |||||
fileDownloadParallelism | UpdateLong | Maximum amount of files downloaded from s3 in parallel for a single node. To clear value, enter no value or a `null`. If parameter is not included, it won't be change. See UpdateLong . | |||
id | string | yes | The unique identifier of the FDR feed. | ||
maxNodes | UpdateLong | yes | Maximum number of nodes with which to poll FDR feed. To clear value, enter no value or a `null`. If parameter is not included, it won't be change. See UpdateLong . | ||
repositoryName | string | yes | The name of the repository of the FDR feed. |
Returned Datatypes
The returned datatype FdrFeedControl has a few parameters. Below is a list of them along with a description of each:
Table: FdrFeedControl
Parameter | Type | Required | Default | Stability | Description |
---|---|---|---|---|---|
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column. | |||||
Table last updated: Sep 25, 2024 | |||||
fileDownloadParallelism | integer | Long-Term | The maximum amount of files downloaded from s3 in parallel for a single node. | ||
id | string | yes | Long-Term | The unique identifier of the FDR feed. | |
maxNodes | integer | Long-Term | The maximum number of nodes with which to poll the FDR feed. |