Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.33 KB

File metadata and controls

34 lines (25 loc) · 1.33 KB

Application

Returns a list of Application Perspectives.

Properties

Name Type Description Notes
boundary_scope str Here, `ALL` Application Boundary Scope is considered.
business_criticality str Business criticality level of the application [optional]
entity_type str Since, this is an Application Perspective, it will be of type `APPLICATION`. [optional]
id str Unique ID of the Application Perspective. Eg: `Av62RoIKQv-A3n6DbMQh9g`.
label str Name of the Application Perspective. Eg: `app1`.

Example

from instana_client.models.application import Application

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

# convert the object into a dict
application_dict = application_instance.to_dict()
# create an instance of Application from a dict
application_from_dict = Application.from_dict(application_dict)

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