cloudflare
Version:
The official TypeScript library for the Cloudflare API
230 lines • 6.35 kB
TypeScript
import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import * as LANsAPI from 'cloudflare/resources/magic-transit/sites/lans';
import { SinglePage } from 'cloudflare/pagination';
export declare class LANs extends APIResource {
/**
* Creates a new LAN. If the site is in high availability mode, static_addressing
* is required along with secondary and virtual address.
*/
create(siteId: string, params: LANCreateParams, options?: Core.RequestOptions): Core.APIPromise<LANCreateResponse>;
/**
* Update a specific LAN.
*/
update(siteId: string, lanId: string, params: LANUpdateParams, options?: Core.RequestOptions): Core.APIPromise<LAN>;
/**
* Lists LANs associated with an account and site.
*/
list(siteId: string, params: LANListParams, options?: Core.RequestOptions): Core.PagePromise<LANsSinglePage, LAN>;
/**
* Remove a specific LAN.
*/
delete(siteId: string, lanId: string, params: LANDeleteParams, options?: Core.RequestOptions): Core.APIPromise<LAN>;
/**
* Get a specific LAN.
*/
get(siteId: string, lanId: string, params: LANGetParams, options?: Core.RequestOptions): Core.APIPromise<LAN>;
}
export declare class LANsSinglePage extends SinglePage<LAN> {
}
export interface DHCPRelay {
/**
* List of DHCP server IPs.
*/
server_addresses?: Array<string>;
}
export interface DHCPServer {
/**
* A valid IPv4 address.
*/
dhcp_pool_end?: string;
/**
* A valid IPv4 address.
*/
dhcp_pool_start?: string;
/**
* A valid IPv4 address.
*/
dns_server?: string;
/**
* Mapping of MAC addresses to IP addresses
*/
reservations?: Record<string, string>;
}
export interface LAN {
/**
* Identifier
*/
id?: string;
/**
* mark true to use this LAN for HA probing. only works for site with HA turned on.
* only one LAN can be set as the ha_link.
*/
ha_link?: boolean;
name?: string;
nat?: Nat;
physport?: number;
routed_subnets?: Array<RoutedSubnet>;
/**
* Identifier
*/
site_id?: string;
/**
* If the site is not configured in high availability mode, this configuration is
* optional (if omitted, use DHCP). However, if in high availability mode,
* static_address is required along with secondary and virtual address.
*/
static_addressing?: LANStaticAddressing;
/**
* VLAN port number.
*/
vlan_tag?: number;
}
/**
* If the site is not configured in high availability mode, this configuration is
* optional (if omitted, use DHCP). However, if in high availability mode,
* static_address is required along with secondary and virtual address.
*/
export interface LANStaticAddressing {
/**
* A valid CIDR notation representing an IP range.
*/
address: string;
dhcp_relay?: DHCPRelay;
dhcp_server?: DHCPServer;
/**
* A valid CIDR notation representing an IP range.
*/
secondary_address?: string;
/**
* A valid CIDR notation representing an IP range.
*/
virtual_address?: string;
}
export interface Nat {
/**
* A valid CIDR notation representing an IP range.
*/
static_prefix?: string;
}
export interface RoutedSubnet {
/**
* A valid IPv4 address.
*/
next_hop: string;
/**
* A valid CIDR notation representing an IP range.
*/
prefix: string;
nat?: Nat;
}
export type LANCreateResponse = Array<LAN>;
export interface LANCreateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
physport: number;
/**
* Body param: VLAN port number.
*/
vlan_tag: number;
/**
* Body param: mark true to use this LAN for HA probing. only works for site with
* HA turned on. only one LAN can be set as the ha_link.
*/
ha_link?: boolean;
/**
* Body param:
*/
name?: string;
/**
* Body param:
*/
nat?: Nat;
/**
* Body param:
*/
routed_subnets?: Array<RoutedSubnet>;
/**
* Body param: If the site is not configured in high availability mode, this
* configuration is optional (if omitted, use DHCP). However, if in high
* availability mode, static_address is required along with secondary and virtual
* address.
*/
static_addressing?: LANStaticAddressing;
}
export interface LANUpdateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
name?: string;
/**
* Body param:
*/
nat?: Nat;
/**
* Body param:
*/
physport?: number;
/**
* Body param:
*/
routed_subnets?: Array<RoutedSubnet>;
/**
* Body param: If the site is not configured in high availability mode, this
* configuration is optional (if omitted, use DHCP). However, if in high
* availability mode, static_address is required along with secondary and virtual
* address.
*/
static_addressing?: LANStaticAddressing;
/**
* Body param: VLAN port number.
*/
vlan_tag?: number;
}
export interface LANListParams {
/**
* Identifier
*/
account_id: string;
}
export interface LANDeleteParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface LANGetParams {
/**
* Identifier
*/
account_id: string;
}
export declare namespace LANs {
export import DHCPRelay = LANsAPI.DHCPRelay;
export import DHCPServer = LANsAPI.DHCPServer;
export import LAN = LANsAPI.LAN;
export import LANStaticAddressing = LANsAPI.LANStaticAddressing;
export import Nat = LANsAPI.Nat;
export import RoutedSubnet = LANsAPI.RoutedSubnet;
export import LANCreateResponse = LANsAPI.LANCreateResponse;
export import LANsSinglePage = LANsAPI.LANsSinglePage;
export import LANCreateParams = LANsAPI.LANCreateParams;
export import LANUpdateParams = LANsAPI.LANUpdateParams;
export import LANListParams = LANsAPI.LANListParams;
export import LANDeleteParams = LANsAPI.LANDeleteParams;
export import LANGetParams = LANsAPI.LANGetParams;
}
//# sourceMappingURL=lans.d.ts.map