PingEndpointInfo Model
PingEndpointInfo Model documentation for Python SDK
Resolved endpoint metadata for ping responses
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| target_type | PingTargetType | ||
| target_id | str | Target resource ID (UUID) | |
| resolved_endpoint | str | Fully resolved endpoint URL used for the probe | |
| provider | str | Provider name backing the resource | |
| model_identifier | str | Provider-specific model identifier |
Example
from goodmem_client.models.ping_endpoint_info import PingEndpointInfo
# TODO update the JSON string below
json = "{}"
# create an instance of PingEndpointInfo from a JSON string
ping_endpoint_info_instance = PingEndpointInfo.from_json(json)
# print the JSON string representation of the object
print(PingEndpointInfo.to_json())
# convert the object into a dict
ping_endpoint_info_dict = ping_endpoint_info_instance.to_dict()
# create an instance of PingEndpointInfo from a dict
ping_endpoint_info_from_dict = PingEndpointInfo.from_dict(ping_endpoint_info_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK