Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

Application

Returns a list of Application Perspectives.

Properties

Name Type Description Notes
boundary_scope str Here, `ALL` Application Boundary Scope is considered.
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]