From b987ba7ad5c1b03aac212d0a806a873217f990c4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 18:34:49 +0000 Subject: [PATCH] feat(api): OpenAPI spec update via Stainless API (#3118) --- .stats.yml | 2 +- event_notifications/r2configuration.go | 6 ++--- event_notifications/r2configurationqueue.go | 12 +++++----- queues/consumer.go | 24 +++++++++---------- queues/message.go | 12 +++++----- queues/queue.go | 26 ++++++++++----------- 6 files changed, 41 insertions(+), 41 deletions(-) diff --git a/.stats.yml b/.stats.yml index 5a068dcccd0..1ddcdddc334 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 1331 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-213ac3179a5d0aecf47c44186921cb82063da6beaec7c1dfce570af2f9fea8c5.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-21765870845408fe18fced7362faa5c1aaba688a3f8e2dded245f106f70b0895.yml diff --git a/event_notifications/r2configuration.go b/event_notifications/r2configuration.go index 1ac2be3be97..ec8f85bae15 100644 --- a/event_notifications/r2configuration.go +++ b/event_notifications/r2configuration.go @@ -132,7 +132,7 @@ func (r R2ConfigurationGetResponseItemRulesAction) IsKnown() bool { } type R2ConfigurationGetParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` } @@ -140,7 +140,7 @@ type R2ConfigurationGetResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result R2ConfigurationGetResponse `json:"result,required"` - // Whether the API call was successful + // Whether the API call was successful. Success R2ConfigurationGetResponseEnvelopeSuccess `json:"success,required"` JSON r2ConfigurationGetResponseEnvelopeJSON `json:"-"` } @@ -164,7 +164,7 @@ func (r r2ConfigurationGetResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type R2ConfigurationGetResponseEnvelopeSuccess bool const ( diff --git a/event_notifications/r2configurationqueue.go b/event_notifications/r2configurationqueue.go index 282ff0cf965..17472ab362d 100644 --- a/event_notifications/r2configurationqueue.go +++ b/event_notifications/r2configurationqueue.go @@ -136,7 +136,7 @@ func (r R2ConfigurationQueueDeleteResponseArray) ImplementsEventNotificationsR2C } type R2ConfigurationQueueUpdateParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` // Array of rules to drive notifications Rules param.Field[[]R2ConfigurationQueueUpdateParamsRule] `json:"rules"` @@ -181,7 +181,7 @@ type R2ConfigurationQueueUpdateResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result R2ConfigurationQueueUpdateResponse `json:"result,required"` - // Whether the API call was successful + // Whether the API call was successful. Success R2ConfigurationQueueUpdateResponseEnvelopeSuccess `json:"success,required"` JSON r2ConfigurationQueueUpdateResponseEnvelopeJSON `json:"-"` } @@ -205,7 +205,7 @@ func (r r2ConfigurationQueueUpdateResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type R2ConfigurationQueueUpdateResponseEnvelopeSuccess bool const ( @@ -221,7 +221,7 @@ func (r R2ConfigurationQueueUpdateResponseEnvelopeSuccess) IsKnown() bool { } type R2ConfigurationQueueDeleteParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` } @@ -229,7 +229,7 @@ type R2ConfigurationQueueDeleteResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result R2ConfigurationQueueDeleteResponseUnion `json:"result,required"` - // Whether the API call was successful + // Whether the API call was successful. Success R2ConfigurationQueueDeleteResponseEnvelopeSuccess `json:"success,required"` JSON r2ConfigurationQueueDeleteResponseEnvelopeJSON `json:"-"` } @@ -253,7 +253,7 @@ func (r r2ConfigurationQueueDeleteResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type R2ConfigurationQueueDeleteResponseEnvelopeSuccess bool const ( diff --git a/queues/consumer.go b/queues/consumer.go index e916b000e69..7c94a59e0fe 100644 --- a/queues/consumer.go +++ b/queues/consumer.go @@ -324,7 +324,7 @@ type ConsumerDeleteResponseArray []interface{} func (r ConsumerDeleteResponseArray) ImplementsQueuesConsumerDeleteResponseUnion() {} type ConsumerNewParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` Body interface{} `json:"body,required"` } @@ -337,7 +337,7 @@ type ConsumerNewResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result ConsumerNewResponse `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success ConsumerNewResponseEnvelopeSuccess `json:"success,required"` ResultInfo ConsumerNewResponseEnvelopeResultInfo `json:"result_info"` JSON consumerNewResponseEnvelopeJSON `json:"-"` @@ -363,7 +363,7 @@ func (r consumerNewResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type ConsumerNewResponseEnvelopeSuccess bool const ( @@ -410,7 +410,7 @@ func (r consumerNewResponseEnvelopeResultInfoJSON) RawJSON() string { } type ConsumerUpdateParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` Body interface{} `json:"body,required"` } @@ -423,7 +423,7 @@ type ConsumerUpdateResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result ConsumerUpdateResponse `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success ConsumerUpdateResponseEnvelopeSuccess `json:"success,required"` ResultInfo ConsumerUpdateResponseEnvelopeResultInfo `json:"result_info"` JSON consumerUpdateResponseEnvelopeJSON `json:"-"` @@ -449,7 +449,7 @@ func (r consumerUpdateResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type ConsumerUpdateResponseEnvelopeSuccess bool const ( @@ -496,7 +496,7 @@ func (r consumerUpdateResponseEnvelopeResultInfoJSON) RawJSON() string { } type ConsumerDeleteParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` } @@ -504,7 +504,7 @@ type ConsumerDeleteResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result ConsumerDeleteResponseUnion `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success ConsumerDeleteResponseEnvelopeSuccess `json:"success,required"` ResultInfo ConsumerDeleteResponseEnvelopeResultInfo `json:"result_info"` JSON consumerDeleteResponseEnvelopeJSON `json:"-"` @@ -530,7 +530,7 @@ func (r consumerDeleteResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type ConsumerDeleteResponseEnvelopeSuccess bool const ( @@ -577,7 +577,7 @@ func (r consumerDeleteResponseEnvelopeResultInfoJSON) RawJSON() string { } type ConsumerGetParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` } @@ -585,7 +585,7 @@ type ConsumerGetResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result []Consumer `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success ConsumerGetResponseEnvelopeSuccess `json:"success,required"` ResultInfo ConsumerGetResponseEnvelopeResultInfo `json:"result_info"` JSON consumerGetResponseEnvelopeJSON `json:"-"` @@ -611,7 +611,7 @@ func (r consumerGetResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type ConsumerGetResponseEnvelopeSuccess bool const ( diff --git a/queues/message.go b/queues/message.go index 0aa17e97400..60384219c07 100644 --- a/queues/message.go +++ b/queues/message.go @@ -135,7 +135,7 @@ func (r messagePullResponseJSON) RawJSON() string { } type MessageAckParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` Acks param.Field[[]MessageAckParamsAck] `json:"acks"` Retries param.Field[[]MessageAckParamsRetry] `json:"retries"` @@ -170,7 +170,7 @@ type MessageAckResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result MessageAckResponse `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success MessageAckResponseEnvelopeSuccess `json:"success,required"` ResultInfo MessageAckResponseEnvelopeResultInfo `json:"result_info"` JSON messageAckResponseEnvelopeJSON `json:"-"` @@ -196,7 +196,7 @@ func (r messageAckResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type MessageAckResponseEnvelopeSuccess bool const ( @@ -243,7 +243,7 @@ func (r messageAckResponseEnvelopeResultInfoJSON) RawJSON() string { } type MessagePullParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` // The maximum number of messages to include in a batch. BatchSize param.Field[float64] `json:"batch_size"` @@ -260,7 +260,7 @@ type MessagePullResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result []MessagePullResponse `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success MessagePullResponseEnvelopeSuccess `json:"success,required"` ResultInfo MessagePullResponseEnvelopeResultInfo `json:"result_info"` JSON messagePullResponseEnvelopeJSON `json:"-"` @@ -286,7 +286,7 @@ func (r messagePullResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type MessagePullResponseEnvelopeSuccess bool const ( diff --git a/queues/queue.go b/queues/queue.go index 76bf149c3b7..24f167ae2b9 100644 --- a/queues/queue.go +++ b/queues/queue.go @@ -281,7 +281,7 @@ type QueueDeleteResponseArray []interface{} func (r QueueDeleteResponseArray) ImplementsQueuesQueueDeleteResponseUnion() {} type QueueNewParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` QueueName param.Field[string] `json:"queue_name,required"` } @@ -294,7 +294,7 @@ type QueueNewResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result QueueCreated `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success QueueNewResponseEnvelopeSuccess `json:"success,required"` ResultInfo QueueNewResponseEnvelopeResultInfo `json:"result_info"` JSON queueNewResponseEnvelopeJSON `json:"-"` @@ -320,7 +320,7 @@ func (r queueNewResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type QueueNewResponseEnvelopeSuccess bool const ( @@ -367,7 +367,7 @@ func (r queueNewResponseEnvelopeResultInfoJSON) RawJSON() string { } type QueueUpdateParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` Body interface{} `json:"body,required"` } @@ -380,7 +380,7 @@ type QueueUpdateResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result QueueUpdated `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success QueueUpdateResponseEnvelopeSuccess `json:"success,required"` ResultInfo QueueUpdateResponseEnvelopeResultInfo `json:"result_info"` JSON queueUpdateResponseEnvelopeJSON `json:"-"` @@ -406,7 +406,7 @@ func (r queueUpdateResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type QueueUpdateResponseEnvelopeSuccess bool const ( @@ -453,12 +453,12 @@ func (r queueUpdateResponseEnvelopeResultInfoJSON) RawJSON() string { } type QueueListParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` } type QueueDeleteParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` } @@ -466,7 +466,7 @@ type QueueDeleteResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result QueueDeleteResponseUnion `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success QueueDeleteResponseEnvelopeSuccess `json:"success,required"` ResultInfo QueueDeleteResponseEnvelopeResultInfo `json:"result_info"` JSON queueDeleteResponseEnvelopeJSON `json:"-"` @@ -492,7 +492,7 @@ func (r queueDeleteResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type QueueDeleteResponseEnvelopeSuccess bool const ( @@ -539,7 +539,7 @@ func (r queueDeleteResponseEnvelopeResultInfoJSON) RawJSON() string { } type QueueGetParams struct { - // Identifier + // Identifier. AccountID param.Field[string] `path:"account_id,required"` } @@ -547,7 +547,7 @@ type QueueGetResponseEnvelope struct { Errors []shared.ResponseInfo `json:"errors,required"` Messages []shared.ResponseInfo `json:"messages,required"` Result Queue `json:"result,required,nullable"` - // Whether the API call was successful + // Whether the API call was successful. Success QueueGetResponseEnvelopeSuccess `json:"success,required"` ResultInfo QueueGetResponseEnvelopeResultInfo `json:"result_info"` JSON queueGetResponseEnvelopeJSON `json:"-"` @@ -573,7 +573,7 @@ func (r queueGetResponseEnvelopeJSON) RawJSON() string { return r.raw } -// Whether the API call was successful +// Whether the API call was successful. type QueueGetResponseEnvelopeSuccess bool const (