Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Apr 22, 2024
1 parent 3a18e9d commit 07b9591
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 92 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
__all__ = [
"DigitalExperienceMonitoringHTTPDetails",
"HTTPStats",
"HTTPStatsAvailabilityPct",
"HTTPStatsAvailabilityPctSlot",
"HTTPStatsDNSResponseTimeMs",
"HTTPStatsDNSResponseTimeMsSlot",
"HTTPStatsHTTPStatusCode",
Expand All @@ -20,38 +18,16 @@
"HTTPStatsServerResponseTimeMs",
"HTTPStatsServerResponseTimeMsSlot",
"HTTPStatsByColo",
"HTTPStatsByColoAvailabilityPct",
"HTTPStatsByColoAvailabilityPctSlot",
"HTTPStatsByColoDNSResponseTimeMs",
"HTTPStatsByColoDNSResponseTimeMsSlot",
"HTTPStatsByColoHTTPStatusCode",
"HTTPStatsByColoResourceFetchTimeMs",
"HTTPStatsByColoResourceFetchTimeMsSlot",
"HTTPStatsByColoServerResponseTimeMs",
"HTTPStatsByColoServerResponseTimeMsSlot",
"TargetPolicy",
]


class HTTPStatsAvailabilityPctSlot(BaseModel):
timestamp: str

value: float


class HTTPStatsAvailabilityPct(BaseModel):
slots: List[HTTPStatsAvailabilityPctSlot]

avg: Optional[float] = None
"""average observed in the time period"""

max: Optional[float] = None
"""highest observed in the time period"""

min: Optional[float] = None
"""lowest observed in the time period"""


class HTTPStatsDNSResponseTimeMsSlot(BaseModel):
timestamp: str

Expand Down Expand Up @@ -122,8 +98,6 @@ class HTTPStatsServerResponseTimeMs(BaseModel):


class HTTPStats(BaseModel):
availability_pct: HTTPStatsAvailabilityPct = FieldInfo(alias="availabilityPct")

dns_response_time_ms: HTTPStatsDNSResponseTimeMs = FieldInfo(alias="dnsResponseTimeMs")

http_status_code: List[HTTPStatsHTTPStatusCode] = FieldInfo(alias="httpStatusCode")
Expand All @@ -136,25 +110,6 @@ class HTTPStats(BaseModel):
"""Count of unique devices that have run this test in the given time period"""


class HTTPStatsByColoAvailabilityPctSlot(BaseModel):
timestamp: str

value: float


class HTTPStatsByColoAvailabilityPct(BaseModel):
slots: List[HTTPStatsByColoAvailabilityPctSlot]

avg: Optional[float] = None
"""average observed in the time period"""

max: Optional[float] = None
"""highest observed in the time period"""

min: Optional[float] = None
"""lowest observed in the time period"""


class HTTPStatsByColoDNSResponseTimeMsSlot(BaseModel):
timestamp: str

Expand Down Expand Up @@ -225,8 +180,6 @@ class HTTPStatsByColoServerResponseTimeMs(BaseModel):


class HTTPStatsByColo(BaseModel):
availability_pct: HTTPStatsByColoAvailabilityPct = FieldInfo(alias="availabilityPct")

colo: str

dns_response_time_ms: HTTPStatsByColoDNSResponseTimeMs = FieldInfo(alias="dnsResponseTimeMs")
Expand All @@ -241,15 +194,6 @@ class HTTPStatsByColo(BaseModel):
"""Count of unique devices that have run this test in the given time period"""


class TargetPolicy(BaseModel):
id: str

default: bool
"""Whether the policy is the default for the account"""

name: str


class DigitalExperienceMonitoringHTTPDetails(BaseModel):
host: Optional[str] = None
"""The url of the HTTP synthetic application test"""
Expand All @@ -268,7 +212,3 @@ class DigitalExperienceMonitoringHTTPDetails(BaseModel):

name: Optional[str] = None
"""The name of the HTTP synthetic application test"""

target_policies: Optional[List[TargetPolicy]] = None

targeted: Optional[bool] = None
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"TestHTTPResultsByColoResourceFetchTimeOverTime",
"TestHTTPResultsByColoResourceFetchTimeOverTimeTimePeriod",
"TestHTTPResultsByColoResourceFetchTimeOverTimeValue",
"TestTargetPolicy",
"TestTracerouteResults",
"TestTracerouteResultsRoundTripTime",
"TestTracerouteResultsRoundTripTimeHistory",
Expand All @@ -47,9 +46,6 @@ class OverviewMetrics(BaseModel):
tests_total: int = FieldInfo(alias="testsTotal")
"""number of tests."""

avg_http_availability_pct: Optional[float] = FieldInfo(alias="avgHttpAvailabilityPct", default=None)
"""percentage availability for all HTTP test results in response"""

avg_traceroute_availability_pct: Optional[float] = FieldInfo(alias="avgTracerouteAvailabilityPct", default=None)
"""percentage availability for all traceroutes results in response"""

Expand Down Expand Up @@ -159,16 +155,6 @@ class TestHTTPResultsByColo(BaseModel):
resource_fetch_time: TestHTTPResultsByColoResourceFetchTime = FieldInfo(alias="resourceFetchTime")


class TestTargetPolicy(BaseModel):
__test__ = False
id: str

default: bool
"""Whether the policy is the default for the account"""

name: str


class TestTracerouteResultsRoundTripTimeHistoryTimePeriod(BaseModel):
__test__ = False
units: Literal["hours", "days", "testRuns"]
Expand Down Expand Up @@ -311,10 +297,6 @@ class Test(BaseModel):
method: Optional[str] = None
"""for HTTP, the method to use when running the test"""

target_policies: Optional[List[TestTargetPolicy]] = None

targeted: Optional[bool] = None

traceroute_results: Optional[TestTracerouteResults] = FieldInfo(alias="tracerouteResults", default=None)

traceroute_results_by_colo: Optional[List[TestTracerouteResultsByColo]] = FieldInfo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

__all__ = [
"DigitalExperienceMonitoringTracerouteDetails",
"TargetPolicy",
"TracerouteStats",
"TracerouteStatsAvailabilityPct",
"TracerouteStatsAvailabilityPctSlot",
Expand All @@ -31,15 +30,6 @@
]


class TargetPolicy(BaseModel):
id: str

default: bool
"""Whether the policy is the default for the account"""

name: str


class TracerouteStatsAvailabilityPctSlot(BaseModel):
timestamp: str

Expand Down Expand Up @@ -232,10 +222,6 @@ class DigitalExperienceMonitoringTracerouteDetails(BaseModel):
name: str
"""The name of the Traceroute synthetic application test"""

target_policies: Optional[List[TargetPolicy]] = None

targeted: Optional[bool] = None

traceroute_stats: Optional[TracerouteStats] = FieldInfo(alias="tracerouteStats", default=None)

traceroute_stats_by_colo: Optional[List[TracerouteStatsByColo]] = FieldInfo(
Expand Down

0 comments on commit 07b9591

Please sign in to comment.