From 0fd0c6addd295168b01fd86fad1e8e6cdaaba243 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 10:16:49 +0000 Subject: [PATCH] feat(api): OpenAPI spec update via Stainless API (#3003) --- .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 d8d6005a7b3..771ab43d2f7 100755 --- 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-ec411ebd9ca8ef85086c068297cc69d1dccd432e196bf05961442f6a394b1335.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-25a30fae8e8b813a7f82e97960c0f8a81cf53e84e956f560fda395e3ee7ffc56.yml diff --git a/event_notifications/r2configuration.go b/event_notifications/r2configuration.go index ec8f85bae15..1ac2be3be97 100755 --- 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 0467d80cfc6..a7e2277fc90 100755 --- a/event_notifications/r2configurationqueue.go +++ b/event_notifications/r2configurationqueue.go @@ -138,7 +138,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"` @@ -183,7 +183,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:"-"` } @@ -207,7 +207,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 ( @@ -223,7 +223,7 @@ func (r R2ConfigurationQueueUpdateResponseEnvelopeSuccess) IsKnown() bool { } type R2ConfigurationQueueDeleteParams struct { - // Identifier. + // Identifier AccountID param.Field[string] `path:"account_id,required"` } @@ -231,7 +231,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:"-"` } @@ -255,7 +255,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 f914d9fbfef..58d885cd5ee 100755 --- a/queues/consumer.go +++ b/queues/consumer.go @@ -326,7 +326,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"` } @@ -339,7 +339,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:"-"` @@ -365,7 +365,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 ( @@ -412,7 +412,7 @@ func (r consumerNewResponseEnvelopeResultInfoJSON) RawJSON() string { } type ConsumerUpdateParams struct { - // Identifier. + // Identifier AccountID param.Field[string] `path:"account_id,required"` Body interface{} `json:"body,required"` } @@ -425,7 +425,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:"-"` @@ -451,7 +451,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 ( @@ -498,7 +498,7 @@ func (r consumerUpdateResponseEnvelopeResultInfoJSON) RawJSON() string { } type ConsumerDeleteParams struct { - // Identifier. + // Identifier AccountID param.Field[string] `path:"account_id,required"` } @@ -506,7 +506,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:"-"` @@ -532,7 +532,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 ( @@ -579,7 +579,7 @@ func (r consumerDeleteResponseEnvelopeResultInfoJSON) RawJSON() string { } type ConsumerGetParams struct { - // Identifier. + // Identifier AccountID param.Field[string] `path:"account_id,required"` } @@ -587,7 +587,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:"-"` @@ -613,7 +613,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 60384219c07..0aa17e97400 100755 --- 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 18f9c57a9dd..adf7982ccc1 100755 --- a/queues/queue.go +++ b/queues/queue.go @@ -283,7 +283,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"` } @@ -296,7 +296,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:"-"` @@ -322,7 +322,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 ( @@ -369,7 +369,7 @@ func (r queueNewResponseEnvelopeResultInfoJSON) RawJSON() string { } type QueueUpdateParams struct { - // Identifier. + // Identifier AccountID param.Field[string] `path:"account_id,required"` Body interface{} `json:"body,required"` } @@ -382,7 +382,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:"-"` @@ -408,7 +408,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 ( @@ -455,12 +455,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"` } @@ -468,7 +468,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:"-"` @@ -494,7 +494,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 ( @@ -541,7 +541,7 @@ func (r queueDeleteResponseEnvelopeResultInfoJSON) RawJSON() string { } type QueueGetParams struct { - // Identifier. + // Identifier AccountID param.Field[string] `path:"account_id,required"` } @@ -549,7 +549,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:"-"` @@ -575,7 +575,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 (