Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.81 KB

File metadata and controls

35 lines (26 loc) · 1.81 KB

PhysicalContext

The physical context of an entity. This is typically used to describe where a host, container or process fits into the infrastructure. 1. cloudfoundry: Contains physical context of Cloudfoundry. 2. cluster: Contains physical context of cluster like Hazelcast, Elasticsearch. 3. container: Contains physical context of container. 4. host: Contains physical context of host. 5. kubernetes: Contains physical context of Kubernetes. 6. process: Contains physical context of a process.

Properties

Name Type Description Notes
cloudfoundry CloudfoundryPhysicalContext [optional]
cluster SnapshotPreview [optional]
container SnapshotPreview [optional]
host SnapshotPreview [optional]
kubernetes KubernetesPhysicalContext [optional]
process SnapshotPreview [optional]

Example

from instana_client.models.physical_context import PhysicalContext

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

# convert the object into a dict
physical_context_dict = physical_context_instance.to_dict()
# create an instance of PhysicalContext from a dict
physical_context_from_dict = PhysicalContext.from_dict(physical_context_dict)

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