@opusdns/api 0.87.0 → 0.88.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/helpers/constants.ts +74 -1
- package/src/helpers/keys.ts +527 -865
- package/src/helpers/requests.d.ts +108 -158
- package/src/helpers/responses.d.ts +101 -100
- package/src/helpers/schemas-arrays.d.ts +15 -43
- package/src/helpers/schemas.d.ts +70 -102
- package/src/openapi.yaml +180 -247
- package/src/schema.d.ts +117 -181
package/src/schema.d.ts
CHANGED
|
@@ -282,7 +282,7 @@ export interface paths {
|
|
|
282
282
|
patch: operations["patch_zone_rrsets_v1_dns__zone_name__rrsets_patch"];
|
|
283
283
|
trace?: never;
|
|
284
284
|
};
|
|
285
|
-
"/v1/domain-forwards": {
|
|
285
|
+
"/v1/domain-forwards/{zone_name}/disable": {
|
|
286
286
|
parameters: {
|
|
287
287
|
query?: never;
|
|
288
288
|
header?: never;
|
|
@@ -295,31 +295,11 @@ export interface paths {
|
|
|
295
295
|
delete?: never;
|
|
296
296
|
options?: never;
|
|
297
297
|
head?: never;
|
|
298
|
-
/**
|
|
299
|
-
patch: operations["
|
|
300
|
-
trace?: never;
|
|
301
|
-
};
|
|
302
|
-
"/v1/domain-forwards/{zone_name}": {
|
|
303
|
-
parameters: {
|
|
304
|
-
query?: never;
|
|
305
|
-
header?: never;
|
|
306
|
-
path?: never;
|
|
307
|
-
cookie?: never;
|
|
308
|
-
};
|
|
309
|
-
/** Get Redirects */
|
|
310
|
-
get: operations["get_redirects_v1_domain_forwards__zone_name__get"];
|
|
311
|
-
/** Update Redirects */
|
|
312
|
-
put: operations["update_redirects_v1_domain_forwards__zone_name__put"];
|
|
313
|
-
/** Create Redirects */
|
|
314
|
-
post: operations["create_redirects_v1_domain_forwards__zone_name__post"];
|
|
315
|
-
/** Delete Redirects */
|
|
316
|
-
delete: operations["delete_redirects_v1_domain_forwards__zone_name__delete"];
|
|
317
|
-
options?: never;
|
|
318
|
-
head?: never;
|
|
319
|
-
patch?: never;
|
|
298
|
+
/** Disable Domain Forward */
|
|
299
|
+
patch: operations["disable_domain_forward_v1_domain_forwards__zone_name__disable_patch"];
|
|
320
300
|
trace?: never;
|
|
321
301
|
};
|
|
322
|
-
"/v1/domain-forwards/{zone_name}/
|
|
302
|
+
"/v1/domain-forwards/{zone_name}/enable": {
|
|
323
303
|
parameters: {
|
|
324
304
|
query?: never;
|
|
325
305
|
header?: never;
|
|
@@ -332,25 +312,28 @@ export interface paths {
|
|
|
332
312
|
delete?: never;
|
|
333
313
|
options?: never;
|
|
334
314
|
head?: never;
|
|
335
|
-
/**
|
|
336
|
-
patch: operations["
|
|
315
|
+
/** Enable Domain Forward */
|
|
316
|
+
patch: operations["enable_domain_forward_v1_domain_forwards__zone_name__enable_patch"];
|
|
337
317
|
trace?: never;
|
|
338
318
|
};
|
|
339
|
-
"/v1/domain-forwards/{zone_name}/
|
|
319
|
+
"/v1/domain-forwards/{zone_name}/{request_protocol}": {
|
|
340
320
|
parameters: {
|
|
341
321
|
query?: never;
|
|
342
322
|
header?: never;
|
|
343
323
|
path?: never;
|
|
344
324
|
cookie?: never;
|
|
345
325
|
};
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
326
|
+
/** Get Domain Forward */
|
|
327
|
+
get: operations["get_domain_forward_v1_domain_forwards__zone_name___request_protocol__get"];
|
|
328
|
+
/** Update Domain Forward */
|
|
329
|
+
put: operations["update_domain_forward_v1_domain_forwards__zone_name___request_protocol__put"];
|
|
330
|
+
/** Create Domain Forward */
|
|
331
|
+
post: operations["create_domain_forward_v1_domain_forwards__zone_name___request_protocol__post"];
|
|
332
|
+
/** Delete Domain Forward */
|
|
333
|
+
delete: operations["delete_domain_forward_v1_domain_forwards__zone_name___request_protocol__delete"];
|
|
350
334
|
options?: never;
|
|
351
335
|
head?: never;
|
|
352
|
-
|
|
353
|
-
patch: operations["enable_domain_forward_v1_domain_forwards__zone_name__enable_patch"];
|
|
336
|
+
patch?: never;
|
|
354
337
|
trace?: never;
|
|
355
338
|
};
|
|
356
339
|
"/v1/domain-search/suggest": {
|
|
@@ -2248,6 +2231,33 @@ export interface components {
|
|
|
2248
2231
|
*/
|
|
2249
2232
|
updated_on?: Date;
|
|
2250
2233
|
};
|
|
2234
|
+
/** DomainForward */
|
|
2235
|
+
DomainForward: {
|
|
2236
|
+
/**
|
|
2237
|
+
* Created On
|
|
2238
|
+
* Format: date-time
|
|
2239
|
+
*/
|
|
2240
|
+
created_on: Date;
|
|
2241
|
+
/** Redirects */
|
|
2242
|
+
redirects: components["schemas"]["HttpRedirect"][];
|
|
2243
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
2244
|
+
/**
|
|
2245
|
+
* Updated On
|
|
2246
|
+
* Format: date-time
|
|
2247
|
+
*/
|
|
2248
|
+
updated_on: Date;
|
|
2249
|
+
/** Wildcard */
|
|
2250
|
+
wildcard: boolean;
|
|
2251
|
+
/** Zone Name */
|
|
2252
|
+
zone_name: string;
|
|
2253
|
+
};
|
|
2254
|
+
/** DomainForwardRequest */
|
|
2255
|
+
DomainForwardRequest: {
|
|
2256
|
+
/** Redirects */
|
|
2257
|
+
redirects: components["schemas"]["HttpRedirect"][];
|
|
2258
|
+
/** Wildcard */
|
|
2259
|
+
wildcard: boolean;
|
|
2260
|
+
};
|
|
2251
2261
|
/** DomainLifecycleBase */
|
|
2252
2262
|
DomainLifecycleBase: {
|
|
2253
2263
|
/**
|
|
@@ -2864,6 +2874,26 @@ export interface components {
|
|
|
2864
2874
|
/** Problem type */
|
|
2865
2875
|
type: string;
|
|
2866
2876
|
};
|
|
2877
|
+
/**
|
|
2878
|
+
* HttpProtocol
|
|
2879
|
+
* @enum {string}
|
|
2880
|
+
*/
|
|
2881
|
+
HttpProtocol: "http" | "https";
|
|
2882
|
+
/** HttpRedirect */
|
|
2883
|
+
HttpRedirect: {
|
|
2884
|
+
redirect_code: components["schemas"]["RedirectCode"];
|
|
2885
|
+
/** Request Path */
|
|
2886
|
+
request_path: string;
|
|
2887
|
+
/** Request Subdomain */
|
|
2888
|
+
request_subdomain?: string | null;
|
|
2889
|
+
/** Target Domain */
|
|
2890
|
+
target_domain: string;
|
|
2891
|
+
/** Target Path */
|
|
2892
|
+
target_path: string;
|
|
2893
|
+
target_protocol: components["schemas"]["HttpProtocol"];
|
|
2894
|
+
/** Target Subdomain */
|
|
2895
|
+
target_subdomain?: string | null;
|
|
2896
|
+
};
|
|
2867
2897
|
/** IdnBase */
|
|
2868
2898
|
IdnBase: {
|
|
2869
2899
|
/**
|
|
@@ -3567,12 +3597,6 @@ export interface components {
|
|
|
3567
3597
|
/** Results */
|
|
3568
3598
|
results: components["schemas"]["Organization"][];
|
|
3569
3599
|
};
|
|
3570
|
-
/** Pagination[Redirect] */
|
|
3571
|
-
Pagination_Redirect_: {
|
|
3572
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
3573
|
-
/** Results */
|
|
3574
|
-
results: components["schemas"]["Redirect"][];
|
|
3575
|
-
};
|
|
3576
3600
|
/** Pagination[User] */
|
|
3577
3601
|
Pagination_User_: {
|
|
3578
3602
|
pagination: components["schemas"]["PaginationMetadata"];
|
|
@@ -3717,73 +3741,11 @@ export interface components {
|
|
|
3717
3741
|
*/
|
|
3718
3742
|
rdap_server?: string | null;
|
|
3719
3743
|
};
|
|
3720
|
-
/**
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
request_domain: string;
|
|
3726
|
-
/** Request Path */
|
|
3727
|
-
request_path: string;
|
|
3728
|
-
/** Request Protocol */
|
|
3729
|
-
request_protocol: string;
|
|
3730
|
-
/** Request Subdomain */
|
|
3731
|
-
request_subdomain: string;
|
|
3732
|
-
/** Target Domain */
|
|
3733
|
-
target_domain: string;
|
|
3734
|
-
/** Target Path */
|
|
3735
|
-
target_path: string;
|
|
3736
|
-
/** Target Protocol */
|
|
3737
|
-
target_protocol: string;
|
|
3738
|
-
/** Target Subdomain */
|
|
3739
|
-
target_subdomain: string;
|
|
3740
|
-
};
|
|
3741
|
-
/** RedirectPatchOp */
|
|
3742
|
-
RedirectPatchOp: {
|
|
3743
|
-
op: components["schemas"]["PatchOp"];
|
|
3744
|
-
/** Redirect */
|
|
3745
|
-
redirect: components["schemas"]["Redirect"] | components["schemas"]["RedirectRemove"];
|
|
3746
|
-
};
|
|
3747
|
-
/** RedirectPatchOps */
|
|
3748
|
-
RedirectPatchOps: {
|
|
3749
|
-
/** Ops */
|
|
3750
|
-
ops: components["schemas"]["RedirectPatchOp"][];
|
|
3751
|
-
};
|
|
3752
|
-
/** RedirectRemove */
|
|
3753
|
-
RedirectRemove: {
|
|
3754
|
-
/** Request Domain */
|
|
3755
|
-
request_domain: string;
|
|
3756
|
-
/** Request Path */
|
|
3757
|
-
request_path: string;
|
|
3758
|
-
/** Request Protocol */
|
|
3759
|
-
request_protocol: string;
|
|
3760
|
-
/** Request Subdomain */
|
|
3761
|
-
request_subdomain: string;
|
|
3762
|
-
};
|
|
3763
|
-
/** RedirectSet */
|
|
3764
|
-
RedirectSet: {
|
|
3765
|
-
/** Redirects */
|
|
3766
|
-
redirects: components["schemas"]["RedirectUpdate"][];
|
|
3767
|
-
};
|
|
3768
|
-
/** RedirectUpdate */
|
|
3769
|
-
RedirectUpdate: {
|
|
3770
|
-
/** Redirect Code */
|
|
3771
|
-
redirect_code: number;
|
|
3772
|
-
/** Request Path */
|
|
3773
|
-
request_path: string;
|
|
3774
|
-
/** Request Protocol */
|
|
3775
|
-
request_protocol: string;
|
|
3776
|
-
/** Request Subdomain */
|
|
3777
|
-
request_subdomain: string;
|
|
3778
|
-
/** Target Domain */
|
|
3779
|
-
target_domain: string;
|
|
3780
|
-
/** Target Path */
|
|
3781
|
-
target_path: string;
|
|
3782
|
-
/** Target Protocol */
|
|
3783
|
-
target_protocol: string;
|
|
3784
|
-
/** Target Subdomain */
|
|
3785
|
-
target_subdomain: string;
|
|
3786
|
-
};
|
|
3744
|
+
/**
|
|
3745
|
+
* RedirectCode
|
|
3746
|
+
* @enum {integer}
|
|
3747
|
+
*/
|
|
3748
|
+
RedirectCode: 301 | 302 | 307 | 308;
|
|
3787
3749
|
/**
|
|
3788
3750
|
* RegistrantChangeType
|
|
3789
3751
|
* @enum {string}
|
|
@@ -5721,18 +5683,17 @@ export interface operations {
|
|
|
5721
5683
|
};
|
|
5722
5684
|
};
|
|
5723
5685
|
};
|
|
5724
|
-
|
|
5686
|
+
disable_domain_forward_v1_domain_forwards__zone_name__disable_patch: {
|
|
5725
5687
|
parameters: {
|
|
5726
5688
|
query?: never;
|
|
5727
5689
|
header?: never;
|
|
5728
|
-
path
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
requestBody: {
|
|
5732
|
-
content: {
|
|
5733
|
-
"application/json": components["schemas"]["RedirectPatchOps"];
|
|
5690
|
+
path: {
|
|
5691
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5692
|
+
zone_name: string;
|
|
5734
5693
|
};
|
|
5694
|
+
cookie?: never;
|
|
5735
5695
|
};
|
|
5696
|
+
requestBody?: never;
|
|
5736
5697
|
responses: {
|
|
5737
5698
|
/** @description Successful Response */
|
|
5738
5699
|
204: {
|
|
@@ -5752,11 +5713,10 @@ export interface operations {
|
|
|
5752
5713
|
};
|
|
5753
5714
|
};
|
|
5754
5715
|
};
|
|
5755
|
-
|
|
5716
|
+
enable_domain_forward_v1_domain_forwards__zone_name__enable_patch: {
|
|
5756
5717
|
parameters: {
|
|
5757
5718
|
query?: {
|
|
5758
|
-
|
|
5759
|
-
page_size?: number;
|
|
5719
|
+
auto_create_zone?: boolean;
|
|
5760
5720
|
};
|
|
5761
5721
|
header?: never;
|
|
5762
5722
|
path: {
|
|
@@ -5768,13 +5728,11 @@ export interface operations {
|
|
|
5768
5728
|
requestBody?: never;
|
|
5769
5729
|
responses: {
|
|
5770
5730
|
/** @description Successful Response */
|
|
5771
|
-
|
|
5731
|
+
204: {
|
|
5772
5732
|
headers: {
|
|
5773
5733
|
[name: string]: unknown;
|
|
5774
5734
|
};
|
|
5775
|
-
content
|
|
5776
|
-
"application/json": components["schemas"]["Pagination_Redirect_"];
|
|
5777
|
-
};
|
|
5735
|
+
content?: never;
|
|
5778
5736
|
};
|
|
5779
5737
|
/** @description Validation Error */
|
|
5780
5738
|
422: {
|
|
@@ -5787,43 +5745,26 @@ export interface operations {
|
|
|
5787
5745
|
};
|
|
5788
5746
|
};
|
|
5789
5747
|
};
|
|
5790
|
-
|
|
5748
|
+
get_domain_forward_v1_domain_forwards__zone_name___request_protocol__get: {
|
|
5791
5749
|
parameters: {
|
|
5792
5750
|
query?: never;
|
|
5793
5751
|
header?: never;
|
|
5794
5752
|
path: {
|
|
5753
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5795
5754
|
/** @description DNS zone name (trailing dot optional) */
|
|
5796
5755
|
zone_name: string;
|
|
5797
5756
|
};
|
|
5798
5757
|
cookie?: never;
|
|
5799
5758
|
};
|
|
5800
|
-
requestBody
|
|
5801
|
-
content: {
|
|
5802
|
-
"application/json": components["schemas"]["RedirectSet"];
|
|
5803
|
-
};
|
|
5804
|
-
};
|
|
5759
|
+
requestBody?: never;
|
|
5805
5760
|
responses: {
|
|
5806
5761
|
/** @description Successful Response */
|
|
5807
|
-
|
|
5808
|
-
headers: {
|
|
5809
|
-
[name: string]: unknown;
|
|
5810
|
-
};
|
|
5811
|
-
content?: never;
|
|
5812
|
-
};
|
|
5813
|
-
/** @description Conflict */
|
|
5814
|
-
409: {
|
|
5762
|
+
200: {
|
|
5815
5763
|
headers: {
|
|
5816
5764
|
[name: string]: unknown;
|
|
5817
5765
|
};
|
|
5818
5766
|
content: {
|
|
5819
|
-
|
|
5820
|
-
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_NOT_EXISTS",
|
|
5821
|
-
* "detail": "Redirect does not exist for A, d, d, i, t, i, o, n, a, l, , e, r, r, o, r, , c, o, n, t, e, x, t, .",
|
|
5822
|
-
* "status": 409,
|
|
5823
|
-
* "title": "Domain Forward Error",
|
|
5824
|
-
* "type": "domain-forward-redirect-not-exists"
|
|
5825
|
-
* } */
|
|
5826
|
-
"application/problem+json": components["schemas"]["Problem"];
|
|
5767
|
+
"application/json": components["schemas"]["DomainForward"];
|
|
5827
5768
|
};
|
|
5828
5769
|
};
|
|
5829
5770
|
/** @description Validation Error */
|
|
@@ -5837,11 +5778,12 @@ export interface operations {
|
|
|
5837
5778
|
};
|
|
5838
5779
|
};
|
|
5839
5780
|
};
|
|
5840
|
-
|
|
5781
|
+
update_domain_forward_v1_domain_forwards__zone_name___request_protocol__put: {
|
|
5841
5782
|
parameters: {
|
|
5842
5783
|
query?: never;
|
|
5843
5784
|
header?: never;
|
|
5844
5785
|
path: {
|
|
5786
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5845
5787
|
/** @description DNS zone name (trailing dot optional) */
|
|
5846
5788
|
zone_name: string;
|
|
5847
5789
|
};
|
|
@@ -5849,16 +5791,18 @@ export interface operations {
|
|
|
5849
5791
|
};
|
|
5850
5792
|
requestBody: {
|
|
5851
5793
|
content: {
|
|
5852
|
-
"application/json": components["schemas"]["
|
|
5794
|
+
"application/json": components["schemas"]["DomainForwardRequest"];
|
|
5853
5795
|
};
|
|
5854
5796
|
};
|
|
5855
5797
|
responses: {
|
|
5856
5798
|
/** @description Successful Response */
|
|
5857
|
-
|
|
5799
|
+
200: {
|
|
5858
5800
|
headers: {
|
|
5859
5801
|
[name: string]: unknown;
|
|
5860
5802
|
};
|
|
5861
|
-
content
|
|
5803
|
+
content: {
|
|
5804
|
+
"application/json": components["schemas"]["DomainForward"];
|
|
5805
|
+
};
|
|
5862
5806
|
};
|
|
5863
5807
|
/** @description Conflict */
|
|
5864
5808
|
409: {
|
|
@@ -5867,11 +5811,11 @@ export interface operations {
|
|
|
5867
5811
|
};
|
|
5868
5812
|
content: {
|
|
5869
5813
|
/** @example {
|
|
5870
|
-
* "code": "
|
|
5871
|
-
* "detail": "Redirect
|
|
5814
|
+
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_NOT_EXISTS",
|
|
5815
|
+
* "detail": "Redirect does not exist for A, d, d, i, t, i, o, n, a, l, , e, r, r, o, r, , c, o, n, t, e, x, t, .",
|
|
5872
5816
|
* "status": 409,
|
|
5873
5817
|
* "title": "Domain Forward Error",
|
|
5874
|
-
* "type": "domain-forward-redirect-
|
|
5818
|
+
* "type": "domain-forward-redirect-not-exists"
|
|
5875
5819
|
* } */
|
|
5876
5820
|
"application/problem+json": components["schemas"]["Problem"];
|
|
5877
5821
|
};
|
|
@@ -5887,54 +5831,47 @@ export interface operations {
|
|
|
5887
5831
|
};
|
|
5888
5832
|
};
|
|
5889
5833
|
};
|
|
5890
|
-
|
|
5834
|
+
create_domain_forward_v1_domain_forwards__zone_name___request_protocol__post: {
|
|
5891
5835
|
parameters: {
|
|
5892
5836
|
query?: never;
|
|
5893
5837
|
header?: never;
|
|
5894
5838
|
path: {
|
|
5839
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5895
5840
|
/** @description DNS zone name (trailing dot optional) */
|
|
5896
5841
|
zone_name: string;
|
|
5897
5842
|
};
|
|
5898
5843
|
cookie?: never;
|
|
5899
5844
|
};
|
|
5900
|
-
requestBody
|
|
5845
|
+
requestBody: {
|
|
5846
|
+
content: {
|
|
5847
|
+
"application/json": components["schemas"]["DomainForwardRequest"];
|
|
5848
|
+
};
|
|
5849
|
+
};
|
|
5901
5850
|
responses: {
|
|
5902
5851
|
/** @description Successful Response */
|
|
5903
|
-
|
|
5904
|
-
headers: {
|
|
5905
|
-
[name: string]: unknown;
|
|
5906
|
-
};
|
|
5907
|
-
content?: never;
|
|
5908
|
-
};
|
|
5909
|
-
/** @description Validation Error */
|
|
5910
|
-
422: {
|
|
5852
|
+
201: {
|
|
5911
5853
|
headers: {
|
|
5912
5854
|
[name: string]: unknown;
|
|
5913
5855
|
};
|
|
5914
5856
|
content: {
|
|
5915
|
-
"application/
|
|
5857
|
+
"application/json": components["schemas"]["DomainForward"];
|
|
5916
5858
|
};
|
|
5917
5859
|
};
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
disable_domain_forward_v1_domain_forwards__zone_name__disable_patch: {
|
|
5921
|
-
parameters: {
|
|
5922
|
-
query?: never;
|
|
5923
|
-
header?: never;
|
|
5924
|
-
path: {
|
|
5925
|
-
/** @description DNS zone name (trailing dot optional) */
|
|
5926
|
-
zone_name: string;
|
|
5927
|
-
};
|
|
5928
|
-
cookie?: never;
|
|
5929
|
-
};
|
|
5930
|
-
requestBody?: never;
|
|
5931
|
-
responses: {
|
|
5932
|
-
/** @description Successful Response */
|
|
5933
|
-
204: {
|
|
5860
|
+
/** @description Conflict */
|
|
5861
|
+
409: {
|
|
5934
5862
|
headers: {
|
|
5935
5863
|
[name: string]: unknown;
|
|
5936
5864
|
};
|
|
5937
|
-
content
|
|
5865
|
+
content: {
|
|
5866
|
+
/** @example {
|
|
5867
|
+
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_ALREADY_EXISTS",
|
|
5868
|
+
* "detail": "Redirect already exists for A, d, d, i, t, i, o, n, a, l, , e, r, r, o, r, , c, o, n, t, e, x, t, .",
|
|
5869
|
+
* "status": 409,
|
|
5870
|
+
* "title": "Domain Forward Error",
|
|
5871
|
+
* "type": "domain-forward-redirect-already-exists"
|
|
5872
|
+
* } */
|
|
5873
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
5874
|
+
};
|
|
5938
5875
|
};
|
|
5939
5876
|
/** @description Validation Error */
|
|
5940
5877
|
422: {
|
|
@@ -5947,13 +5884,12 @@ export interface operations {
|
|
|
5947
5884
|
};
|
|
5948
5885
|
};
|
|
5949
5886
|
};
|
|
5950
|
-
|
|
5887
|
+
delete_domain_forward_v1_domain_forwards__zone_name___request_protocol__delete: {
|
|
5951
5888
|
parameters: {
|
|
5952
|
-
query?:
|
|
5953
|
-
auto_create_zone?: boolean;
|
|
5954
|
-
};
|
|
5889
|
+
query?: never;
|
|
5955
5890
|
header?: never;
|
|
5956
5891
|
path: {
|
|
5892
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5957
5893
|
/** @description DNS zone name (trailing dot optional) */
|
|
5958
5894
|
zone_name: string;
|
|
5959
5895
|
};
|