Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18293,7 +18293,7 @@ components:
description: |-
The Splunk sourcetype for the events sent to this Splunk destination.

If absent, the default sourcetype `_json` is used. If set to null, the `sourcetype`
If not defined and not already set, the default sourcetype `_json` is used. Otherwise, the previously set value remains unchanged. If set to null, the `sourcetype`
field is omitted from the Splunk HEC payload entirely. Otherwise, the provided string
value is used as the sourcetype.
example: my-source
Expand Down Expand Up @@ -18578,7 +18578,7 @@ components:
description: |-
The Splunk sourcetype for the events sent to this Splunk destination.

If absent, the default sourcetype `_json` is used. If set to null, the `sourcetype`
If not defined and not already set, the default sourcetype `_json` is used. Otherwise, the previously set value remains unchanged. If set to null, the `sourcetype`
field is omitted from the Splunk HEC payload entirely. Otherwise, the provided string
value is used as the sourcetype.
example: my-source
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class CustomDestinationForwardDestinationSplunk {
/**
* The Splunk sourcetype for the events sent to this Splunk destination.
*
* If absent, the default sourcetype `_json` is used. If set to null, the `sourcetype`
* If not defined and not already set, the default sourcetype `_json` is used. Otherwise, the previously set value remains unchanged. If set to null, the `sourcetype`
* field is omitted from the Splunk HEC payload entirely. Otherwise, the provided string
* value is used as the sourcetype.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class CustomDestinationResponseForwardDestinationSplunk {
/**
* The Splunk sourcetype for the events sent to this Splunk destination.
*
* If absent, the default sourcetype `_json` is used. If set to null, the `sourcetype`
* If not defined and not already set, the default sourcetype `_json` is used. Otherwise, the previously set value remains unchanged. If set to null, the `sourcetype`
* field is omitted from the Splunk HEC payload entirely. Otherwise, the provided string
* value is used as the sourcetype.
*/
Expand Down
Loading