Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.42 KB

File metadata and controls

32 lines (23 loc) · 1.42 KB

LogStreamSettingsSplunk

Specifies the configuration for the splunk_cloud_logstreaming Log Stream type.

Properties

Name Type Description Notes
edition SplunkEdition
host str The domain name for your Splunk Cloud instance. Don't include `http` or `https` in the string. For example: `acme.splunkcloud.com`
token str The HEC token for your Splunk Cloud HTTP Event Collector. The token value is set at object creation, but isn't returned.

Example

from okta.models.log_stream_settings_splunk import LogStreamSettingsSplunk

# TODO update the JSON string below
json = "{}"
# create an instance of LogStreamSettingsSplunk from a JSON string
log_stream_settings_splunk_instance = LogStreamSettingsSplunk.from_json(json)
# print the JSON string representation of the object
print(LogStreamSettingsSplunk.to_json())

# convert the object into a dict
log_stream_settings_splunk_dict = log_stream_settings_splunk_instance.to_dict()
# create an instance of LogStreamSettingsSplunk from a dict
log_stream_settings_splunk_from_dict = LogStreamSettingsSplunk.from_dict(log_stream_settings_splunk_dict)

[Back to Model list] [Back to API list] [Back to README]