@opusdns/api 1.29.0 → 1.31.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/keys.ts +49 -0
- package/src/helpers/schemas.d.ts +5 -0
- package/src/openapi.yaml +130 -4
- package/src/schema.d.ts +67 -4
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -82,6 +82,11 @@ import type {
|
|
|
82
82
|
DnsZonePatchRrsetsWorkerPayload,
|
|
83
83
|
DnsZoneRecordsPatchOps,
|
|
84
84
|
DnsZone,
|
|
85
|
+
DnsZoneRestampVanityNsBulkCommand,
|
|
86
|
+
DnsZoneRestampVanityNsBulkInstance,
|
|
87
|
+
DnsZoneRestampVanityNsBulkPayload,
|
|
88
|
+
DnsZoneRestampVanityNsBulkTemplate,
|
|
89
|
+
DnsZoneRestampVanityNsWorkerPayload,
|
|
85
90
|
DnsZoneRrsetsCreate,
|
|
86
91
|
DnsZoneRrsetsPatchOps,
|
|
87
92
|
DnsZoneSummary,
|
|
@@ -1487,6 +1492,50 @@ export const KEYS_DNS_ZONE = [
|
|
|
1487
1492
|
KEY_DNS_ZONE_VANITY_NAMESERVER_SET_ID,
|
|
1488
1493
|
] as const satisfies (keyof DnsZone)[];
|
|
1489
1494
|
|
|
1495
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_COMMAND = 'command' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1496
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1497
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1498
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_VERSION = 'version' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1499
|
+
|
|
1500
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND = [
|
|
1501
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_COMMAND,
|
|
1502
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_IDEMPOTENCY_KEY,
|
|
1503
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_PAYLOAD,
|
|
1504
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_VERSION,
|
|
1505
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkCommand)[];
|
|
1506
|
+
|
|
1507
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_NAME = 'name' satisfies keyof DnsZoneRestampVanityNsBulkInstance;
|
|
1508
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_VANITY_NAMESERVER_SET_ID = 'vanity_nameserver_set_id' satisfies keyof DnsZoneRestampVanityNsBulkInstance;
|
|
1509
|
+
|
|
1510
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE = [
|
|
1511
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_NAME,
|
|
1512
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_VANITY_NAMESERVER_SET_ID,
|
|
1513
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkInstance)[];
|
|
1514
|
+
|
|
1515
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof DnsZoneRestampVanityNsBulkPayload;
|
|
1516
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_TEMPLATE = 'template' satisfies keyof DnsZoneRestampVanityNsBulkPayload;
|
|
1517
|
+
|
|
1518
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD = [
|
|
1519
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_INSTANCES,
|
|
1520
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_TEMPLATE,
|
|
1521
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkPayload)[];
|
|
1522
|
+
|
|
1523
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_TEMPLATE_VANITY_NAMESERVER_SET_ID = 'vanity_nameserver_set_id' satisfies keyof DnsZoneRestampVanityNsBulkTemplate;
|
|
1524
|
+
|
|
1525
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_TEMPLATE = [
|
|
1526
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_TEMPLATE_VANITY_NAMESERVER_SET_ID,
|
|
1527
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkTemplate)[];
|
|
1528
|
+
|
|
1529
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_OPERATION = 'operation' satisfies keyof DnsZoneRestampVanityNsWorkerPayload;
|
|
1530
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_TYPE = 'type' satisfies keyof DnsZoneRestampVanityNsWorkerPayload;
|
|
1531
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_ZONE = 'zone' satisfies keyof DnsZoneRestampVanityNsWorkerPayload;
|
|
1532
|
+
|
|
1533
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD = [
|
|
1534
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_OPERATION,
|
|
1535
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_TYPE,
|
|
1536
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_ZONE,
|
|
1537
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsWorkerPayload)[];
|
|
1538
|
+
|
|
1490
1539
|
export const KEY_DNS_ZONE_RRSETS_CREATE_RRSETS = 'rrsets' satisfies keyof DnsZoneRrsetsCreate;
|
|
1491
1540
|
|
|
1492
1541
|
export const KEYS_DNS_ZONE_RRSETS_CREATE = [
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -109,6 +109,11 @@ export type DnsZonePatchRrsetsBulkPayload = components['schemas']['DnsZonePatchR
|
|
|
109
109
|
export type DnsZonePatchRrsetsWorkerPayload = components['schemas']['DnsZonePatchRrsetsWorkerPayload'];
|
|
110
110
|
export type DnsZoneRecordsPatchOps = components['schemas']['DnsZoneRecordsPatchOps'];
|
|
111
111
|
export type DnsZone = components['schemas']['DnsZoneResponse'];
|
|
112
|
+
export type DnsZoneRestampVanityNsBulkCommand = components['schemas']['DnsZoneRestampVanityNsBulkCommand'];
|
|
113
|
+
export type DnsZoneRestampVanityNsBulkInstance = components['schemas']['DnsZoneRestampVanityNsBulkInstance'];
|
|
114
|
+
export type DnsZoneRestampVanityNsBulkPayload = components['schemas']['DnsZoneRestampVanityNsBulkPayload'];
|
|
115
|
+
export type DnsZoneRestampVanityNsBulkTemplate = components['schemas']['DnsZoneRestampVanityNsBulkTemplate'];
|
|
116
|
+
export type DnsZoneRestampVanityNsWorkerPayload = components['schemas']['DnsZoneRestampVanityNsWorkerPayload'];
|
|
112
117
|
export type DnsZoneRrsetsCreate = components['schemas']['DnsZoneRrsetsCreate'];
|
|
113
118
|
export type DnsZoneRrsetsPatchOps = components['schemas']['DnsZoneRrsetsPatchOps'];
|
|
114
119
|
export type DnsZoneSummary = components['schemas']['DnsZoneSummary'];
|
package/src/openapi.yaml
CHANGED
|
@@ -3038,6 +3038,106 @@ components:
|
|
|
3038
3038
|
- dns_zone_id
|
|
3039
3039
|
title: DnsZoneResponse
|
|
3040
3040
|
type: object
|
|
3041
|
+
DnsZoneRestampVanityNsBulkCommand:
|
|
3042
|
+
properties:
|
|
3043
|
+
command:
|
|
3044
|
+
const: dns_zone_restamp_vanity_ns_bulk
|
|
3045
|
+
default: dns_zone_restamp_vanity_ns_bulk
|
|
3046
|
+
title: Command
|
|
3047
|
+
type: string
|
|
3048
|
+
idempotency_key:
|
|
3049
|
+
anyOf:
|
|
3050
|
+
- type: string
|
|
3051
|
+
- type: 'null'
|
|
3052
|
+
description: Idempotency key for this bulk command
|
|
3053
|
+
title: Idempotency Key
|
|
3054
|
+
payload:
|
|
3055
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkPayload'
|
|
3056
|
+
description: Bulk DNS zone vanity NS restamp payload
|
|
3057
|
+
version:
|
|
3058
|
+
default: v1
|
|
3059
|
+
description: Command version
|
|
3060
|
+
title: Version
|
|
3061
|
+
type: string
|
|
3062
|
+
required:
|
|
3063
|
+
- payload
|
|
3064
|
+
title: DnsZoneRestampVanityNsBulkCommand
|
|
3065
|
+
type: object
|
|
3066
|
+
DnsZoneRestampVanityNsBulkInstance:
|
|
3067
|
+
properties:
|
|
3068
|
+
name:
|
|
3069
|
+
description: The DNS zone name to restamp (e.g., example.com)
|
|
3070
|
+
title: Name
|
|
3071
|
+
type: string
|
|
3072
|
+
vanity_nameserver_set_id:
|
|
3073
|
+
anyOf:
|
|
3074
|
+
- examples:
|
|
3075
|
+
- vns_01h45ytscbebyvny4gc8cr8ma2
|
|
3076
|
+
format: typeid
|
|
3077
|
+
pattern: ^vns_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3078
|
+
type: string
|
|
3079
|
+
x-typeid-prefix: vns
|
|
3080
|
+
- type: 'null'
|
|
3081
|
+
description: 'Override the template''s set for this zone: a set id to brand
|
|
3082
|
+
with, or null to unbrand this zone to system defaults. Omit the field
|
|
3083
|
+
entirely to inherit the template''s value.'
|
|
3084
|
+
title: Vanity Nameserver Set Id
|
|
3085
|
+
required:
|
|
3086
|
+
- name
|
|
3087
|
+
title: DnsZoneRestampVanityNsBulkInstance
|
|
3088
|
+
type: object
|
|
3089
|
+
DnsZoneRestampVanityNsBulkPayload:
|
|
3090
|
+
properties:
|
|
3091
|
+
instances:
|
|
3092
|
+
description: List of zones to restamp (1-1000)
|
|
3093
|
+
items:
|
|
3094
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkInstance'
|
|
3095
|
+
maxItems: 1000
|
|
3096
|
+
minItems: 1
|
|
3097
|
+
title: Instances
|
|
3098
|
+
type: array
|
|
3099
|
+
template:
|
|
3100
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkTemplate'
|
|
3101
|
+
description: Shared vanity NS set for all zones
|
|
3102
|
+
required:
|
|
3103
|
+
- template
|
|
3104
|
+
- instances
|
|
3105
|
+
title: DnsZoneRestampVanityNsBulkPayload
|
|
3106
|
+
type: object
|
|
3107
|
+
DnsZoneRestampVanityNsBulkTemplate:
|
|
3108
|
+
properties:
|
|
3109
|
+
vanity_nameserver_set_id:
|
|
3110
|
+
anyOf:
|
|
3111
|
+
- examples:
|
|
3112
|
+
- vns_01h45ytscbebyvny4gc8cr8ma2
|
|
3113
|
+
format: typeid
|
|
3114
|
+
pattern: ^vns_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3115
|
+
type: string
|
|
3116
|
+
x-typeid-prefix: vns
|
|
3117
|
+
- type: 'null'
|
|
3118
|
+
description: Vanity NS set to restamp every zone's apex NS + SOA with, or
|
|
3119
|
+
null to unbrand all zones back to OpusDNS system default nameservers.
|
|
3120
|
+
An instance may override this.
|
|
3121
|
+
title: Vanity Nameserver Set Id
|
|
3122
|
+
title: DnsZoneRestampVanityNsBulkTemplate
|
|
3123
|
+
type: object
|
|
3124
|
+
DnsZoneRestampVanityNsWorkerPayload:
|
|
3125
|
+
properties:
|
|
3126
|
+
operation:
|
|
3127
|
+
title: Operation
|
|
3128
|
+
type: string
|
|
3129
|
+
type:
|
|
3130
|
+
const: dns_zone_restamp_vanity_ns_bulk
|
|
3131
|
+
title: Type
|
|
3132
|
+
type: string
|
|
3133
|
+
zone:
|
|
3134
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkInstance'
|
|
3135
|
+
required:
|
|
3136
|
+
- type
|
|
3137
|
+
- operation
|
|
3138
|
+
- zone
|
|
3139
|
+
title: DnsZoneRestampVanityNsWorkerPayload
|
|
3140
|
+
type: object
|
|
3041
3141
|
DnsZoneRrsetsCreate:
|
|
3042
3142
|
properties:
|
|
3043
3143
|
rrsets:
|
|
@@ -5254,9 +5354,13 @@ components:
|
|
|
5254
5354
|
description: Override attributes for this domain
|
|
5255
5355
|
title: Attributes
|
|
5256
5356
|
auth_code:
|
|
5257
|
-
|
|
5357
|
+
anyOf:
|
|
5358
|
+
- maxLength: 32
|
|
5359
|
+
minLength: 6
|
|
5360
|
+
type: string
|
|
5361
|
+
- type: 'null'
|
|
5362
|
+
description: The auth code for this domain (required by some TLDs)
|
|
5258
5363
|
title: Auth Code
|
|
5259
|
-
type: string
|
|
5260
5364
|
contacts:
|
|
5261
5365
|
anyOf:
|
|
5262
5366
|
- $ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -5299,7 +5403,6 @@ components:
|
|
|
5299
5403
|
description: Override renewal mode for this domain
|
|
5300
5404
|
required:
|
|
5301
5405
|
- name
|
|
5302
|
-
- auth_code
|
|
5303
5406
|
title: DomainTransferBulkInstance
|
|
5304
5407
|
type: object
|
|
5305
5408
|
DomainTransferBulkPayload:
|
|
@@ -7589,6 +7692,7 @@ components:
|
|
|
7589
7692
|
dns_zone_create_bulk: '#/components/schemas/DnsZoneCreateBulkCommand'
|
|
7590
7693
|
dns_zone_patch_records_bulk: '#/components/schemas/DnsZonePatchRecordsBulkCommand'
|
|
7591
7694
|
dns_zone_patch_rrsets_bulk: '#/components/schemas/DnsZonePatchRrsetsBulkCommand'
|
|
7695
|
+
dns_zone_restamp_vanity_ns_bulk: '#/components/schemas/DnsZoneRestampVanityNsBulkCommand'
|
|
7592
7696
|
dns_zone_update: '#/components/schemas/DnsZoneUpdateCommand'
|
|
7593
7697
|
dns_zone_update_bulk: '#/components/schemas/DnsZoneUpdateBulkCommand'
|
|
7594
7698
|
domain_create: '#/components/schemas/DomainCreateCommand'
|
|
@@ -7625,6 +7729,7 @@ components:
|
|
|
7625
7729
|
- $ref: '#/components/schemas/DnsZoneUpdateBulkCommand'
|
|
7626
7730
|
- $ref: '#/components/schemas/DnsZonePatchRrsetsBulkCommand'
|
|
7627
7731
|
- $ref: '#/components/schemas/DnsZonePatchRecordsBulkCommand'
|
|
7732
|
+
- $ref: '#/components/schemas/DnsZoneRestampVanityNsBulkCommand'
|
|
7628
7733
|
- $ref: '#/components/schemas/ContactCreateBulkCommand'
|
|
7629
7734
|
- $ref: '#/components/schemas/ContactCreateCommand'
|
|
7630
7735
|
- $ref: '#/components/schemas/ParkingCreateBulkCommand'
|
|
@@ -7896,6 +8001,7 @@ components:
|
|
|
7896
8001
|
dns_zone_create_bulk: '#/components/schemas/DnsZoneCreateWorkerPayload'
|
|
7897
8002
|
dns_zone_patch_records_bulk: '#/components/schemas/DnsZonePatchRecordsWorkerPayload'
|
|
7898
8003
|
dns_zone_patch_rrsets_bulk: '#/components/schemas/DnsZonePatchRrsetsWorkerPayload'
|
|
8004
|
+
dns_zone_restamp_vanity_ns_bulk: '#/components/schemas/DnsZoneRestampVanityNsWorkerPayload'
|
|
7899
8005
|
dns_zone_update: '#/components/schemas/DnsZoneUpdateWorkerPayload'
|
|
7900
8006
|
dns_zone_update_bulk: '#/components/schemas/DnsZoneUpdateWorkerPayload'
|
|
7901
8007
|
domain_create: '#/components/schemas/DomainCreateWorkerPayload'
|
|
@@ -7917,6 +8023,7 @@ components:
|
|
|
7917
8023
|
- $ref: '#/components/schemas/DnsZoneUpdateWorkerPayload'
|
|
7918
8024
|
- $ref: '#/components/schemas/DnsZonePatchRrsetsWorkerPayload'
|
|
7919
8025
|
- $ref: '#/components/schemas/DnsZonePatchRecordsWorkerPayload'
|
|
8026
|
+
- $ref: '#/components/schemas/DnsZoneRestampVanityNsWorkerPayload'
|
|
7920
8027
|
- $ref: '#/components/schemas/ContactCreateWorkerPayload'
|
|
7921
8028
|
- $ref: '#/components/schemas/ParkingCreateWorkerPayload'
|
|
7922
8029
|
- $ref: '#/components/schemas/ParkingEnableWorkerPayload'
|
|
@@ -13243,7 +13350,7 @@ info:
|
|
|
13243
13350
|
\n\n"
|
|
13244
13351
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13245
13352
|
title: OpusDNS API
|
|
13246
|
-
version: 2026-06-
|
|
13353
|
+
version: 2026-06-23-185512
|
|
13247
13354
|
x-logo:
|
|
13248
13355
|
altText: OpusDNS API Reference
|
|
13249
13356
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -24076,6 +24183,24 @@ paths:
|
|
|
24076
24183
|
type: A
|
|
24077
24184
|
zone_name: zone2.com
|
|
24078
24185
|
version: v1
|
|
24186
|
+
bulk_dns_zone_restamp_vanity_ns:
|
|
24187
|
+
description: Restamp multiple zones' apex NS + SOA onto a vanity nameserver
|
|
24188
|
+
set, or unbrand them to OpusDNS system defaults. The template's
|
|
24189
|
+
vanity_nameserver_set_id applies to every zone; an instance may
|
|
24190
|
+
override it (set null to unbrand just that zone).
|
|
24191
|
+
summary: Bulk DNS zone vanity NS restamp
|
|
24192
|
+
value:
|
|
24193
|
+
commands:
|
|
24194
|
+
- command: dns_zone_restamp_vanity_ns_bulk
|
|
24195
|
+
idempotency_key: bulk-restamp-vanity-ns-2050-01
|
|
24196
|
+
payload:
|
|
24197
|
+
instances:
|
|
24198
|
+
- name: zone1.com
|
|
24199
|
+
- name: zone2.com
|
|
24200
|
+
- name: zone3.com
|
|
24201
|
+
template:
|
|
24202
|
+
vanity_nameserver_set_id: vns_01h9xk4p2e2v8q9r5t7w0c3m6n
|
|
24203
|
+
version: v1
|
|
24079
24204
|
bulk_dns_zone_update:
|
|
24080
24205
|
description: Update multiple DNS zones with the same RRsets. Useful
|
|
24081
24206
|
for applying identical DNS record changes across many zones.
|
|
@@ -24465,6 +24590,7 @@ paths:
|
|
|
24465
24590
|
- domains:manage
|
|
24466
24591
|
- jobs:manage
|
|
24467
24592
|
- parking:manage
|
|
24593
|
+
- vanity_ns:manage
|
|
24468
24594
|
/v1/jobs/{batch_id}:
|
|
24469
24595
|
delete:
|
|
24470
24596
|
operationId: delete_batch_v1_jobs__batch_id__delete
|
package/src/schema.d.ts
CHANGED
|
@@ -4790,6 +4790,69 @@ export interface components {
|
|
|
4790
4790
|
*/
|
|
4791
4791
|
vanity_nameserver_set_id?: TypeId<"vns"> | null;
|
|
4792
4792
|
};
|
|
4793
|
+
/** DnsZoneRestampVanityNsBulkCommand */
|
|
4794
|
+
DnsZoneRestampVanityNsBulkCommand: {
|
|
4795
|
+
/**
|
|
4796
|
+
* @description discriminator enum property added by openapi-typescript
|
|
4797
|
+
* @enum {string}
|
|
4798
|
+
*/
|
|
4799
|
+
command: "dns_zone_restamp_vanity_ns_bulk";
|
|
4800
|
+
/**
|
|
4801
|
+
* Idempotency Key
|
|
4802
|
+
* @description Idempotency key for this bulk command
|
|
4803
|
+
*/
|
|
4804
|
+
idempotency_key?: string | null;
|
|
4805
|
+
/** @description Bulk DNS zone vanity NS restamp payload */
|
|
4806
|
+
payload: components["schemas"]["DnsZoneRestampVanityNsBulkPayload"];
|
|
4807
|
+
/**
|
|
4808
|
+
* Version
|
|
4809
|
+
* @description Command version
|
|
4810
|
+
* @default v1
|
|
4811
|
+
*/
|
|
4812
|
+
version: string;
|
|
4813
|
+
};
|
|
4814
|
+
/** DnsZoneRestampVanityNsBulkInstance */
|
|
4815
|
+
DnsZoneRestampVanityNsBulkInstance: {
|
|
4816
|
+
/**
|
|
4817
|
+
* Name
|
|
4818
|
+
* @description The DNS zone name to restamp (e.g., example.com)
|
|
4819
|
+
*/
|
|
4820
|
+
name: string;
|
|
4821
|
+
/**
|
|
4822
|
+
* Vanity Nameserver Set Id
|
|
4823
|
+
* @description Override the template's set for this zone: a set id to brand with, or null to unbrand this zone to system defaults. Omit the field entirely to inherit the template's value.
|
|
4824
|
+
*/
|
|
4825
|
+
vanity_nameserver_set_id?: TypeId<"vns"> | null;
|
|
4826
|
+
};
|
|
4827
|
+
/** DnsZoneRestampVanityNsBulkPayload */
|
|
4828
|
+
DnsZoneRestampVanityNsBulkPayload: {
|
|
4829
|
+
/**
|
|
4830
|
+
* Instances
|
|
4831
|
+
* @description List of zones to restamp (1-1000)
|
|
4832
|
+
*/
|
|
4833
|
+
instances: components["schemas"]["DnsZoneRestampVanityNsBulkInstance"][];
|
|
4834
|
+
/** @description Shared vanity NS set for all zones */
|
|
4835
|
+
template: components["schemas"]["DnsZoneRestampVanityNsBulkTemplate"];
|
|
4836
|
+
};
|
|
4837
|
+
/** DnsZoneRestampVanityNsBulkTemplate */
|
|
4838
|
+
DnsZoneRestampVanityNsBulkTemplate: {
|
|
4839
|
+
/**
|
|
4840
|
+
* Vanity Nameserver Set Id
|
|
4841
|
+
* @description Vanity NS set to restamp every zone's apex NS + SOA with, or null to unbrand all zones back to OpusDNS system default nameservers. An instance may override this.
|
|
4842
|
+
*/
|
|
4843
|
+
vanity_nameserver_set_id?: TypeId<"vns"> | null;
|
|
4844
|
+
};
|
|
4845
|
+
/** DnsZoneRestampVanityNsWorkerPayload */
|
|
4846
|
+
DnsZoneRestampVanityNsWorkerPayload: {
|
|
4847
|
+
/** Operation */
|
|
4848
|
+
operation: string;
|
|
4849
|
+
/**
|
|
4850
|
+
* @description discriminator enum property added by openapi-typescript
|
|
4851
|
+
* @enum {string}
|
|
4852
|
+
*/
|
|
4853
|
+
type: "dns_zone_restamp_vanity_ns_bulk";
|
|
4854
|
+
zone: components["schemas"]["DnsZoneRestampVanityNsBulkInstance"];
|
|
4855
|
+
};
|
|
4793
4856
|
/** DnsZoneRrsetsCreate */
|
|
4794
4857
|
DnsZoneRrsetsCreate: {
|
|
4795
4858
|
/** Rrsets */
|
|
@@ -6225,9 +6288,9 @@ export interface components {
|
|
|
6225
6288
|
} | null;
|
|
6226
6289
|
/**
|
|
6227
6290
|
* Auth Code
|
|
6228
|
-
* @description The auth code for this domain (required)
|
|
6291
|
+
* @description The auth code for this domain (required by some TLDs)
|
|
6229
6292
|
*/
|
|
6230
|
-
auth_code
|
|
6293
|
+
auth_code?: string | null;
|
|
6231
6294
|
/** @description Override contacts for this domain */
|
|
6232
6295
|
contacts?: components["schemas"]["DomainContactHandles"] | null;
|
|
6233
6296
|
/**
|
|
@@ -7839,7 +7902,7 @@ export interface components {
|
|
|
7839
7902
|
* Commands
|
|
7840
7903
|
* @description List of commands to execute
|
|
7841
7904
|
*/
|
|
7842
|
-
commands: (components["schemas"]["DomainCreateCommand"] | components["schemas"]["DomainUpdateCommand"] | components["schemas"]["DomainTransferCommand"] | components["schemas"]["DnsZoneCreateCommand"] | components["schemas"]["DnsZoneUpdateCommand"] | components["schemas"]["DomainCreateBulkCommand"] | components["schemas"]["DomainTransferBulkCommand"] | components["schemas"]["DomainUpdateBulkCommand"] | components["schemas"]["DnsZoneCreateBulkCommand"] | components["schemas"]["DnsZoneUpdateBulkCommand"] | components["schemas"]["DnsZonePatchRrsetsBulkCommand"] | components["schemas"]["DnsZonePatchRecordsBulkCommand"] | components["schemas"]["ContactCreateBulkCommand"] | components["schemas"]["ContactCreateCommand"] | components["schemas"]["ParkingCreateBulkCommand"] | components["schemas"]["ParkingEnableBulkCommand"] | components["schemas"]["ParkingDisableBulkCommand"] | components["schemas"]["ParkingDeleteBulkCommand"] | components["schemas"]["EmailForwardCreateBulkCommand"] | components["schemas"]["EmailForwardEnableBulkCommand"] | components["schemas"]["EmailForwardDisableBulkCommand"] | components["schemas"]["EmailForwardDeleteBulkCommand"] | components["schemas"]["EmailForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardCreateBulkCommand"] | components["schemas"]["DomainForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardEnableBulkCommand"] | components["schemas"]["DomainForwardDisableBulkCommand"] | components["schemas"]["DomainForwardDeleteBulkCommand"])[];
|
|
7905
|
+
commands: (components["schemas"]["DomainCreateCommand"] | components["schemas"]["DomainUpdateCommand"] | components["schemas"]["DomainTransferCommand"] | components["schemas"]["DnsZoneCreateCommand"] | components["schemas"]["DnsZoneUpdateCommand"] | components["schemas"]["DomainCreateBulkCommand"] | components["schemas"]["DomainTransferBulkCommand"] | components["schemas"]["DomainUpdateBulkCommand"] | components["schemas"]["DnsZoneCreateBulkCommand"] | components["schemas"]["DnsZoneUpdateBulkCommand"] | components["schemas"]["DnsZonePatchRrsetsBulkCommand"] | components["schemas"]["DnsZonePatchRecordsBulkCommand"] | components["schemas"]["DnsZoneRestampVanityNsBulkCommand"] | components["schemas"]["ContactCreateBulkCommand"] | components["schemas"]["ContactCreateCommand"] | components["schemas"]["ParkingCreateBulkCommand"] | components["schemas"]["ParkingEnableBulkCommand"] | components["schemas"]["ParkingDisableBulkCommand"] | components["schemas"]["ParkingDeleteBulkCommand"] | components["schemas"]["EmailForwardCreateBulkCommand"] | components["schemas"]["EmailForwardEnableBulkCommand"] | components["schemas"]["EmailForwardDisableBulkCommand"] | components["schemas"]["EmailForwardDeleteBulkCommand"] | components["schemas"]["EmailForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardCreateBulkCommand"] | components["schemas"]["DomainForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardEnableBulkCommand"] | components["schemas"]["DomainForwardDisableBulkCommand"] | components["schemas"]["DomainForwardDeleteBulkCommand"])[];
|
|
7843
7906
|
/**
|
|
7844
7907
|
* Label
|
|
7845
7908
|
* @description Human-readable label for this batch
|
|
@@ -8058,7 +8121,7 @@ export interface components {
|
|
|
8058
8121
|
* Payload
|
|
8059
8122
|
* @description The original request payload for this job
|
|
8060
8123
|
*/
|
|
8061
|
-
payload?: (components["schemas"]["DomainCreateWorkerPayload"] | components["schemas"]["DomainUpdateWorkerPayload"] | components["schemas"]["DomainTransferWorkerPayload"] | components["schemas"]["DnsZoneCreateWorkerPayload"] | components["schemas"]["DnsZoneUpdateWorkerPayload"] | components["schemas"]["DnsZonePatchRrsetsWorkerPayload"] | components["schemas"]["DnsZonePatchRecordsWorkerPayload"] | components["schemas"]["ContactCreateWorkerPayload"] | components["schemas"]["ParkingCreateWorkerPayload"] | components["schemas"]["ParkingEnableWorkerPayload"] | components["schemas"]["ParkingDisableWorkerPayload"] | components["schemas"]["ParkingDeleteWorkerPayload"]) | {
|
|
8124
|
+
payload?: (components["schemas"]["DomainCreateWorkerPayload"] | components["schemas"]["DomainUpdateWorkerPayload"] | components["schemas"]["DomainTransferWorkerPayload"] | components["schemas"]["DnsZoneCreateWorkerPayload"] | components["schemas"]["DnsZoneUpdateWorkerPayload"] | components["schemas"]["DnsZonePatchRrsetsWorkerPayload"] | components["schemas"]["DnsZonePatchRecordsWorkerPayload"] | components["schemas"]["DnsZoneRestampVanityNsWorkerPayload"] | components["schemas"]["ContactCreateWorkerPayload"] | components["schemas"]["ParkingCreateWorkerPayload"] | components["schemas"]["ParkingEnableWorkerPayload"] | components["schemas"]["ParkingDisableWorkerPayload"] | components["schemas"]["ParkingDeleteWorkerPayload"]) | {
|
|
8062
8125
|
[key: string]: unknown;
|
|
8063
8126
|
} | null;
|
|
8064
8127
|
/**
|