-
Notifications
You must be signed in to change notification settings - Fork 631
/
Copy pathrule.go
232 lines (201 loc) · 6.89 KB
/
rule.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package snippets
import (
"context"
"errors"
"fmt"
"net/http"
"github.com/cloudflare/cloudflare-go/v4/internal/apijson"
"github.com/cloudflare/cloudflare-go/v4/internal/param"
"github.com/cloudflare/cloudflare-go/v4/internal/requestconfig"
"github.com/cloudflare/cloudflare-go/v4/option"
"github.com/cloudflare/cloudflare-go/v4/packages/pagination"
"github.com/cloudflare/cloudflare-go/v4/shared"
)
// RuleService contains methods and other services that help with interacting with
// the cloudflare API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewRuleService] method instead.
type RuleService struct {
Options []option.RequestOption
}
// NewRuleService generates a new service that applies the given options to each
// request. These options are applied after the parent client's options (if there
// is one), and before any request-specific options.
func NewRuleService(opts ...option.RequestOption) (r *RuleService) {
r = &RuleService{}
r.Options = opts
return
}
// Put Rules
func (r *RuleService) Update(ctx context.Context, params RuleUpdateParams, opts ...option.RequestOption) (res *pagination.SinglePage[RuleUpdateResponse], err error) {
var raw *http.Response
opts = append(r.Options[:], opts...)
opts = append([]option.RequestOption{option.WithResponseInto(&raw)}, opts...)
if params.ZoneID.Value == "" {
err = errors.New("missing required zone_id parameter")
return
}
path := fmt.Sprintf("zones/%s/snippets/snippet_rules", params.ZoneID)
cfg, err := requestconfig.NewRequestConfig(ctx, http.MethodPut, path, params, &res, opts...)
if err != nil {
return nil, err
}
err = cfg.Execute()
if err != nil {
return nil, err
}
res.SetPageConfig(cfg, raw)
return res, nil
}
// Put Rules
func (r *RuleService) UpdateAutoPaging(ctx context.Context, params RuleUpdateParams, opts ...option.RequestOption) *pagination.SinglePageAutoPager[RuleUpdateResponse] {
return pagination.NewSinglePageAutoPager(r.Update(ctx, params, opts...))
}
// Rules
func (r *RuleService) List(ctx context.Context, query RuleListParams, opts ...option.RequestOption) (res *pagination.SinglePage[RuleListResponse], err error) {
var raw *http.Response
opts = append(r.Options[:], opts...)
opts = append([]option.RequestOption{option.WithResponseInto(&raw)}, opts...)
if query.ZoneID.Value == "" {
err = errors.New("missing required zone_id parameter")
return
}
path := fmt.Sprintf("zones/%s/snippets/snippet_rules", query.ZoneID)
cfg, err := requestconfig.NewRequestConfig(ctx, http.MethodGet, path, nil, &res, opts...)
if err != nil {
return nil, err
}
err = cfg.Execute()
if err != nil {
return nil, err
}
res.SetPageConfig(cfg, raw)
return res, nil
}
// Rules
func (r *RuleService) ListAutoPaging(ctx context.Context, query RuleListParams, opts ...option.RequestOption) *pagination.SinglePageAutoPager[RuleListResponse] {
return pagination.NewSinglePageAutoPager(r.List(ctx, query, opts...))
}
// Delete All Rules
func (r *RuleService) Delete(ctx context.Context, body RuleDeleteParams, opts ...option.RequestOption) (res *RuleDeleteResponse, err error) {
opts = append(r.Options[:], opts...)
if body.ZoneID.Value == "" {
err = errors.New("missing required zone_id parameter")
return
}
path := fmt.Sprintf("zones/%s/snippets/snippet_rules", body.ZoneID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodDelete, path, nil, &res, opts...)
return
}
type RuleUpdateResponse struct {
Description string `json:"description"`
Enabled bool `json:"enabled"`
Expression string `json:"expression"`
// Snippet identifying name
SnippetName string `json:"snippet_name"`
JSON ruleUpdateResponseJSON `json:"-"`
}
// ruleUpdateResponseJSON contains the JSON metadata for the struct
// [RuleUpdateResponse]
type ruleUpdateResponseJSON struct {
Description apijson.Field
Enabled apijson.Field
Expression apijson.Field
SnippetName apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *RuleUpdateResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r ruleUpdateResponseJSON) RawJSON() string {
return r.raw
}
type RuleListResponse struct {
Description string `json:"description"`
Enabled bool `json:"enabled"`
Expression string `json:"expression"`
// Snippet identifying name
SnippetName string `json:"snippet_name"`
JSON ruleListResponseJSON `json:"-"`
}
// ruleListResponseJSON contains the JSON metadata for the struct
// [RuleListResponse]
type ruleListResponseJSON struct {
Description apijson.Field
Enabled apijson.Field
Expression apijson.Field
SnippetName apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *RuleListResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r ruleListResponseJSON) RawJSON() string {
return r.raw
}
type RuleDeleteResponse struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
// Whether the API call was successful
Success RuleDeleteResponseSuccess `json:"success,required"`
JSON ruleDeleteResponseJSON `json:"-"`
}
// ruleDeleteResponseJSON contains the JSON metadata for the struct
// [RuleDeleteResponse]
type ruleDeleteResponseJSON struct {
Errors apijson.Field
Messages apijson.Field
Success apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *RuleDeleteResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r ruleDeleteResponseJSON) RawJSON() string {
return r.raw
}
// Whether the API call was successful
type RuleDeleteResponseSuccess bool
const (
RuleDeleteResponseSuccessTrue RuleDeleteResponseSuccess = true
)
func (r RuleDeleteResponseSuccess) IsKnown() bool {
switch r {
case RuleDeleteResponseSuccessTrue:
return true
}
return false
}
type RuleUpdateParams struct {
// Identifier
ZoneID param.Field[string] `path:"zone_id,required"`
// List of snippet rules
Rules param.Field[[]RuleUpdateParamsRule] `json:"rules"`
}
func (r RuleUpdateParams) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type RuleUpdateParamsRule struct {
Description param.Field[string] `json:"description"`
Enabled param.Field[bool] `json:"enabled"`
Expression param.Field[string] `json:"expression"`
// Snippet identifying name
SnippetName param.Field[string] `json:"snippet_name"`
}
func (r RuleUpdateParamsRule) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type RuleListParams struct {
// Identifier
ZoneID param.Field[string] `path:"zone_id,required"`
}
type RuleDeleteParams struct {
// Identifier
ZoneID param.Field[string] `path:"zone_id,required"`
}