Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api): OpenAPI spec update via Stainless API #1766

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zero_trust/dexhttptest.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ type HTTPDetails struct {
Method string `json:"method"`
// The name of the HTTP synthetic application test
Name string `json:"name"`
TargetPolicies []DeviceExperienceMonitor `json:"target_policies"`
TargetPolicies []DeviceExperienceMonitor `json:"target_policies,nullable"`
Targeted bool `json:"targeted"`
JSON httpDetailsJSON `json:"-"`
}
Expand Down
2 changes: 1 addition & 1 deletion zero_trust/dextest.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ type TestsTest struct {
HTTPResultsByColo []TestsTestsHTTPResultsByColo `json:"httpResultsByColo"`
// for HTTP, the method to use when running the test
Method string `json:"method"`
TargetPolicies []DeviceExperienceMonitor `json:"target_policies"`
TargetPolicies []DeviceExperienceMonitor `json:"target_policies,nullable"`
Targeted bool `json:"targeted"`
TracerouteResults TestsTestsTracerouteResults `json:"tracerouteResults,nullable"`
TracerouteResultsByColo []TestsTestsTracerouteResultsByColo `json:"tracerouteResultsByColo"`
Expand Down
2 changes: 1 addition & 1 deletion zero_trust/dextraceroutetest.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ type Traceroute struct {
Kind TracerouteKind `json:"kind,required"`
// The name of the Traceroute synthetic application test
Name string `json:"name,required"`
TargetPolicies []DeviceExperienceMonitor `json:"target_policies"`
TargetPolicies []DeviceExperienceMonitor `json:"target_policies,nullable"`
Targeted bool `json:"targeted"`
TracerouteStats TracerouteTracerouteStats `json:"tracerouteStats,nullable"`
TracerouteStatsByColo []TracerouteTracerouteStatsByColo `json:"tracerouteStatsByColo"`
Expand Down