Specifies the configuration for the splunk_cloud_logstreaming Log Stream type.
| 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. |
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)