Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

HttpScriptConfigurationUpdate

Properties

Name Type Description Notes
file_name str [optional]
script str [optional]
script_type str [optional]
scripts MultipleScriptsConfiguration [optional]

Example

from instana_client.models.http_script_configuration_update import HttpScriptConfigurationUpdate

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

# convert the object into a dict
http_script_configuration_update_dict = http_script_configuration_update_instance.to_dict()
# create an instance of HttpScriptConfigurationUpdate from a dict
http_script_configuration_update_from_dict = HttpScriptConfigurationUpdate.from_dict(http_script_configuration_update_dict)

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