@@ -171,9 +171,6 @@ type BucketDomainCustomNewResponse struct {
171
171
Domain string `json:"domain,required"`
172
172
// Whether this bucket is publicly accessible at the specified custom domain.
173
173
Enabled bool `json:"enabled,required"`
174
- // An allowlist of ciphers for TLS termination. These ciphers must be in the
175
- // BoringSSL format.
176
- Ciphers []string `json:"ciphers"`
177
174
// Minimum TLS Version the custom domain will accept for incoming connections. If
178
175
// not set, defaults to 1.0.
179
176
MinTLS BucketDomainCustomNewResponseMinTLS `json:"minTLS"`
@@ -185,7 +182,6 @@ type BucketDomainCustomNewResponse struct {
185
182
type bucketDomainCustomNewResponseJSON struct {
186
183
Domain apijson.Field
187
184
Enabled apijson.Field
188
- Ciphers apijson.Field
189
185
MinTLS apijson.Field
190
186
raw string
191
187
ExtraFields map [string ]apijson.Field
@@ -221,9 +217,6 @@ func (r BucketDomainCustomNewResponseMinTLS) IsKnown() bool {
221
217
type BucketDomainCustomUpdateResponse struct {
222
218
// Domain name of the affected custom domain.
223
219
Domain string `json:"domain,required"`
224
- // An allowlist of ciphers for TLS termination. These ciphers must be in the
225
- // BoringSSL format.
226
- Ciphers []string `json:"ciphers"`
227
220
// Whether this bucket is publicly accessible at the specified custom domain.
228
221
Enabled bool `json:"enabled"`
229
222
// Minimum TLS Version the custom domain will accept for incoming connections. If
@@ -236,7 +229,6 @@ type BucketDomainCustomUpdateResponse struct {
236
229
// [BucketDomainCustomUpdateResponse]
237
230
type bucketDomainCustomUpdateResponseJSON struct {
238
231
Domain apijson.Field
239
- Ciphers apijson.Field
240
232
Enabled apijson.Field
241
233
MinTLS apijson.Field
242
234
raw string
@@ -297,9 +289,6 @@ type BucketDomainCustomListResponseDomain struct {
297
289
// Whether this bucket is publicly accessible at the specified custom domain.
298
290
Enabled bool `json:"enabled,required"`
299
291
Status BucketDomainCustomListResponseDomainsStatus `json:"status,required"`
300
- // An allowlist of ciphers for TLS termination. These ciphers must be in the
301
- // BoringSSL format.
302
- Ciphers []string `json:"ciphers"`
303
292
// Minimum TLS Version the custom domain will accept for incoming connections. If
304
293
// not set, defaults to 1.0.
305
294
MinTLS BucketDomainCustomListResponseDomainsMinTLS `json:"minTLS"`
@@ -316,7 +305,6 @@ type bucketDomainCustomListResponseDomainJSON struct {
316
305
Domain apijson.Field
317
306
Enabled apijson.Field
318
307
Status apijson.Field
319
- Ciphers apijson.Field
320
308
MinTLS apijson.Field
321
309
ZoneID apijson.Field
322
310
ZoneName apijson.Field
@@ -444,9 +432,6 @@ type BucketDomainCustomGetResponse struct {
444
432
// Whether this bucket is publicly accessible at the specified custom domain.
445
433
Enabled bool `json:"enabled,required"`
446
434
Status BucketDomainCustomGetResponseStatus `json:"status,required"`
447
- // An allowlist of ciphers for TLS termination. These ciphers must be in the
448
- // BoringSSL format.
449
- Ciphers []string `json:"ciphers"`
450
435
// Minimum TLS Version the custom domain will accept for incoming connections. If
451
436
// not set, defaults to 1.0.
452
437
MinTLS BucketDomainCustomGetResponseMinTLS `json:"minTLS"`
@@ -463,7 +448,6 @@ type bucketDomainCustomGetResponseJSON struct {
463
448
Domain apijson.Field
464
449
Enabled apijson.Field
465
450
Status apijson.Field
466
- Ciphers apijson.Field
467
451
MinTLS apijson.Field
468
452
ZoneID apijson.Field
469
453
ZoneName apijson.Field
@@ -573,9 +557,6 @@ type BucketDomainCustomNewParams struct {
573
557
Enabled param.Field [bool ] `json:"enabled,required"`
574
558
// Zone ID of the custom domain.
575
559
ZoneID param.Field [string ] `json:"zoneId,required"`
576
- // An allowlist of ciphers for TLS termination. These ciphers must be in the
577
- // BoringSSL format.
578
- Ciphers param.Field [[]string ] `json:"ciphers"`
579
560
// Minimum TLS Version the custom domain will accept for incoming connections. If
580
561
// not set, defaults to 1.0.
581
562
MinTLS param.Field [BucketDomainCustomNewParamsMinTLS ] `json:"minTLS"`
@@ -669,9 +650,6 @@ func (r BucketDomainCustomNewResponseEnvelopeSuccess) IsKnown() bool {
669
650
type BucketDomainCustomUpdateParams struct {
670
651
// Account ID.
671
652
AccountID param.Field [string ] `path:"account_id,required"`
672
- // An allowlist of ciphers for TLS termination. These ciphers must be in the
673
- // BoringSSL format.
674
- Ciphers param.Field [[]string ] `json:"ciphers"`
675
653
// Whether to enable public bucket access at the specified custom domain.
676
654
Enabled param.Field [bool ] `json:"enabled"`
677
655
// Minimum TLS Version the custom domain will accept for incoming connections. If
0 commit comments