Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

File metadata and controls

31 lines (22 loc) · 1.31 KB

LogStreamSettingsSplunkPut

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`

Example

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)

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