Skip to content

Commit

Permalink
feat(api): api update (#3912)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Feb 10, 2025
1 parent 443ac99 commit 34eade2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 1525
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-201a9d77b2e238cb2f8c2c952b00b976608e2a53fe4230369e801971fda29edc.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a19d8d47ccadec52630bf49d288b1a7a6280e882e04cc46b6e3a58291cdb06fb.yml
4 changes: 3 additions & 1 deletion zero_trust/tunnelmanagement.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ func (r TunnelManagementNewParamsResource) IsKnown() bool {
type TunnelManagementNewResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result string `json:"result,required"`
// The Tunnel Token is used as a mechanism to authenticate the operation of a
// tunnel.
Result string `json:"result,required"`
// Whether the API call was successful
Success TunnelManagementNewResponseEnvelopeSuccess `json:"success,required"`
JSON tunnelManagementNewResponseEnvelopeJSON `json:"-"`
Expand Down
4 changes: 3 additions & 1 deletion zero_trust/tunneltoken.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ type TunnelTokenGetParams struct {
type TunnelTokenGetResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result string `json:"result,required"`
// The Tunnel Token is used as a mechanism to authenticate the operation of a
// tunnel.
Result string `json:"result,required"`
// Whether the API call was successful
Success TunnelTokenGetResponseEnvelopeSuccess `json:"success,required"`
JSON tunnelTokenGetResponseEnvelopeJSON `json:"-"`
Expand Down
4 changes: 3 additions & 1 deletion zero_trust/tunnelwarpconnector.go
Original file line number Diff line number Diff line change
Expand Up @@ -1906,7 +1906,9 @@ type TunnelWARPConnectorTokenParams struct {
type TunnelWARPConnectorTokenResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result string `json:"result,required"`
// The Tunnel Token is used as a mechanism to authenticate the operation of a
// tunnel.
Result string `json:"result,required"`
// Whether the API call was successful
Success TunnelWARPConnectorTokenResponseEnvelopeSuccess `json:"success,required"`
JSON tunnelWARPConnectorTokenResponseEnvelopeJSON `json:"-"`
Expand Down

0 comments on commit 34eade2

Please sign in to comment.