Skip to main content

aip_sdk.ConnectionTestResult

aip_sdk.ConnectionTestResult(success: bool, status_code: int | None, raw_response: Any | None, error: str | None, duration_ms: float | None, reachability: str | None = None, reason: str | None = None)

Result from testing a SUT connection.

Attributes

  • success bool: Whether the test request succeeded
  • status_code int | None: HTTP status code from the SUT response
  • reachability str | None: Outcome classification (e.g. "ok", "auth_failed", "endpoint_misconfigured", "payload_rejected", "unreachable")
  • reason str | None: Human-readable explanation of the outcome
  • raw_response Any | None: The raw SUT response body
  • error str | None: Error message if test failed
  • duration_ms float | None: Request duration in milliseconds

aip_sdk.ConnectionTestResult.duration_ms​

aip_sdk.ConnectionTestResult.duration_ms: float | None

No docstring is defined in the source.

aip_sdk.ConnectionTestResult.error​

aip_sdk.ConnectionTestResult.error: str | None

No docstring is defined in the source.

aip_sdk.ConnectionTestResult.raw_response​

aip_sdk.ConnectionTestResult.raw_response: Any | None

No docstring is defined in the source.

aip_sdk.ConnectionTestResult.reachability​

aip_sdk.ConnectionTestResult.reachability: str | None = None

No docstring is defined in the source.

aip_sdk.ConnectionTestResult.reason​

aip_sdk.ConnectionTestResult.reason: str | None = None

No docstring is defined in the source.

aip_sdk.ConnectionTestResult.status_code​

aip_sdk.ConnectionTestResult.status_code: int | None

No docstring is defined in the source.

aip_sdk.ConnectionTestResult.success​

aip_sdk.ConnectionTestResult.success: bool

No docstring is defined in the source.