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` |
from okta.models.log_stream_settings_splunk_put import LogStreamSettingsSplunkPut
# TODO update the JSON string below
json = "{}"
# create an instance of LogStreamSettingsSplunkPut from a JSON string
log_stream_settings_splunk_put_instance = LogStreamSettingsSplunkPut.from_json(json)
# print the JSON string representation of the object
print(LogStreamSettingsSplunkPut.to_json())
# convert the object into a dict
log_stream_settings_splunk_put_dict = log_stream_settings_splunk_put_instance.to_dict()
# create an instance of LogStreamSettingsSplunkPut from a dict
log_stream_settings_splunk_put_from_dict = LogStreamSettingsSplunkPut.from_dict(log_stream_settings_splunk_put_dict)