cloudflare
Version:
The official TypeScript library for the Cloudflare API
391 lines (345 loc) • 8.19 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../resource';
import * as Core from '../../../core';
import { SinglePage } from '../../../pagination';
export class WANs extends APIResource {
/**
* Creates a new Site WAN.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const wan of client.magicTransit.sites.wans.create(
* '023e105f4ecef8ad9ca31a8372d0c353',
* {
* account_id: '023e105f4ecef8ad9ca31a8372d0c353',
* physport: 1,
* },
* )) {
* // ...
* }
* ```
*/
create(
siteId: string,
params: WANCreateParams,
options?: Core.RequestOptions,
): Core.PagePromise<WANsSinglePage, WAN> {
const { account_id, ...body } = params;
return this._client.getAPIList(`/accounts/${account_id}/magic/sites/${siteId}/wans`, WANsSinglePage, {
body,
method: 'post',
...options,
});
}
/**
* Update a specific Site WAN.
*
* @example
* ```ts
* const wan = await client.magicTransit.sites.wans.update(
* '023e105f4ecef8ad9ca31a8372d0c353',
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
update(
siteId: string,
wanId: string,
params: WANUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<WAN> {
const { account_id, ...body } = params;
return (
this._client.put(`/accounts/${account_id}/magic/sites/${siteId}/wans/${wanId}`, {
body,
...options,
}) as Core.APIPromise<{ result: WAN }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Lists Site WANs associated with an account.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const wan of client.magicTransit.sites.wans.list(
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* )) {
* // ...
* }
* ```
*/
list(
siteId: string,
params: WANListParams,
options?: Core.RequestOptions,
): Core.PagePromise<WANsSinglePage, WAN> {
const { account_id } = params;
return this._client.getAPIList(
`/accounts/${account_id}/magic/sites/${siteId}/wans`,
WANsSinglePage,
options,
);
}
/**
* Remove a specific Site WAN.
*
* @example
* ```ts
* const wan = await client.magicTransit.sites.wans.delete(
* '023e105f4ecef8ad9ca31a8372d0c353',
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
delete(
siteId: string,
wanId: string,
params: WANDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<WAN> {
const { account_id } = params;
return (
this._client.delete(
`/accounts/${account_id}/magic/sites/${siteId}/wans/${wanId}`,
options,
) as Core.APIPromise<{ result: WAN }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Patch a specific Site WAN.
*
* @example
* ```ts
* const wan = await client.magicTransit.sites.wans.edit(
* '023e105f4ecef8ad9ca31a8372d0c353',
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
edit(
siteId: string,
wanId: string,
params: WANEditParams,
options?: Core.RequestOptions,
): Core.APIPromise<WAN> {
const { account_id, ...body } = params;
return (
this._client.patch(`/accounts/${account_id}/magic/sites/${siteId}/wans/${wanId}`, {
body,
...options,
}) as Core.APIPromise<{ result: WAN }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Get a specific Site WAN.
*
* @example
* ```ts
* const wan = await client.magicTransit.sites.wans.get(
* '023e105f4ecef8ad9ca31a8372d0c353',
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
get(
siteId: string,
wanId: string,
params: WANGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<WAN> {
const { account_id } = params;
return (
this._client.get(
`/accounts/${account_id}/magic/sites/${siteId}/wans/${wanId}`,
options,
) as Core.APIPromise<{ result: WAN }>
)._thenUnwrap((obj) => obj.result);
}
}
export class WANsSinglePage extends SinglePage<WAN> {}
export interface WAN {
/**
* Identifier
*/
id?: string;
/**
* Magic WAN health check rate for tunnels created on this link. The default value
* is `mid`.
*/
health_check_rate?: 'low' | 'mid' | 'high';
name?: string;
physport?: number;
/**
* Priority of WAN for traffic loadbalancing.
*/
priority?: number;
/**
* Identifier
*/
site_id?: string;
/**
* (optional) if omitted, use DHCP. Submit secondary_address when site is in high
* availability mode.
*/
static_addressing?: WANStaticAddressing;
/**
* VLAN ID. Use zero for untagged.
*/
vlan_tag?: number;
}
/**
* (optional) if omitted, use DHCP. Submit secondary_address when site is in high
* availability mode.
*/
export interface WANStaticAddressing {
/**
* A valid CIDR notation representing an IP range.
*/
address: string;
/**
* A valid IPv4 address.
*/
gateway_address: string;
/**
* A valid CIDR notation representing an IP range.
*/
secondary_address?: string;
}
/**
* (optional) if omitted, use DHCP. Submit secondary_address when site is in high
* availability mode.
*/
export interface WANStaticAddressingParam {
/**
* A valid CIDR notation representing an IP range.
*/
address: string;
/**
* A valid IPv4 address.
*/
gateway_address: string;
/**
* A valid CIDR notation representing an IP range.
*/
secondary_address?: string;
}
export interface WANCreateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
physport: number;
/**
* Body param:
*/
name?: string;
/**
* Body param:
*/
priority?: number;
/**
* Body param: (optional) if omitted, use DHCP. Submit secondary_address when site
* is in high availability mode.
*/
static_addressing?: WANStaticAddressingParam;
/**
* Body param: VLAN ID. Use zero for untagged.
*/
vlan_tag?: number;
}
export interface WANUpdateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
name?: string;
/**
* Body param:
*/
physport?: number;
/**
* Body param:
*/
priority?: number;
/**
* Body param: (optional) if omitted, use DHCP. Submit secondary_address when site
* is in high availability mode.
*/
static_addressing?: WANStaticAddressingParam;
/**
* Body param: VLAN ID. Use zero for untagged.
*/
vlan_tag?: number;
}
export interface WANListParams {
/**
* Identifier
*/
account_id: string;
}
export interface WANDeleteParams {
/**
* Identifier
*/
account_id: string;
}
export interface WANEditParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
name?: string;
/**
* Body param:
*/
physport?: number;
/**
* Body param:
*/
priority?: number;
/**
* Body param: (optional) if omitted, use DHCP. Submit secondary_address when site
* is in high availability mode.
*/
static_addressing?: WANStaticAddressingParam;
/**
* Body param: VLAN ID. Use zero for untagged.
*/
vlan_tag?: number;
}
export interface WANGetParams {
/**
* Identifier
*/
account_id: string;
}
WANs.WANsSinglePage = WANsSinglePage;
export declare namespace WANs {
export {
type WAN as WAN,
type WANStaticAddressing as WANStaticAddressing,
WANsSinglePage as WANsSinglePage,
type WANCreateParams as WANCreateParams,
type WANUpdateParams as WANUpdateParams,
type WANListParams as WANListParams,
type WANDeleteParams as WANDeleteParams,
type WANEditParams as WANEditParams,
type WANGetParams as WANGetParams,
};
}