Skip to content
Merged
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
14 changes: 8 additions & 6 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18679,9 +18679,10 @@ 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`
field is omitted from the Splunk HEC payload entirely. Otherwise, the provided string
value is used as the sourcetype.
If the field is absent from the request and no sourcetype has been previously set on this destination, the default sourcetype `_json` is used.
On update, if the field is absent from the request but a sourcetype was previously set, the previous value is kept.
If set to `null`, the sourcetype field is omitted from the forwarded event entirely.
Otherwise, the provided string value is used as the sourcetype.
example: my-source
nullable: true
type: string
Expand Down Expand Up @@ -18964,9 +18965,10 @@ 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`
field is omitted from the Splunk HEC payload entirely. Otherwise, the provided string
value is used as the sourcetype.
If the field is absent from the request and no sourcetype has been previously set on this destination, the default sourcetype `_json` is used.
On update, if the field is absent from the request but a sourcetype was previously set, the previous value is kept.
If set to `null`, the sourcetype field is omitted from the forwarded event entirely.
Otherwise, the provided string value is used as the sourcetype.
example: my-source
nullable: true
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@ public CustomDestinationForwardDestinationSplunk sourcetype(String sourcetype) {
/**
* The Splunk sourcetype for the events sent to this Splunk destination.
*
* <p>If absent, the default sourcetype <code>_json</code> is used. If set to null, the <code>
* sourcetype</code> field is omitted from the Splunk HEC payload entirely. Otherwise, the
* provided string value is used as the sourcetype.
* <p>If the field is absent from the request and no sourcetype has been previously set on this
* destination, the default sourcetype <code>_json</code> is used. On update, if the field is
* absent from the request but a sourcetype was previously set, the previous value is kept. If set
* to <code>null</code>, the sourcetype field is omitted from the forwarded event entirely.
* Otherwise, the provided string value is used as the sourcetype.
*
* @return sourcetype
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,11 @@ public CustomDestinationResponseForwardDestinationSplunk sourcetype(String sourc
/**
* The Splunk sourcetype for the events sent to this Splunk destination.
*
* <p>If absent, the default sourcetype <code>_json</code> is used. If set to null, the <code>
* sourcetype</code> field is omitted from the Splunk HEC payload entirely. Otherwise, the
* provided string value is used as the sourcetype.
* <p>If the field is absent from the request and no sourcetype has been previously set on this
* destination, the default sourcetype <code>_json</code> is used. On update, if the field is
* absent from the request but a sourcetype was previously set, the previous value is kept. If set
* to <code>null</code>, the sourcetype field is omitted from the forwarded event entirely.
* Otherwise, the provided string value is used as the sourcetype.
*
* @return sourcetype
*/
Expand Down
Loading