Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

File metadata and controls

33 lines (24 loc) · 1.33 KB

HttpScriptConfigurationUpdate

Properties

Name Type Description Notes
file_name str [optional]
github GitHubConfiguration [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]