@opusdns/api 1.8.0 → 1.9.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 +175 -0
- package/src/helpers/schemas.d.ts +17 -0
- package/src/openapi.yaml +340 -1
- package/src/schema.d.ts +239 -1
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -104,7 +104,20 @@ import type {
|
|
|
104
104
|
DomainDnssecData,
|
|
105
105
|
DomainForward,
|
|
106
106
|
DomainForwardBrowserStats,
|
|
107
|
+
DomainForwardCreateBulkCommand,
|
|
108
|
+
DomainForwardCreateBulkInstance,
|
|
109
|
+
DomainForwardCreateBulkPayload,
|
|
110
|
+
DomainForwardCreateBulkTemplate,
|
|
107
111
|
DomainForwardCreateRequest,
|
|
112
|
+
DomainForwardDeleteBulkCommand,
|
|
113
|
+
DomainForwardDeleteBulkInstance,
|
|
114
|
+
DomainForwardDeleteBulkPayload,
|
|
115
|
+
DomainForwardDisableBulkCommand,
|
|
116
|
+
DomainForwardDisableBulkInstance,
|
|
117
|
+
DomainForwardDisableBulkPayload,
|
|
118
|
+
DomainForwardEnableBulkCommand,
|
|
119
|
+
DomainForwardEnableBulkInstance,
|
|
120
|
+
DomainForwardEnableBulkPayload,
|
|
108
121
|
DomainForwardGeoStats,
|
|
109
122
|
DomainForwardMetrics,
|
|
110
123
|
DomainForwardMetricsTimeSeries,
|
|
@@ -118,6 +131,10 @@ import type {
|
|
|
118
131
|
DomainForwardSetRequest,
|
|
119
132
|
DomainForwardSet,
|
|
120
133
|
DomainForwardStatusCodeStats,
|
|
134
|
+
DomainForwardUpdateBulkCommand,
|
|
135
|
+
DomainForwardUpdateBulkInstance,
|
|
136
|
+
DomainForwardUpdateBulkPayload,
|
|
137
|
+
DomainForwardUpdateBulkTemplate,
|
|
121
138
|
DomainForwardUserAgentStats,
|
|
122
139
|
DomainForwardVisitsByKey,
|
|
123
140
|
DomainForwardZone,
|
|
@@ -1699,6 +1716,50 @@ export const KEYS_DOMAIN_FORWARD_BROWSER_STATS = [
|
|
|
1699
1716
|
KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS,
|
|
1700
1717
|
] as const satisfies (keyof DomainForwardBrowserStats)[];
|
|
1701
1718
|
|
|
1719
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_COMMAND = 'command' satisfies keyof DomainForwardCreateBulkCommand;
|
|
1720
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DomainForwardCreateBulkCommand;
|
|
1721
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DomainForwardCreateBulkCommand;
|
|
1722
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_VERSION = 'version' satisfies keyof DomainForwardCreateBulkCommand;
|
|
1723
|
+
|
|
1724
|
+
export const KEYS_DOMAIN_FORWARD_CREATE_BULK_COMMAND = [
|
|
1725
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_COMMAND,
|
|
1726
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_IDEMPOTENCY_KEY,
|
|
1727
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_PAYLOAD,
|
|
1728
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_COMMAND_VERSION,
|
|
1729
|
+
] as const satisfies (keyof DomainForwardCreateBulkCommand)[];
|
|
1730
|
+
|
|
1731
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_ENABLED = 'enabled' satisfies keyof DomainForwardCreateBulkInstance;
|
|
1732
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof DomainForwardCreateBulkInstance;
|
|
1733
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_HTTP = 'http' satisfies keyof DomainForwardCreateBulkInstance;
|
|
1734
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_HTTPS = 'https' satisfies keyof DomainForwardCreateBulkInstance;
|
|
1735
|
+
|
|
1736
|
+
export const KEYS_DOMAIN_FORWARD_CREATE_BULK_INSTANCE = [
|
|
1737
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_ENABLED,
|
|
1738
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_HOSTNAME,
|
|
1739
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_HTTP,
|
|
1740
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_INSTANCE_HTTPS,
|
|
1741
|
+
] as const satisfies (keyof DomainForwardCreateBulkInstance)[];
|
|
1742
|
+
|
|
1743
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof DomainForwardCreateBulkPayload;
|
|
1744
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_PAYLOAD_TEMPLATE = 'template' satisfies keyof DomainForwardCreateBulkPayload;
|
|
1745
|
+
|
|
1746
|
+
export const KEYS_DOMAIN_FORWARD_CREATE_BULK_PAYLOAD = [
|
|
1747
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_PAYLOAD_INSTANCES,
|
|
1748
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_PAYLOAD_TEMPLATE,
|
|
1749
|
+
] as const satisfies (keyof DomainForwardCreateBulkPayload)[];
|
|
1750
|
+
|
|
1751
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_AUTO_CREATE_ZONE = 'auto_create_zone' satisfies keyof DomainForwardCreateBulkTemplate;
|
|
1752
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_ENABLED = 'enabled' satisfies keyof DomainForwardCreateBulkTemplate;
|
|
1753
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_HTTP = 'http' satisfies keyof DomainForwardCreateBulkTemplate;
|
|
1754
|
+
export const KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_HTTPS = 'https' satisfies keyof DomainForwardCreateBulkTemplate;
|
|
1755
|
+
|
|
1756
|
+
export const KEYS_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE = [
|
|
1757
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_AUTO_CREATE_ZONE,
|
|
1758
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_ENABLED,
|
|
1759
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_HTTP,
|
|
1760
|
+
KEY_DOMAIN_FORWARD_CREATE_BULK_TEMPLATE_HTTPS,
|
|
1761
|
+
] as const satisfies (keyof DomainForwardCreateBulkTemplate)[];
|
|
1762
|
+
|
|
1702
1763
|
export const KEY_DOMAIN_FORWARD_CREATE_REQUEST_ENABLED = 'enabled' satisfies keyof DomainForwardCreateRequest;
|
|
1703
1764
|
export const KEY_DOMAIN_FORWARD_CREATE_REQUEST_HOSTNAME = 'hostname' satisfies keyof DomainForwardCreateRequest;
|
|
1704
1765
|
export const KEY_DOMAIN_FORWARD_CREATE_REQUEST_HTTP = 'http' satisfies keyof DomainForwardCreateRequest;
|
|
@@ -1711,6 +1772,78 @@ export const KEYS_DOMAIN_FORWARD_CREATE_REQUEST = [
|
|
|
1711
1772
|
KEY_DOMAIN_FORWARD_CREATE_REQUEST_HTTPS,
|
|
1712
1773
|
] as const satisfies (keyof DomainForwardCreateRequest)[];
|
|
1713
1774
|
|
|
1775
|
+
export const KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_COMMAND = 'command' satisfies keyof DomainForwardDeleteBulkCommand;
|
|
1776
|
+
export const KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DomainForwardDeleteBulkCommand;
|
|
1777
|
+
export const KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DomainForwardDeleteBulkCommand;
|
|
1778
|
+
export const KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_VERSION = 'version' satisfies keyof DomainForwardDeleteBulkCommand;
|
|
1779
|
+
|
|
1780
|
+
export const KEYS_DOMAIN_FORWARD_DELETE_BULK_COMMAND = [
|
|
1781
|
+
KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_COMMAND,
|
|
1782
|
+
KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_IDEMPOTENCY_KEY,
|
|
1783
|
+
KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_PAYLOAD,
|
|
1784
|
+
KEY_DOMAIN_FORWARD_DELETE_BULK_COMMAND_VERSION,
|
|
1785
|
+
] as const satisfies (keyof DomainForwardDeleteBulkCommand)[];
|
|
1786
|
+
|
|
1787
|
+
export const KEY_DOMAIN_FORWARD_DELETE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof DomainForwardDeleteBulkInstance;
|
|
1788
|
+
|
|
1789
|
+
export const KEYS_DOMAIN_FORWARD_DELETE_BULK_INSTANCE = [
|
|
1790
|
+
KEY_DOMAIN_FORWARD_DELETE_BULK_INSTANCE_HOSTNAME,
|
|
1791
|
+
] as const satisfies (keyof DomainForwardDeleteBulkInstance)[];
|
|
1792
|
+
|
|
1793
|
+
export const KEY_DOMAIN_FORWARD_DELETE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof DomainForwardDeleteBulkPayload;
|
|
1794
|
+
|
|
1795
|
+
export const KEYS_DOMAIN_FORWARD_DELETE_BULK_PAYLOAD = [
|
|
1796
|
+
KEY_DOMAIN_FORWARD_DELETE_BULK_PAYLOAD_INSTANCES,
|
|
1797
|
+
] as const satisfies (keyof DomainForwardDeleteBulkPayload)[];
|
|
1798
|
+
|
|
1799
|
+
export const KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_COMMAND = 'command' satisfies keyof DomainForwardDisableBulkCommand;
|
|
1800
|
+
export const KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DomainForwardDisableBulkCommand;
|
|
1801
|
+
export const KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DomainForwardDisableBulkCommand;
|
|
1802
|
+
export const KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_VERSION = 'version' satisfies keyof DomainForwardDisableBulkCommand;
|
|
1803
|
+
|
|
1804
|
+
export const KEYS_DOMAIN_FORWARD_DISABLE_BULK_COMMAND = [
|
|
1805
|
+
KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_COMMAND,
|
|
1806
|
+
KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_IDEMPOTENCY_KEY,
|
|
1807
|
+
KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_PAYLOAD,
|
|
1808
|
+
KEY_DOMAIN_FORWARD_DISABLE_BULK_COMMAND_VERSION,
|
|
1809
|
+
] as const satisfies (keyof DomainForwardDisableBulkCommand)[];
|
|
1810
|
+
|
|
1811
|
+
export const KEY_DOMAIN_FORWARD_DISABLE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof DomainForwardDisableBulkInstance;
|
|
1812
|
+
|
|
1813
|
+
export const KEYS_DOMAIN_FORWARD_DISABLE_BULK_INSTANCE = [
|
|
1814
|
+
KEY_DOMAIN_FORWARD_DISABLE_BULK_INSTANCE_HOSTNAME,
|
|
1815
|
+
] as const satisfies (keyof DomainForwardDisableBulkInstance)[];
|
|
1816
|
+
|
|
1817
|
+
export const KEY_DOMAIN_FORWARD_DISABLE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof DomainForwardDisableBulkPayload;
|
|
1818
|
+
|
|
1819
|
+
export const KEYS_DOMAIN_FORWARD_DISABLE_BULK_PAYLOAD = [
|
|
1820
|
+
KEY_DOMAIN_FORWARD_DISABLE_BULK_PAYLOAD_INSTANCES,
|
|
1821
|
+
] as const satisfies (keyof DomainForwardDisableBulkPayload)[];
|
|
1822
|
+
|
|
1823
|
+
export const KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_COMMAND = 'command' satisfies keyof DomainForwardEnableBulkCommand;
|
|
1824
|
+
export const KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DomainForwardEnableBulkCommand;
|
|
1825
|
+
export const KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DomainForwardEnableBulkCommand;
|
|
1826
|
+
export const KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_VERSION = 'version' satisfies keyof DomainForwardEnableBulkCommand;
|
|
1827
|
+
|
|
1828
|
+
export const KEYS_DOMAIN_FORWARD_ENABLE_BULK_COMMAND = [
|
|
1829
|
+
KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_COMMAND,
|
|
1830
|
+
KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_IDEMPOTENCY_KEY,
|
|
1831
|
+
KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_PAYLOAD,
|
|
1832
|
+
KEY_DOMAIN_FORWARD_ENABLE_BULK_COMMAND_VERSION,
|
|
1833
|
+
] as const satisfies (keyof DomainForwardEnableBulkCommand)[];
|
|
1834
|
+
|
|
1835
|
+
export const KEY_DOMAIN_FORWARD_ENABLE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof DomainForwardEnableBulkInstance;
|
|
1836
|
+
|
|
1837
|
+
export const KEYS_DOMAIN_FORWARD_ENABLE_BULK_INSTANCE = [
|
|
1838
|
+
KEY_DOMAIN_FORWARD_ENABLE_BULK_INSTANCE_HOSTNAME,
|
|
1839
|
+
] as const satisfies (keyof DomainForwardEnableBulkInstance)[];
|
|
1840
|
+
|
|
1841
|
+
export const KEY_DOMAIN_FORWARD_ENABLE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof DomainForwardEnableBulkPayload;
|
|
1842
|
+
|
|
1843
|
+
export const KEYS_DOMAIN_FORWARD_ENABLE_BULK_PAYLOAD = [
|
|
1844
|
+
KEY_DOMAIN_FORWARD_ENABLE_BULK_PAYLOAD_INSTANCES,
|
|
1845
|
+
] as const satisfies (keyof DomainForwardEnableBulkPayload)[];
|
|
1846
|
+
|
|
1714
1847
|
export const KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS = 'results' satisfies keyof DomainForwardGeoStats;
|
|
1715
1848
|
|
|
1716
1849
|
export const KEYS_DOMAIN_FORWARD_GEO_STATS = [
|
|
@@ -1811,6 +1944,48 @@ export const KEYS_DOMAIN_FORWARD_STATUS_CODE_STATS = [
|
|
|
1811
1944
|
KEY_DOMAIN_FORWARD_STATUS_CODE_STATS_RESULTS,
|
|
1812
1945
|
] as const satisfies (keyof DomainForwardStatusCodeStats)[];
|
|
1813
1946
|
|
|
1947
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_COMMAND = 'command' satisfies keyof DomainForwardUpdateBulkCommand;
|
|
1948
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DomainForwardUpdateBulkCommand;
|
|
1949
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DomainForwardUpdateBulkCommand;
|
|
1950
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_VERSION = 'version' satisfies keyof DomainForwardUpdateBulkCommand;
|
|
1951
|
+
|
|
1952
|
+
export const KEYS_DOMAIN_FORWARD_UPDATE_BULK_COMMAND = [
|
|
1953
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_COMMAND,
|
|
1954
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_IDEMPOTENCY_KEY,
|
|
1955
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_PAYLOAD,
|
|
1956
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_COMMAND_VERSION,
|
|
1957
|
+
] as const satisfies (keyof DomainForwardUpdateBulkCommand)[];
|
|
1958
|
+
|
|
1959
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_ENABLED = 'enabled' satisfies keyof DomainForwardUpdateBulkInstance;
|
|
1960
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof DomainForwardUpdateBulkInstance;
|
|
1961
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_HTTP = 'http' satisfies keyof DomainForwardUpdateBulkInstance;
|
|
1962
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_HTTPS = 'https' satisfies keyof DomainForwardUpdateBulkInstance;
|
|
1963
|
+
|
|
1964
|
+
export const KEYS_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE = [
|
|
1965
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_ENABLED,
|
|
1966
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_HOSTNAME,
|
|
1967
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_HTTP,
|
|
1968
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_INSTANCE_HTTPS,
|
|
1969
|
+
] as const satisfies (keyof DomainForwardUpdateBulkInstance)[];
|
|
1970
|
+
|
|
1971
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof DomainForwardUpdateBulkPayload;
|
|
1972
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_PAYLOAD_TEMPLATE = 'template' satisfies keyof DomainForwardUpdateBulkPayload;
|
|
1973
|
+
|
|
1974
|
+
export const KEYS_DOMAIN_FORWARD_UPDATE_BULK_PAYLOAD = [
|
|
1975
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_PAYLOAD_INSTANCES,
|
|
1976
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_PAYLOAD_TEMPLATE,
|
|
1977
|
+
] as const satisfies (keyof DomainForwardUpdateBulkPayload)[];
|
|
1978
|
+
|
|
1979
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_TEMPLATE_ENABLED = 'enabled' satisfies keyof DomainForwardUpdateBulkTemplate;
|
|
1980
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_TEMPLATE_HTTP = 'http' satisfies keyof DomainForwardUpdateBulkTemplate;
|
|
1981
|
+
export const KEY_DOMAIN_FORWARD_UPDATE_BULK_TEMPLATE_HTTPS = 'https' satisfies keyof DomainForwardUpdateBulkTemplate;
|
|
1982
|
+
|
|
1983
|
+
export const KEYS_DOMAIN_FORWARD_UPDATE_BULK_TEMPLATE = [
|
|
1984
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_TEMPLATE_ENABLED,
|
|
1985
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_TEMPLATE_HTTP,
|
|
1986
|
+
KEY_DOMAIN_FORWARD_UPDATE_BULK_TEMPLATE_HTTPS,
|
|
1987
|
+
] as const satisfies (keyof DomainForwardUpdateBulkTemplate)[];
|
|
1988
|
+
|
|
1814
1989
|
export const KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS = 'results' satisfies keyof DomainForwardUserAgentStats;
|
|
1815
1990
|
|
|
1816
1991
|
export const KEYS_DOMAIN_FORWARD_USER_AGENT_STATS = [
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -140,7 +140,20 @@ export type DomainDnssecDataCreate = components['schemas']['DomainDnssecDataCrea
|
|
|
140
140
|
export type DomainDnssecData = components['schemas']['DomainDnssecDataResponse'];
|
|
141
141
|
export type DomainForward = components['schemas']['DomainForward'];
|
|
142
142
|
export type DomainForwardBrowserStats = components['schemas']['DomainForwardBrowserStatsResponse'];
|
|
143
|
+
export type DomainForwardCreateBulkCommand = components['schemas']['DomainForwardCreateBulkCommand'];
|
|
144
|
+
export type DomainForwardCreateBulkInstance = components['schemas']['DomainForwardCreateBulkInstance'];
|
|
145
|
+
export type DomainForwardCreateBulkPayload = components['schemas']['DomainForwardCreateBulkPayload'];
|
|
146
|
+
export type DomainForwardCreateBulkTemplate = components['schemas']['DomainForwardCreateBulkTemplate'];
|
|
143
147
|
export type DomainForwardCreateRequest = components['schemas']['DomainForwardCreateRequest'];
|
|
148
|
+
export type DomainForwardDeleteBulkCommand = components['schemas']['DomainForwardDeleteBulkCommand'];
|
|
149
|
+
export type DomainForwardDeleteBulkInstance = components['schemas']['DomainForwardDeleteBulkInstance'];
|
|
150
|
+
export type DomainForwardDeleteBulkPayload = components['schemas']['DomainForwardDeleteBulkPayload'];
|
|
151
|
+
export type DomainForwardDisableBulkCommand = components['schemas']['DomainForwardDisableBulkCommand'];
|
|
152
|
+
export type DomainForwardDisableBulkInstance = components['schemas']['DomainForwardDisableBulkInstance'];
|
|
153
|
+
export type DomainForwardDisableBulkPayload = components['schemas']['DomainForwardDisableBulkPayload'];
|
|
154
|
+
export type DomainForwardEnableBulkCommand = components['schemas']['DomainForwardEnableBulkCommand'];
|
|
155
|
+
export type DomainForwardEnableBulkInstance = components['schemas']['DomainForwardEnableBulkInstance'];
|
|
156
|
+
export type DomainForwardEnableBulkPayload = components['schemas']['DomainForwardEnableBulkPayload'];
|
|
144
157
|
export type DomainForwardGeoStats = components['schemas']['DomainForwardGeoStatsResponse'];
|
|
145
158
|
export type DomainForwardMetrics = components['schemas']['DomainForwardMetricsResponse'];
|
|
146
159
|
export type DomainForwardMetricsTimeSeries = components['schemas']['DomainForwardMetricsTimeSeriesResponse'];
|
|
@@ -155,6 +168,10 @@ export type DomainForwardSetRequest = components['schemas']['DomainForwardSetReq
|
|
|
155
168
|
export type DomainForwardSet = components['schemas']['DomainForwardSetResponse'];
|
|
156
169
|
export type DomainForwardSortField = components['schemas']['DomainForwardSortField'];
|
|
157
170
|
export type DomainForwardStatusCodeStats = components['schemas']['DomainForwardStatusCodeStatsResponse'];
|
|
171
|
+
export type DomainForwardUpdateBulkCommand = components['schemas']['DomainForwardUpdateBulkCommand'];
|
|
172
|
+
export type DomainForwardUpdateBulkInstance = components['schemas']['DomainForwardUpdateBulkInstance'];
|
|
173
|
+
export type DomainForwardUpdateBulkPayload = components['schemas']['DomainForwardUpdateBulkPayload'];
|
|
174
|
+
export type DomainForwardUpdateBulkTemplate = components['schemas']['DomainForwardUpdateBulkTemplate'];
|
|
158
175
|
export type DomainForwardUserAgentStats = components['schemas']['DomainForwardUserAgentStatsResponse'];
|
|
159
176
|
export type DomainForwardVisitsByKey = components['schemas']['DomainForwardVisitsByKeyResponse'];
|
|
160
177
|
export type DomainForwardZone = components['schemas']['DomainForwardZone'];
|
package/src/openapi.yaml
CHANGED
|
@@ -3747,6 +3747,99 @@ components:
|
|
|
3747
3747
|
- results
|
|
3748
3748
|
title: DomainForwardBrowserStatsResponse
|
|
3749
3749
|
type: object
|
|
3750
|
+
DomainForwardCreateBulkCommand:
|
|
3751
|
+
properties:
|
|
3752
|
+
command:
|
|
3753
|
+
const: domain_forward_create_bulk
|
|
3754
|
+
default: domain_forward_create_bulk
|
|
3755
|
+
title: Command
|
|
3756
|
+
type: string
|
|
3757
|
+
idempotency_key:
|
|
3758
|
+
anyOf:
|
|
3759
|
+
- type: string
|
|
3760
|
+
- type: 'null'
|
|
3761
|
+
description: Idempotency key for this bulk command
|
|
3762
|
+
title: Idempotency Key
|
|
3763
|
+
payload:
|
|
3764
|
+
$ref: '#/components/schemas/DomainForwardCreateBulkPayload'
|
|
3765
|
+
description: Bulk domain forward create payload
|
|
3766
|
+
version:
|
|
3767
|
+
default: v1
|
|
3768
|
+
description: Command version
|
|
3769
|
+
title: Version
|
|
3770
|
+
type: string
|
|
3771
|
+
required:
|
|
3772
|
+
- payload
|
|
3773
|
+
title: DomainForwardCreateBulkCommand
|
|
3774
|
+
type: object
|
|
3775
|
+
DomainForwardCreateBulkInstance:
|
|
3776
|
+
properties:
|
|
3777
|
+
enabled:
|
|
3778
|
+
anyOf:
|
|
3779
|
+
- type: boolean
|
|
3780
|
+
- type: 'null'
|
|
3781
|
+
description: Override enabled setting for this hostname
|
|
3782
|
+
title: Enabled
|
|
3783
|
+
hostname:
|
|
3784
|
+
description: Hostname to create forward for
|
|
3785
|
+
title: Hostname
|
|
3786
|
+
type: string
|
|
3787
|
+
http:
|
|
3788
|
+
anyOf:
|
|
3789
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3790
|
+
- type: 'null'
|
|
3791
|
+
description: Override HTTP redirects
|
|
3792
|
+
https:
|
|
3793
|
+
anyOf:
|
|
3794
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3795
|
+
- type: 'null'
|
|
3796
|
+
description: Override HTTPS redirects
|
|
3797
|
+
required:
|
|
3798
|
+
- hostname
|
|
3799
|
+
title: DomainForwardCreateBulkInstance
|
|
3800
|
+
type: object
|
|
3801
|
+
DomainForwardCreateBulkPayload:
|
|
3802
|
+
properties:
|
|
3803
|
+
instances:
|
|
3804
|
+
description: List of domain forwards to create (1-1000)
|
|
3805
|
+
items:
|
|
3806
|
+
$ref: '#/components/schemas/DomainForwardCreateBulkInstance'
|
|
3807
|
+
maxItems: 1000
|
|
3808
|
+
minItems: 1
|
|
3809
|
+
title: Instances
|
|
3810
|
+
type: array
|
|
3811
|
+
template:
|
|
3812
|
+
$ref: '#/components/schemas/DomainForwardCreateBulkTemplate'
|
|
3813
|
+
description: Shared settings for all domain forwards
|
|
3814
|
+
required:
|
|
3815
|
+
- template
|
|
3816
|
+
- instances
|
|
3817
|
+
title: DomainForwardCreateBulkPayload
|
|
3818
|
+
type: object
|
|
3819
|
+
DomainForwardCreateBulkTemplate:
|
|
3820
|
+
properties:
|
|
3821
|
+
auto_create_zone:
|
|
3822
|
+
default: false
|
|
3823
|
+
description: Create apex DNS zone automatically when missing
|
|
3824
|
+
title: Auto Create Zone
|
|
3825
|
+
type: boolean
|
|
3826
|
+
enabled:
|
|
3827
|
+
default: false
|
|
3828
|
+
description: Whether domain forward should be enabled
|
|
3829
|
+
title: Enabled
|
|
3830
|
+
type: boolean
|
|
3831
|
+
http:
|
|
3832
|
+
anyOf:
|
|
3833
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3834
|
+
- type: 'null'
|
|
3835
|
+
description: HTTP redirect definitions
|
|
3836
|
+
https:
|
|
3837
|
+
anyOf:
|
|
3838
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3839
|
+
- type: 'null'
|
|
3840
|
+
description: HTTPS redirect definitions
|
|
3841
|
+
title: DomainForwardCreateBulkTemplate
|
|
3842
|
+
type: object
|
|
3750
3843
|
DomainForwardCreateRequest:
|
|
3751
3844
|
properties:
|
|
3752
3845
|
enabled:
|
|
@@ -3768,6 +3861,153 @@ components:
|
|
|
3768
3861
|
- hostname
|
|
3769
3862
|
title: DomainForwardCreateRequest
|
|
3770
3863
|
type: object
|
|
3864
|
+
DomainForwardDeleteBulkCommand:
|
|
3865
|
+
properties:
|
|
3866
|
+
command:
|
|
3867
|
+
const: domain_forward_delete_bulk
|
|
3868
|
+
default: domain_forward_delete_bulk
|
|
3869
|
+
title: Command
|
|
3870
|
+
type: string
|
|
3871
|
+
idempotency_key:
|
|
3872
|
+
anyOf:
|
|
3873
|
+
- type: string
|
|
3874
|
+
- type: 'null'
|
|
3875
|
+
description: Idempotency key for this bulk command
|
|
3876
|
+
title: Idempotency Key
|
|
3877
|
+
payload:
|
|
3878
|
+
$ref: '#/components/schemas/DomainForwardDeleteBulkPayload'
|
|
3879
|
+
description: Bulk domain forward delete payload
|
|
3880
|
+
version:
|
|
3881
|
+
default: v1
|
|
3882
|
+
description: Command version
|
|
3883
|
+
title: Version
|
|
3884
|
+
type: string
|
|
3885
|
+
required:
|
|
3886
|
+
- payload
|
|
3887
|
+
title: DomainForwardDeleteBulkCommand
|
|
3888
|
+
type: object
|
|
3889
|
+
DomainForwardDeleteBulkInstance:
|
|
3890
|
+
properties:
|
|
3891
|
+
hostname:
|
|
3892
|
+
description: Hostname to delete forwarding for
|
|
3893
|
+
title: Hostname
|
|
3894
|
+
type: string
|
|
3895
|
+
required:
|
|
3896
|
+
- hostname
|
|
3897
|
+
title: DomainForwardDeleteBulkInstance
|
|
3898
|
+
type: object
|
|
3899
|
+
DomainForwardDeleteBulkPayload:
|
|
3900
|
+
properties:
|
|
3901
|
+
instances:
|
|
3902
|
+
description: List of hostnames to delete forwarding for (1-1000)
|
|
3903
|
+
items:
|
|
3904
|
+
$ref: '#/components/schemas/DomainForwardDeleteBulkInstance'
|
|
3905
|
+
maxItems: 1000
|
|
3906
|
+
minItems: 1
|
|
3907
|
+
title: Instances
|
|
3908
|
+
type: array
|
|
3909
|
+
required:
|
|
3910
|
+
- instances
|
|
3911
|
+
title: DomainForwardDeleteBulkPayload
|
|
3912
|
+
type: object
|
|
3913
|
+
DomainForwardDisableBulkCommand:
|
|
3914
|
+
properties:
|
|
3915
|
+
command:
|
|
3916
|
+
const: domain_forward_disable_bulk
|
|
3917
|
+
default: domain_forward_disable_bulk
|
|
3918
|
+
title: Command
|
|
3919
|
+
type: string
|
|
3920
|
+
idempotency_key:
|
|
3921
|
+
anyOf:
|
|
3922
|
+
- type: string
|
|
3923
|
+
- type: 'null'
|
|
3924
|
+
description: Idempotency key for this bulk command
|
|
3925
|
+
title: Idempotency Key
|
|
3926
|
+
payload:
|
|
3927
|
+
$ref: '#/components/schemas/DomainForwardDisableBulkPayload'
|
|
3928
|
+
description: Bulk domain forward disable payload
|
|
3929
|
+
version:
|
|
3930
|
+
default: v1
|
|
3931
|
+
description: Command version
|
|
3932
|
+
title: Version
|
|
3933
|
+
type: string
|
|
3934
|
+
required:
|
|
3935
|
+
- payload
|
|
3936
|
+
title: DomainForwardDisableBulkCommand
|
|
3937
|
+
type: object
|
|
3938
|
+
DomainForwardDisableBulkInstance:
|
|
3939
|
+
properties:
|
|
3940
|
+
hostname:
|
|
3941
|
+
description: Hostname to disable forwarding for
|
|
3942
|
+
title: Hostname
|
|
3943
|
+
type: string
|
|
3944
|
+
required:
|
|
3945
|
+
- hostname
|
|
3946
|
+
title: DomainForwardDisableBulkInstance
|
|
3947
|
+
type: object
|
|
3948
|
+
DomainForwardDisableBulkPayload:
|
|
3949
|
+
properties:
|
|
3950
|
+
instances:
|
|
3951
|
+
description: List of hostnames to disable forwarding for (1-1000)
|
|
3952
|
+
items:
|
|
3953
|
+
$ref: '#/components/schemas/DomainForwardDisableBulkInstance'
|
|
3954
|
+
maxItems: 1000
|
|
3955
|
+
minItems: 1
|
|
3956
|
+
title: Instances
|
|
3957
|
+
type: array
|
|
3958
|
+
required:
|
|
3959
|
+
- instances
|
|
3960
|
+
title: DomainForwardDisableBulkPayload
|
|
3961
|
+
type: object
|
|
3962
|
+
DomainForwardEnableBulkCommand:
|
|
3963
|
+
properties:
|
|
3964
|
+
command:
|
|
3965
|
+
const: domain_forward_enable_bulk
|
|
3966
|
+
default: domain_forward_enable_bulk
|
|
3967
|
+
title: Command
|
|
3968
|
+
type: string
|
|
3969
|
+
idempotency_key:
|
|
3970
|
+
anyOf:
|
|
3971
|
+
- type: string
|
|
3972
|
+
- type: 'null'
|
|
3973
|
+
description: Idempotency key for this bulk command
|
|
3974
|
+
title: Idempotency Key
|
|
3975
|
+
payload:
|
|
3976
|
+
$ref: '#/components/schemas/DomainForwardEnableBulkPayload'
|
|
3977
|
+
description: Bulk domain forward enable payload
|
|
3978
|
+
version:
|
|
3979
|
+
default: v1
|
|
3980
|
+
description: Command version
|
|
3981
|
+
title: Version
|
|
3982
|
+
type: string
|
|
3983
|
+
required:
|
|
3984
|
+
- payload
|
|
3985
|
+
title: DomainForwardEnableBulkCommand
|
|
3986
|
+
type: object
|
|
3987
|
+
DomainForwardEnableBulkInstance:
|
|
3988
|
+
properties:
|
|
3989
|
+
hostname:
|
|
3990
|
+
description: Hostname to enable forwarding for
|
|
3991
|
+
title: Hostname
|
|
3992
|
+
type: string
|
|
3993
|
+
required:
|
|
3994
|
+
- hostname
|
|
3995
|
+
title: DomainForwardEnableBulkInstance
|
|
3996
|
+
type: object
|
|
3997
|
+
DomainForwardEnableBulkPayload:
|
|
3998
|
+
properties:
|
|
3999
|
+
instances:
|
|
4000
|
+
description: List of hostnames to enable forwarding for (1-1000)
|
|
4001
|
+
items:
|
|
4002
|
+
$ref: '#/components/schemas/DomainForwardEnableBulkInstance'
|
|
4003
|
+
maxItems: 1000
|
|
4004
|
+
minItems: 1
|
|
4005
|
+
title: Instances
|
|
4006
|
+
type: array
|
|
4007
|
+
required:
|
|
4008
|
+
- instances
|
|
4009
|
+
title: DomainForwardEnableBulkPayload
|
|
4010
|
+
type: object
|
|
3771
4011
|
DomainForwardGeoStatsResponse:
|
|
3772
4012
|
properties:
|
|
3773
4013
|
results:
|
|
@@ -3962,6 +4202,95 @@ components:
|
|
|
3962
4202
|
- results
|
|
3963
4203
|
title: DomainForwardStatusCodeStatsResponse
|
|
3964
4204
|
type: object
|
|
4205
|
+
DomainForwardUpdateBulkCommand:
|
|
4206
|
+
properties:
|
|
4207
|
+
command:
|
|
4208
|
+
const: domain_forward_update_bulk
|
|
4209
|
+
default: domain_forward_update_bulk
|
|
4210
|
+
title: Command
|
|
4211
|
+
type: string
|
|
4212
|
+
idempotency_key:
|
|
4213
|
+
anyOf:
|
|
4214
|
+
- type: string
|
|
4215
|
+
- type: 'null'
|
|
4216
|
+
description: Idempotency key for this bulk command
|
|
4217
|
+
title: Idempotency Key
|
|
4218
|
+
payload:
|
|
4219
|
+
$ref: '#/components/schemas/DomainForwardUpdateBulkPayload'
|
|
4220
|
+
description: Bulk domain forward update payload
|
|
4221
|
+
version:
|
|
4222
|
+
default: v1
|
|
4223
|
+
description: Command version
|
|
4224
|
+
title: Version
|
|
4225
|
+
type: string
|
|
4226
|
+
required:
|
|
4227
|
+
- payload
|
|
4228
|
+
title: DomainForwardUpdateBulkCommand
|
|
4229
|
+
type: object
|
|
4230
|
+
DomainForwardUpdateBulkInstance:
|
|
4231
|
+
properties:
|
|
4232
|
+
enabled:
|
|
4233
|
+
anyOf:
|
|
4234
|
+
- type: boolean
|
|
4235
|
+
- type: 'null'
|
|
4236
|
+
description: Override enabled setting for this hostname
|
|
4237
|
+
title: Enabled
|
|
4238
|
+
hostname:
|
|
4239
|
+
description: Hostname to update forward for
|
|
4240
|
+
title: Hostname
|
|
4241
|
+
type: string
|
|
4242
|
+
http:
|
|
4243
|
+
anyOf:
|
|
4244
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4245
|
+
- type: 'null'
|
|
4246
|
+
description: Override HTTP redirects
|
|
4247
|
+
https:
|
|
4248
|
+
anyOf:
|
|
4249
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4250
|
+
- type: 'null'
|
|
4251
|
+
description: Override HTTPS redirects
|
|
4252
|
+
required:
|
|
4253
|
+
- hostname
|
|
4254
|
+
title: DomainForwardUpdateBulkInstance
|
|
4255
|
+
type: object
|
|
4256
|
+
DomainForwardUpdateBulkPayload:
|
|
4257
|
+
properties:
|
|
4258
|
+
instances:
|
|
4259
|
+
description: List of domain forwards to update (1-1000)
|
|
4260
|
+
items:
|
|
4261
|
+
$ref: '#/components/schemas/DomainForwardUpdateBulkInstance'
|
|
4262
|
+
maxItems: 1000
|
|
4263
|
+
minItems: 1
|
|
4264
|
+
title: Instances
|
|
4265
|
+
type: array
|
|
4266
|
+
template:
|
|
4267
|
+
$ref: '#/components/schemas/DomainForwardUpdateBulkTemplate'
|
|
4268
|
+
description: Shared settings for all domain forwards
|
|
4269
|
+
required:
|
|
4270
|
+
- template
|
|
4271
|
+
- instances
|
|
4272
|
+
title: DomainForwardUpdateBulkPayload
|
|
4273
|
+
type: object
|
|
4274
|
+
DomainForwardUpdateBulkTemplate:
|
|
4275
|
+
properties:
|
|
4276
|
+
enabled:
|
|
4277
|
+
description: Whether domain forward should be enabled
|
|
4278
|
+
title: Enabled
|
|
4279
|
+
type: boolean
|
|
4280
|
+
http:
|
|
4281
|
+
anyOf:
|
|
4282
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4283
|
+
- type: 'null'
|
|
4284
|
+
description: HTTP redirect definitions
|
|
4285
|
+
https:
|
|
4286
|
+
anyOf:
|
|
4287
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4288
|
+
- type: 'null'
|
|
4289
|
+
description: HTTPS redirect definitions
|
|
4290
|
+
required:
|
|
4291
|
+
- enabled
|
|
4292
|
+
title: DomainForwardUpdateBulkTemplate
|
|
4293
|
+
type: object
|
|
3965
4294
|
DomainForwardUserAgentStatsResponse:
|
|
3966
4295
|
properties:
|
|
3967
4296
|
results:
|
|
@@ -6570,6 +6899,11 @@ components:
|
|
|
6570
6899
|
dns_zone_update_bulk: '#/components/schemas/DnsZoneUpdateBulkCommand'
|
|
6571
6900
|
domain_create: '#/components/schemas/DomainCreateCommand'
|
|
6572
6901
|
domain_create_bulk: '#/components/schemas/DomainCreateBulkCommand'
|
|
6902
|
+
domain_forward_create_bulk: '#/components/schemas/DomainForwardCreateBulkCommand'
|
|
6903
|
+
domain_forward_delete_bulk: '#/components/schemas/DomainForwardDeleteBulkCommand'
|
|
6904
|
+
domain_forward_disable_bulk: '#/components/schemas/DomainForwardDisableBulkCommand'
|
|
6905
|
+
domain_forward_enable_bulk: '#/components/schemas/DomainForwardEnableBulkCommand'
|
|
6906
|
+
domain_forward_update_bulk: '#/components/schemas/DomainForwardUpdateBulkCommand'
|
|
6573
6907
|
domain_transfer: '#/components/schemas/DomainTransferCommand'
|
|
6574
6908
|
domain_transfer_bulk: '#/components/schemas/DomainTransferBulkCommand'
|
|
6575
6909
|
domain_update: '#/components/schemas/DomainUpdateCommand'
|
|
@@ -6598,6 +6932,11 @@ components:
|
|
|
6598
6932
|
- $ref: '#/components/schemas/ParkingEnableBulkCommand'
|
|
6599
6933
|
- $ref: '#/components/schemas/ParkingDisableBulkCommand'
|
|
6600
6934
|
- $ref: '#/components/schemas/ParkingDeleteBulkCommand'
|
|
6935
|
+
- $ref: '#/components/schemas/DomainForwardCreateBulkCommand'
|
|
6936
|
+
- $ref: '#/components/schemas/DomainForwardUpdateBulkCommand'
|
|
6937
|
+
- $ref: '#/components/schemas/DomainForwardEnableBulkCommand'
|
|
6938
|
+
- $ref: '#/components/schemas/DomainForwardDisableBulkCommand'
|
|
6939
|
+
- $ref: '#/components/schemas/DomainForwardDeleteBulkCommand'
|
|
6601
6940
|
maxItems: 50000
|
|
6602
6941
|
title: Commands
|
|
6603
6942
|
type: array
|
|
@@ -11650,7 +11989,7 @@ info:
|
|
|
11650
11989
|
\n\n"
|
|
11651
11990
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11652
11991
|
title: OpusDNS API
|
|
11653
|
-
version: 2026-06-11-
|
|
11992
|
+
version: 2026-06-11-121808
|
|
11654
11993
|
x-logo:
|
|
11655
11994
|
altText: OpusDNS API Reference
|
|
11656
11995
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4943,6 +4943,73 @@ export interface components {
|
|
|
4943
4943
|
/** Results */
|
|
4944
4944
|
results: components["schemas"]["BrowserStatsBucket"][];
|
|
4945
4945
|
};
|
|
4946
|
+
/** DomainForwardCreateBulkCommand */
|
|
4947
|
+
DomainForwardCreateBulkCommand: {
|
|
4948
|
+
/**
|
|
4949
|
+
* @description discriminator enum property added by openapi-typescript
|
|
4950
|
+
* @enum {string}
|
|
4951
|
+
*/
|
|
4952
|
+
command: "domain_forward_create_bulk";
|
|
4953
|
+
/**
|
|
4954
|
+
* Idempotency Key
|
|
4955
|
+
* @description Idempotency key for this bulk command
|
|
4956
|
+
*/
|
|
4957
|
+
idempotency_key?: string | null;
|
|
4958
|
+
/** @description Bulk domain forward create payload */
|
|
4959
|
+
payload: components["schemas"]["DomainForwardCreateBulkPayload"];
|
|
4960
|
+
/**
|
|
4961
|
+
* Version
|
|
4962
|
+
* @description Command version
|
|
4963
|
+
* @default v1
|
|
4964
|
+
*/
|
|
4965
|
+
version: string;
|
|
4966
|
+
};
|
|
4967
|
+
/** DomainForwardCreateBulkInstance */
|
|
4968
|
+
DomainForwardCreateBulkInstance: {
|
|
4969
|
+
/**
|
|
4970
|
+
* Enabled
|
|
4971
|
+
* @description Override enabled setting for this hostname
|
|
4972
|
+
*/
|
|
4973
|
+
enabled?: boolean | null;
|
|
4974
|
+
/**
|
|
4975
|
+
* Hostname
|
|
4976
|
+
* @description Hostname to create forward for
|
|
4977
|
+
*/
|
|
4978
|
+
hostname: string;
|
|
4979
|
+
/** @description Override HTTP redirects */
|
|
4980
|
+
http?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
4981
|
+
/** @description Override HTTPS redirects */
|
|
4982
|
+
https?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
4983
|
+
};
|
|
4984
|
+
/** DomainForwardCreateBulkPayload */
|
|
4985
|
+
DomainForwardCreateBulkPayload: {
|
|
4986
|
+
/**
|
|
4987
|
+
* Instances
|
|
4988
|
+
* @description List of domain forwards to create (1-1000)
|
|
4989
|
+
*/
|
|
4990
|
+
instances: components["schemas"]["DomainForwardCreateBulkInstance"][];
|
|
4991
|
+
/** @description Shared settings for all domain forwards */
|
|
4992
|
+
template: components["schemas"]["DomainForwardCreateBulkTemplate"];
|
|
4993
|
+
};
|
|
4994
|
+
/** DomainForwardCreateBulkTemplate */
|
|
4995
|
+
DomainForwardCreateBulkTemplate: {
|
|
4996
|
+
/**
|
|
4997
|
+
* Auto Create Zone
|
|
4998
|
+
* @description Create apex DNS zone automatically when missing
|
|
4999
|
+
* @default false
|
|
5000
|
+
*/
|
|
5001
|
+
auto_create_zone: boolean;
|
|
5002
|
+
/**
|
|
5003
|
+
* Enabled
|
|
5004
|
+
* @description Whether domain forward should be enabled
|
|
5005
|
+
* @default false
|
|
5006
|
+
*/
|
|
5007
|
+
enabled: boolean;
|
|
5008
|
+
/** @description HTTP redirect definitions */
|
|
5009
|
+
http?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
5010
|
+
/** @description HTTPS redirect definitions */
|
|
5011
|
+
https?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
5012
|
+
};
|
|
4946
5013
|
/** DomainForwardCreateRequest */
|
|
4947
5014
|
DomainForwardCreateRequest: {
|
|
4948
5015
|
/**
|
|
@@ -4955,6 +5022,117 @@ export interface components {
|
|
|
4955
5022
|
http?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
4956
5023
|
https?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
4957
5024
|
};
|
|
5025
|
+
/** DomainForwardDeleteBulkCommand */
|
|
5026
|
+
DomainForwardDeleteBulkCommand: {
|
|
5027
|
+
/**
|
|
5028
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5029
|
+
* @enum {string}
|
|
5030
|
+
*/
|
|
5031
|
+
command: "domain_forward_delete_bulk";
|
|
5032
|
+
/**
|
|
5033
|
+
* Idempotency Key
|
|
5034
|
+
* @description Idempotency key for this bulk command
|
|
5035
|
+
*/
|
|
5036
|
+
idempotency_key?: string | null;
|
|
5037
|
+
/** @description Bulk domain forward delete payload */
|
|
5038
|
+
payload: components["schemas"]["DomainForwardDeleteBulkPayload"];
|
|
5039
|
+
/**
|
|
5040
|
+
* Version
|
|
5041
|
+
* @description Command version
|
|
5042
|
+
* @default v1
|
|
5043
|
+
*/
|
|
5044
|
+
version: string;
|
|
5045
|
+
};
|
|
5046
|
+
/** DomainForwardDeleteBulkInstance */
|
|
5047
|
+
DomainForwardDeleteBulkInstance: {
|
|
5048
|
+
/**
|
|
5049
|
+
* Hostname
|
|
5050
|
+
* @description Hostname to delete forwarding for
|
|
5051
|
+
*/
|
|
5052
|
+
hostname: string;
|
|
5053
|
+
};
|
|
5054
|
+
/** DomainForwardDeleteBulkPayload */
|
|
5055
|
+
DomainForwardDeleteBulkPayload: {
|
|
5056
|
+
/**
|
|
5057
|
+
* Instances
|
|
5058
|
+
* @description List of hostnames to delete forwarding for (1-1000)
|
|
5059
|
+
*/
|
|
5060
|
+
instances: components["schemas"]["DomainForwardDeleteBulkInstance"][];
|
|
5061
|
+
};
|
|
5062
|
+
/** DomainForwardDisableBulkCommand */
|
|
5063
|
+
DomainForwardDisableBulkCommand: {
|
|
5064
|
+
/**
|
|
5065
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5066
|
+
* @enum {string}
|
|
5067
|
+
*/
|
|
5068
|
+
command: "domain_forward_disable_bulk";
|
|
5069
|
+
/**
|
|
5070
|
+
* Idempotency Key
|
|
5071
|
+
* @description Idempotency key for this bulk command
|
|
5072
|
+
*/
|
|
5073
|
+
idempotency_key?: string | null;
|
|
5074
|
+
/** @description Bulk domain forward disable payload */
|
|
5075
|
+
payload: components["schemas"]["DomainForwardDisableBulkPayload"];
|
|
5076
|
+
/**
|
|
5077
|
+
* Version
|
|
5078
|
+
* @description Command version
|
|
5079
|
+
* @default v1
|
|
5080
|
+
*/
|
|
5081
|
+
version: string;
|
|
5082
|
+
};
|
|
5083
|
+
/** DomainForwardDisableBulkInstance */
|
|
5084
|
+
DomainForwardDisableBulkInstance: {
|
|
5085
|
+
/**
|
|
5086
|
+
* Hostname
|
|
5087
|
+
* @description Hostname to disable forwarding for
|
|
5088
|
+
*/
|
|
5089
|
+
hostname: string;
|
|
5090
|
+
};
|
|
5091
|
+
/** DomainForwardDisableBulkPayload */
|
|
5092
|
+
DomainForwardDisableBulkPayload: {
|
|
5093
|
+
/**
|
|
5094
|
+
* Instances
|
|
5095
|
+
* @description List of hostnames to disable forwarding for (1-1000)
|
|
5096
|
+
*/
|
|
5097
|
+
instances: components["schemas"]["DomainForwardDisableBulkInstance"][];
|
|
5098
|
+
};
|
|
5099
|
+
/** DomainForwardEnableBulkCommand */
|
|
5100
|
+
DomainForwardEnableBulkCommand: {
|
|
5101
|
+
/**
|
|
5102
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5103
|
+
* @enum {string}
|
|
5104
|
+
*/
|
|
5105
|
+
command: "domain_forward_enable_bulk";
|
|
5106
|
+
/**
|
|
5107
|
+
* Idempotency Key
|
|
5108
|
+
* @description Idempotency key for this bulk command
|
|
5109
|
+
*/
|
|
5110
|
+
idempotency_key?: string | null;
|
|
5111
|
+
/** @description Bulk domain forward enable payload */
|
|
5112
|
+
payload: components["schemas"]["DomainForwardEnableBulkPayload"];
|
|
5113
|
+
/**
|
|
5114
|
+
* Version
|
|
5115
|
+
* @description Command version
|
|
5116
|
+
* @default v1
|
|
5117
|
+
*/
|
|
5118
|
+
version: string;
|
|
5119
|
+
};
|
|
5120
|
+
/** DomainForwardEnableBulkInstance */
|
|
5121
|
+
DomainForwardEnableBulkInstance: {
|
|
5122
|
+
/**
|
|
5123
|
+
* Hostname
|
|
5124
|
+
* @description Hostname to enable forwarding for
|
|
5125
|
+
*/
|
|
5126
|
+
hostname: string;
|
|
5127
|
+
};
|
|
5128
|
+
/** DomainForwardEnableBulkPayload */
|
|
5129
|
+
DomainForwardEnableBulkPayload: {
|
|
5130
|
+
/**
|
|
5131
|
+
* Instances
|
|
5132
|
+
* @description List of hostnames to enable forwarding for (1-1000)
|
|
5133
|
+
*/
|
|
5134
|
+
instances: components["schemas"]["DomainForwardEnableBulkInstance"][];
|
|
5135
|
+
};
|
|
4958
5136
|
/** DomainForwardGeoStatsResponse */
|
|
4959
5137
|
DomainForwardGeoStatsResponse: {
|
|
4960
5138
|
/** Results */
|
|
@@ -5056,6 +5234,66 @@ export interface components {
|
|
|
5056
5234
|
/** Results */
|
|
5057
5235
|
results: components["schemas"]["StatusCodeStatsBucket"][];
|
|
5058
5236
|
};
|
|
5237
|
+
/** DomainForwardUpdateBulkCommand */
|
|
5238
|
+
DomainForwardUpdateBulkCommand: {
|
|
5239
|
+
/**
|
|
5240
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5241
|
+
* @enum {string}
|
|
5242
|
+
*/
|
|
5243
|
+
command: "domain_forward_update_bulk";
|
|
5244
|
+
/**
|
|
5245
|
+
* Idempotency Key
|
|
5246
|
+
* @description Idempotency key for this bulk command
|
|
5247
|
+
*/
|
|
5248
|
+
idempotency_key?: string | null;
|
|
5249
|
+
/** @description Bulk domain forward update payload */
|
|
5250
|
+
payload: components["schemas"]["DomainForwardUpdateBulkPayload"];
|
|
5251
|
+
/**
|
|
5252
|
+
* Version
|
|
5253
|
+
* @description Command version
|
|
5254
|
+
* @default v1
|
|
5255
|
+
*/
|
|
5256
|
+
version: string;
|
|
5257
|
+
};
|
|
5258
|
+
/** DomainForwardUpdateBulkInstance */
|
|
5259
|
+
DomainForwardUpdateBulkInstance: {
|
|
5260
|
+
/**
|
|
5261
|
+
* Enabled
|
|
5262
|
+
* @description Override enabled setting for this hostname
|
|
5263
|
+
*/
|
|
5264
|
+
enabled?: boolean | null;
|
|
5265
|
+
/**
|
|
5266
|
+
* Hostname
|
|
5267
|
+
* @description Hostname to update forward for
|
|
5268
|
+
*/
|
|
5269
|
+
hostname: string;
|
|
5270
|
+
/** @description Override HTTP redirects */
|
|
5271
|
+
http?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
5272
|
+
/** @description Override HTTPS redirects */
|
|
5273
|
+
https?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
5274
|
+
};
|
|
5275
|
+
/** DomainForwardUpdateBulkPayload */
|
|
5276
|
+
DomainForwardUpdateBulkPayload: {
|
|
5277
|
+
/**
|
|
5278
|
+
* Instances
|
|
5279
|
+
* @description List of domain forwards to update (1-1000)
|
|
5280
|
+
*/
|
|
5281
|
+
instances: components["schemas"]["DomainForwardUpdateBulkInstance"][];
|
|
5282
|
+
/** @description Shared settings for all domain forwards */
|
|
5283
|
+
template: components["schemas"]["DomainForwardUpdateBulkTemplate"];
|
|
5284
|
+
};
|
|
5285
|
+
/** DomainForwardUpdateBulkTemplate */
|
|
5286
|
+
DomainForwardUpdateBulkTemplate: {
|
|
5287
|
+
/**
|
|
5288
|
+
* Enabled
|
|
5289
|
+
* @description Whether domain forward should be enabled
|
|
5290
|
+
*/
|
|
5291
|
+
enabled: boolean;
|
|
5292
|
+
/** @description HTTP redirect definitions */
|
|
5293
|
+
http?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
5294
|
+
/** @description HTTPS redirect definitions */
|
|
5295
|
+
https?: components["schemas"]["DomainForwardProtocolSetRequest"] | null;
|
|
5296
|
+
};
|
|
5059
5297
|
/** DomainForwardUserAgentStatsResponse */
|
|
5060
5298
|
DomainForwardUserAgentStatsResponse: {
|
|
5061
5299
|
/** Results */
|
|
@@ -6805,7 +7043,7 @@ export interface components {
|
|
|
6805
7043
|
* Commands
|
|
6806
7044
|
* @description List of commands to execute
|
|
6807
7045
|
*/
|
|
6808
|
-
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"])[];
|
|
7046
|
+
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"]["DomainForwardCreateBulkCommand"] | components["schemas"]["DomainForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardEnableBulkCommand"] | components["schemas"]["DomainForwardDisableBulkCommand"] | components["schemas"]["DomainForwardDeleteBulkCommand"])[];
|
|
6809
7047
|
/**
|
|
6810
7048
|
* Label
|
|
6811
7049
|
* @description Human-readable label for this batch
|