@pulumi/juniper-mist 0.1.0 → 0.1.1
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/device/switch.d.ts +30 -6
- package/device/switch.js +2 -0
- package/device/switch.js.map +1 -1
- package/getConstWebhooks.d.ts +44 -0
- package/getConstWebhooks.js +48 -0
- package/getConstWebhooks.js.map +1 -0
- package/index.d.ts +3 -0
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/org/deviceprofileGateway.d.ts +0 -6
- package/org/deviceprofileGateway.js +0 -4
- package/org/deviceprofileGateway.js.map +1 -1
- package/org/networktemplate.d.ts +9 -6
- package/org/networktemplate.js.map +1 -1
- package/org/setting.d.ts +30 -3
- package/org/setting.js +4 -2
- package/org/setting.js.map +1 -1
- package/package.json +2 -2
- package/site/networktemplate.d.ts +18 -6
- package/site/networktemplate.js.map +1 -1
- package/types/input.d.ts +304 -93
- package/types/output.d.ts +322 -101
package/types/input.d.ts
CHANGED
|
@@ -508,7 +508,6 @@ export declare namespace device {
|
|
|
508
508
|
* when bfdMinimumIntervalIsConfigured alone
|
|
509
509
|
*/
|
|
510
510
|
bfdMultiplier?: pulumi.Input<number>;
|
|
511
|
-
communities?: pulumi.Input<pulumi.Input<inputs.device.GatewayBgpConfigCommunity>[]>;
|
|
512
511
|
/**
|
|
513
512
|
* BFD provides faster path failure detection and is enabled by default
|
|
514
513
|
*/
|
|
@@ -567,11 +566,6 @@ export declare namespace device {
|
|
|
567
566
|
*/
|
|
568
567
|
wanName?: pulumi.Input<string>;
|
|
569
568
|
}
|
|
570
|
-
interface GatewayBgpConfigCommunity {
|
|
571
|
-
id?: pulumi.Input<string>;
|
|
572
|
-
localPreference?: pulumi.Input<number>;
|
|
573
|
-
vpnName?: pulumi.Input<string>;
|
|
574
|
-
}
|
|
575
569
|
interface GatewayBgpConfigNeighbors {
|
|
576
570
|
/**
|
|
577
571
|
* If true, the BGP session to this neighbor will be administratively disabled/shutdown
|
|
@@ -600,21 +594,21 @@ export declare namespace device {
|
|
|
600
594
|
[key: string]: pulumi.Input<inputs.device.GatewayDhcpdConfigConfig>;
|
|
601
595
|
}>;
|
|
602
596
|
/**
|
|
603
|
-
* if set to `
|
|
597
|
+
* if set to `false`, disable the DHCP server
|
|
604
598
|
*/
|
|
605
599
|
enabled?: pulumi.Input<boolean>;
|
|
606
600
|
}
|
|
607
601
|
interface GatewayDhcpdConfigConfig {
|
|
608
602
|
/**
|
|
609
|
-
* if `type`==`local` - optional, if not defined, system one will be used
|
|
603
|
+
* if `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
|
|
610
604
|
*/
|
|
611
605
|
dnsServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
612
606
|
/**
|
|
613
|
-
* if `type`==`local` - optional, if not defined, system one will be used
|
|
607
|
+
* if `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
|
|
614
608
|
*/
|
|
615
609
|
dnsSuffixes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
616
610
|
/**
|
|
617
|
-
* Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
611
|
+
* if `type`==`local` or `type6`==`local`. Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
618
612
|
*/
|
|
619
613
|
fixedBindings?: pulumi.Input<{
|
|
620
614
|
[key: string]: pulumi.Input<inputs.device.GatewayDhcpdConfigConfigFixedBindings>;
|
|
@@ -644,7 +638,7 @@ export declare namespace device {
|
|
|
644
638
|
*/
|
|
645
639
|
leaseTime?: pulumi.Input<number>;
|
|
646
640
|
/**
|
|
647
|
-
* Property key is the DHCP option number
|
|
641
|
+
* if `type`==`local` or `type6`==`local`. Property key is the DHCP option number
|
|
648
642
|
*/
|
|
649
643
|
options?: pulumi.Input<{
|
|
650
644
|
[key: string]: pulumi.Input<inputs.device.GatewayDhcpdConfigConfigOptions>;
|
|
@@ -671,7 +665,7 @@ export declare namespace device {
|
|
|
671
665
|
*/
|
|
672
666
|
type6?: pulumi.Input<string>;
|
|
673
667
|
/**
|
|
674
|
-
* Property key is <enterprise number>:<sub option code>, with
|
|
668
|
+
* if `type`==`local` or `type6`==`local`. Property key is <enterprise number>:<sub option code>, with
|
|
675
669
|
* * enterprise number: 1-65535 (https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers)
|
|
676
670
|
* * sub option code: 1-255, sub-option code'
|
|
677
671
|
*/
|
|
@@ -708,9 +702,10 @@ export declare namespace device {
|
|
|
708
702
|
* enum: `critical`, `standard`, `strict`
|
|
709
703
|
*/
|
|
710
704
|
baseProfile?: pulumi.Input<string>;
|
|
711
|
-
|
|
705
|
+
/**
|
|
706
|
+
* Unique ID of the object instance in the Mist Organnization
|
|
707
|
+
*/
|
|
712
708
|
id?: pulumi.Input<string>;
|
|
713
|
-
modifiedTime?: pulumi.Input<number>;
|
|
714
709
|
name?: pulumi.Input<string>;
|
|
715
710
|
orgId?: pulumi.Input<string>;
|
|
716
711
|
overwrites?: pulumi.Input<pulumi.Input<inputs.device.GatewayIdpProfilesOverwrite>[]>;
|
|
@@ -744,14 +739,12 @@ export declare namespace device {
|
|
|
744
739
|
type?: pulumi.Input<string>;
|
|
745
740
|
}
|
|
746
741
|
interface GatewayNetwork {
|
|
747
|
-
createdTime?: pulumi.Input<number>;
|
|
748
742
|
/**
|
|
749
743
|
* whether to disallow Mist Devices in the network
|
|
750
744
|
*/
|
|
751
745
|
disallowMistServices?: pulumi.Input<boolean>;
|
|
752
746
|
gateway?: pulumi.Input<string>;
|
|
753
747
|
gateway6?: pulumi.Input<string>;
|
|
754
|
-
id?: pulumi.Input<string>;
|
|
755
748
|
internalAccess?: pulumi.Input<inputs.device.GatewayNetworkInternalAccess>;
|
|
756
749
|
/**
|
|
757
750
|
* whether this network has direct internet access
|
|
@@ -761,9 +754,11 @@ export declare namespace device {
|
|
|
761
754
|
* whether to allow clients in the network to talk to each other
|
|
762
755
|
*/
|
|
763
756
|
isolation?: pulumi.Input<boolean>;
|
|
764
|
-
|
|
757
|
+
/**
|
|
758
|
+
* whether to enable multicast support (only PIM-sparse mode is supported)
|
|
759
|
+
*/
|
|
760
|
+
multicast?: pulumi.Input<inputs.device.GatewayNetworkMulticast>;
|
|
765
761
|
name: pulumi.Input<string>;
|
|
766
|
-
orgId?: pulumi.Input<string>;
|
|
767
762
|
/**
|
|
768
763
|
* for a Network (usually LAN), it can be routable to other networks (e.g. OSPF)
|
|
769
764
|
*/
|
|
@@ -817,6 +812,25 @@ export declare namespace device {
|
|
|
817
812
|
*/
|
|
818
813
|
wanName?: pulumi.Input<string>;
|
|
819
814
|
}
|
|
815
|
+
interface GatewayNetworkMulticast {
|
|
816
|
+
/**
|
|
817
|
+
* if the network will only be the soruce of the multicast traffic, IGMP can be disabled
|
|
818
|
+
*/
|
|
819
|
+
disableIgmp?: pulumi.Input<boolean>;
|
|
820
|
+
enabled?: pulumi.Input<boolean>;
|
|
821
|
+
/**
|
|
822
|
+
* Group address to RP (rendezvous point) mapping. Property Key is the CIDR (example "225.1.0.3/32")
|
|
823
|
+
*/
|
|
824
|
+
groups?: pulumi.Input<{
|
|
825
|
+
[key: string]: pulumi.Input<inputs.device.GatewayNetworkMulticastGroups>;
|
|
826
|
+
}>;
|
|
827
|
+
}
|
|
828
|
+
interface GatewayNetworkMulticastGroups {
|
|
829
|
+
/**
|
|
830
|
+
* RP (rendezvous point) IP Address
|
|
831
|
+
*/
|
|
832
|
+
rpIp?: pulumi.Input<string>;
|
|
833
|
+
}
|
|
820
834
|
interface GatewayNetworkTenants {
|
|
821
835
|
addresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
822
836
|
}
|
|
@@ -1121,6 +1135,9 @@ export declare namespace device {
|
|
|
1121
1135
|
* if WAN interface is on a VLAN
|
|
1122
1136
|
*/
|
|
1123
1137
|
vlanId?: pulumi.Input<number>;
|
|
1138
|
+
/**
|
|
1139
|
+
* Property key is the VPN name
|
|
1140
|
+
*/
|
|
1124
1141
|
vpnPaths?: pulumi.Input<{
|
|
1125
1142
|
[key: string]: pulumi.Input<inputs.device.GatewayPortConfigVpnPaths>;
|
|
1126
1143
|
}>;
|
|
@@ -1132,6 +1149,16 @@ export declare namespace device {
|
|
|
1132
1149
|
* optional, if spoke should reach this port by a different IP
|
|
1133
1150
|
*/
|
|
1134
1151
|
wanExtIp?: pulumi.Input<string>;
|
|
1152
|
+
/**
|
|
1153
|
+
* Property Key is the destianation CIDR (e.g "100.100.100.0/24")
|
|
1154
|
+
*/
|
|
1155
|
+
wanExtraRoutes?: pulumi.Input<{
|
|
1156
|
+
[key: string]: pulumi.Input<inputs.device.GatewayPortConfigWanExtraRoutes>;
|
|
1157
|
+
}>;
|
|
1158
|
+
/**
|
|
1159
|
+
* if `usage`==`wan`
|
|
1160
|
+
*/
|
|
1161
|
+
wanProbeOverride?: pulumi.Input<inputs.device.GatewayPortConfigWanProbeOverride>;
|
|
1135
1162
|
/**
|
|
1136
1163
|
* optional, by default, source-NAT is performed on all WAN Ports using the interface-ip
|
|
1137
1164
|
*/
|
|
@@ -1190,19 +1217,23 @@ export declare namespace device {
|
|
|
1190
1217
|
}
|
|
1191
1218
|
interface GatewayPortConfigVpnPaths {
|
|
1192
1219
|
/**
|
|
1193
|
-
* enum: `broadband`, `lte`
|
|
1220
|
+
* Only if the VPN `type`==`hubSpoke`. enum: `broadband`, `lte`
|
|
1194
1221
|
*/
|
|
1195
1222
|
bfdProfile?: pulumi.Input<string>;
|
|
1196
1223
|
/**
|
|
1197
|
-
*
|
|
1224
|
+
* Only if the VPN `type`==`hubSpoke`. Whether to use tunnel mode. SSR only
|
|
1198
1225
|
*/
|
|
1199
1226
|
bfdUseTunnelMode?: pulumi.Input<boolean>;
|
|
1200
1227
|
/**
|
|
1201
|
-
*
|
|
1228
|
+
* Only if the VPN `type`==`mesh`
|
|
1229
|
+
*/
|
|
1230
|
+
linkName?: pulumi.Input<string>;
|
|
1231
|
+
/**
|
|
1232
|
+
* Only if the VPN `type`==`hubSpoke`. For a given VPN, when `path_selection.strategy`==`simple`, the preference for a path (lower is preferred)
|
|
1202
1233
|
*/
|
|
1203
1234
|
preference?: pulumi.Input<number>;
|
|
1204
1235
|
/**
|
|
1205
|
-
* enum: `hub`, `spoke`
|
|
1236
|
+
* Only if the VPN `type`==`hubSpoke`. enum: `hub`, `spoke`
|
|
1206
1237
|
*/
|
|
1207
1238
|
role?: pulumi.Input<string>;
|
|
1208
1239
|
trafficShaping?: pulumi.Input<inputs.device.GatewayPortConfigVpnPathsTrafficShaping>;
|
|
@@ -1215,6 +1246,16 @@ export declare namespace device {
|
|
|
1215
1246
|
classPercentages?: pulumi.Input<pulumi.Input<number>[]>;
|
|
1216
1247
|
enabled?: pulumi.Input<boolean>;
|
|
1217
1248
|
}
|
|
1249
|
+
interface GatewayPortConfigWanExtraRoutes {
|
|
1250
|
+
via?: pulumi.Input<string>;
|
|
1251
|
+
}
|
|
1252
|
+
interface GatewayPortConfigWanProbeOverride {
|
|
1253
|
+
ips?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1254
|
+
/**
|
|
1255
|
+
* enum: `broadband`, `lte`
|
|
1256
|
+
*/
|
|
1257
|
+
probeProfile?: pulumi.Input<string>;
|
|
1258
|
+
}
|
|
1218
1259
|
interface GatewayPortConfigWanSourceNat {
|
|
1219
1260
|
/**
|
|
1220
1261
|
* or to disable the source-nat
|
|
@@ -1677,6 +1718,7 @@ export declare namespace device {
|
|
|
1677
1718
|
/**
|
|
1678
1719
|
* required if
|
|
1679
1720
|
* - `type`==`dynamicGbp` (gbp_tag received from RADIUS)
|
|
1721
|
+
* - `type`==`gbpResource`
|
|
1680
1722
|
* - `type`==`staticGbp` (applying gbp tag against matching conditions)
|
|
1681
1723
|
*/
|
|
1682
1724
|
gbpTag?: pulumi.Input<number>;
|
|
@@ -1703,7 +1745,7 @@ export declare namespace device {
|
|
|
1703
1745
|
*/
|
|
1704
1746
|
radiusGroup?: pulumi.Input<string>;
|
|
1705
1747
|
/**
|
|
1706
|
-
* if `type`==`resource`
|
|
1748
|
+
* if `type`==`resource` or `type`==`gbpResource`
|
|
1707
1749
|
* empty means unrestricted, i.e. any
|
|
1708
1750
|
*/
|
|
1709
1751
|
specs?: pulumi.Input<pulumi.Input<inputs.device.SwitchAclTagsSpec>[]>;
|
|
@@ -1715,7 +1757,16 @@ export declare namespace device {
|
|
|
1715
1757
|
*/
|
|
1716
1758
|
subnets?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1717
1759
|
/**
|
|
1718
|
-
* enum:
|
|
1760
|
+
* enum:
|
|
1761
|
+
* * `any`: matching anything not identified
|
|
1762
|
+
* * `dynamicGbp`: from the gbpTag received from RADIUS
|
|
1763
|
+
* * `gbpResource`: can only be used in `dstTags`
|
|
1764
|
+
* * `mac`
|
|
1765
|
+
* * `network`
|
|
1766
|
+
* * `radiusGroup`
|
|
1767
|
+
* * `resource`: can only be used in `dstTags`
|
|
1768
|
+
* * `staticGbp`: applying gbp tag against matching conditions
|
|
1769
|
+
* * `subnet`'
|
|
1719
1770
|
*/
|
|
1720
1771
|
type: pulumi.Input<string>;
|
|
1721
1772
|
}
|
|
@@ -1759,37 +1810,37 @@ export declare namespace device {
|
|
|
1759
1810
|
}
|
|
1760
1811
|
interface SwitchDhcpdConfigConfig {
|
|
1761
1812
|
/**
|
|
1762
|
-
* if `type`==`
|
|
1813
|
+
* if `type`==`server` or `type6`==`server` - optional, if not defined, system one will be used
|
|
1763
1814
|
*/
|
|
1764
1815
|
dnsServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1765
1816
|
/**
|
|
1766
|
-
* if `type`==`
|
|
1817
|
+
* if `type`==`server` or `type6`==`server` - optional, if not defined, system one will be used
|
|
1767
1818
|
*/
|
|
1768
1819
|
dnsSuffixes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1769
1820
|
/**
|
|
1770
|
-
* Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
1821
|
+
* if `type`==`server` or `type6`==`server`. Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
1771
1822
|
*/
|
|
1772
1823
|
fixedBindings?: pulumi.Input<{
|
|
1773
1824
|
[key: string]: pulumi.Input<inputs.device.SwitchDhcpdConfigConfigFixedBindings>;
|
|
1774
1825
|
}>;
|
|
1775
1826
|
/**
|
|
1776
|
-
* if `type`==`
|
|
1827
|
+
* if `type`==`server` - optional, `ip` will be used if not provided
|
|
1777
1828
|
*/
|
|
1778
1829
|
gateway?: pulumi.Input<string>;
|
|
1779
1830
|
/**
|
|
1780
|
-
* if `type`==`
|
|
1831
|
+
* if `type`==`server`
|
|
1781
1832
|
*/
|
|
1782
1833
|
ipEnd?: pulumi.Input<string>;
|
|
1783
1834
|
/**
|
|
1784
|
-
* if `type6`==`
|
|
1835
|
+
* if `type6`==`server`
|
|
1785
1836
|
*/
|
|
1786
1837
|
ipEnd6?: pulumi.Input<string>;
|
|
1787
1838
|
/**
|
|
1788
|
-
* if `type`==`
|
|
1839
|
+
* if `type`==`server`
|
|
1789
1840
|
*/
|
|
1790
1841
|
ipStart?: pulumi.Input<string>;
|
|
1791
1842
|
/**
|
|
1792
|
-
* if `type6`==`
|
|
1843
|
+
* if `type6`==`server`
|
|
1793
1844
|
*/
|
|
1794
1845
|
ipStart6?: pulumi.Input<string>;
|
|
1795
1846
|
/**
|
|
@@ -1797,7 +1848,7 @@ export declare namespace device {
|
|
|
1797
1848
|
*/
|
|
1798
1849
|
leaseTime?: pulumi.Input<number>;
|
|
1799
1850
|
/**
|
|
1800
|
-
* Property key is the DHCP option number
|
|
1851
|
+
* if `type`==`server` or `type6`==`server`. Property key is the DHCP option number
|
|
1801
1852
|
*/
|
|
1802
1853
|
options?: pulumi.Input<{
|
|
1803
1854
|
[key: string]: pulumi.Input<inputs.device.SwitchDhcpdConfigConfigOptions>;
|
|
@@ -1824,7 +1875,7 @@ export declare namespace device {
|
|
|
1824
1875
|
*/
|
|
1825
1876
|
type6?: pulumi.Input<string>;
|
|
1826
1877
|
/**
|
|
1827
|
-
* Property key is <enterprise number>:<sub option code>, with
|
|
1878
|
+
* if `type`==`server` or `type6`==`server`. Property key is <enterprise number>:<sub option code>, with
|
|
1828
1879
|
* * enterprise number: 1-65535 (https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers)
|
|
1829
1880
|
* * sub option code: 1-255, sub-option code'
|
|
1830
1881
|
*/
|
|
@@ -1918,6 +1969,36 @@ export declare namespace device {
|
|
|
1918
1969
|
*/
|
|
1919
1970
|
type?: pulumi.Input<string>;
|
|
1920
1971
|
}
|
|
1972
|
+
interface SwitchLocalPortConfig {
|
|
1973
|
+
/**
|
|
1974
|
+
* if want to generate port up/down alarm
|
|
1975
|
+
*/
|
|
1976
|
+
critical?: pulumi.Input<boolean>;
|
|
1977
|
+
description?: pulumi.Input<string>;
|
|
1978
|
+
/**
|
|
1979
|
+
* if `speed` and `duplex` are specified, whether to disable autonegotiation
|
|
1980
|
+
*/
|
|
1981
|
+
disableAutoneg?: pulumi.Input<boolean>;
|
|
1982
|
+
/**
|
|
1983
|
+
* enum: `auto`, `full`, `half`
|
|
1984
|
+
*/
|
|
1985
|
+
duplex?: pulumi.Input<string>;
|
|
1986
|
+
/**
|
|
1987
|
+
* media maximum transmission unit (MTU) is the largest data unit that can be forwarded without fragmentation
|
|
1988
|
+
*/
|
|
1989
|
+
mtu?: pulumi.Input<number>;
|
|
1990
|
+
poeDisabled?: pulumi.Input<boolean>;
|
|
1991
|
+
/**
|
|
1992
|
+
* enum: `100m`, `10m`, `1g`, `2.5g`, `5g`, `auto`
|
|
1993
|
+
*/
|
|
1994
|
+
speed?: pulumi.Input<string>;
|
|
1995
|
+
/**
|
|
1996
|
+
* port usage name.
|
|
1997
|
+
*
|
|
1998
|
+
* If EVPN is used, use `evpnUplink`or `evpnDownlink`
|
|
1999
|
+
*/
|
|
2000
|
+
usage: pulumi.Input<string>;
|
|
2001
|
+
}
|
|
1921
2002
|
interface SwitchMistNac {
|
|
1922
2003
|
enabled?: pulumi.Input<boolean>;
|
|
1923
2004
|
network?: pulumi.Input<string>;
|
|
@@ -2246,6 +2327,10 @@ export declare namespace device {
|
|
|
2246
2327
|
stpEdge?: pulumi.Input<boolean>;
|
|
2247
2328
|
stpNoRootPort?: pulumi.Input<boolean>;
|
|
2248
2329
|
stpP2p?: pulumi.Input<boolean>;
|
|
2330
|
+
/**
|
|
2331
|
+
* if this is connected to a vstp network
|
|
2332
|
+
*/
|
|
2333
|
+
useVstp?: pulumi.Input<boolean>;
|
|
2249
2334
|
/**
|
|
2250
2335
|
* Only if `mode`!=`dynamic` network/vlan for voip traffic, must also set port_network. to authenticate device, set port_auth
|
|
2251
2336
|
*/
|
|
@@ -2309,8 +2394,6 @@ export declare namespace device {
|
|
|
2309
2394
|
* radius auth session timeout
|
|
2310
2395
|
*/
|
|
2311
2396
|
authServersTimeout?: pulumi.Input<number>;
|
|
2312
|
-
coaEnabled?: pulumi.Input<boolean>;
|
|
2313
|
-
coaPort?: pulumi.Input<number>;
|
|
2314
2397
|
/**
|
|
2315
2398
|
* use `network`or `sourceIp`
|
|
2316
2399
|
* which network the RADIUS server resides, if there's static IP for this network, we'd use it as source-ip
|
|
@@ -2674,9 +2757,9 @@ export declare namespace device {
|
|
|
2674
2757
|
}
|
|
2675
2758
|
interface SwitchStpConfig {
|
|
2676
2759
|
/**
|
|
2677
|
-
*
|
|
2760
|
+
* Switch STP priority: from `0k` to `15k`
|
|
2678
2761
|
*/
|
|
2679
|
-
|
|
2762
|
+
bridgePriority?: pulumi.Input<string>;
|
|
2680
2763
|
}
|
|
2681
2764
|
interface SwitchSwitchMgmt {
|
|
2682
2765
|
/**
|
|
@@ -3381,7 +3464,6 @@ export declare namespace org {
|
|
|
3381
3464
|
* when bfdMinimumIntervalIsConfigured alone
|
|
3382
3465
|
*/
|
|
3383
3466
|
bfdMultiplier?: pulumi.Input<number>;
|
|
3384
|
-
communities?: pulumi.Input<pulumi.Input<inputs.org.DeviceprofileGatewayBgpConfigCommunity>[]>;
|
|
3385
3467
|
/**
|
|
3386
3468
|
* BFD provides faster path failure detection and is enabled by default
|
|
3387
3469
|
*/
|
|
@@ -3440,11 +3522,6 @@ export declare namespace org {
|
|
|
3440
3522
|
*/
|
|
3441
3523
|
wanName?: pulumi.Input<string>;
|
|
3442
3524
|
}
|
|
3443
|
-
interface DeviceprofileGatewayBgpConfigCommunity {
|
|
3444
|
-
id?: pulumi.Input<string>;
|
|
3445
|
-
localPreference?: pulumi.Input<number>;
|
|
3446
|
-
vpnName?: pulumi.Input<string>;
|
|
3447
|
-
}
|
|
3448
3525
|
interface DeviceprofileGatewayBgpConfigNeighbors {
|
|
3449
3526
|
/**
|
|
3450
3527
|
* If true, the BGP session to this neighbor will be administratively disabled/shutdown
|
|
@@ -3467,21 +3544,21 @@ export declare namespace org {
|
|
|
3467
3544
|
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayDhcpdConfigConfig>;
|
|
3468
3545
|
}>;
|
|
3469
3546
|
/**
|
|
3470
|
-
* if set to `
|
|
3547
|
+
* if set to `false`, disable the DHCP server
|
|
3471
3548
|
*/
|
|
3472
3549
|
enabled?: pulumi.Input<boolean>;
|
|
3473
3550
|
}
|
|
3474
3551
|
interface DeviceprofileGatewayDhcpdConfigConfig {
|
|
3475
3552
|
/**
|
|
3476
|
-
* if `type`==`local` - optional, if not defined, system one will be used
|
|
3553
|
+
* if `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
|
|
3477
3554
|
*/
|
|
3478
3555
|
dnsServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3479
3556
|
/**
|
|
3480
|
-
* if `type`==`local` - optional, if not defined, system one will be used
|
|
3557
|
+
* if `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
|
|
3481
3558
|
*/
|
|
3482
3559
|
dnsSuffixes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3483
3560
|
/**
|
|
3484
|
-
* Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
3561
|
+
* if `type`==`local` or `type6`==`local`. Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
3485
3562
|
*/
|
|
3486
3563
|
fixedBindings?: pulumi.Input<{
|
|
3487
3564
|
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayDhcpdConfigConfigFixedBindings>;
|
|
@@ -3511,7 +3588,7 @@ export declare namespace org {
|
|
|
3511
3588
|
*/
|
|
3512
3589
|
leaseTime?: pulumi.Input<number>;
|
|
3513
3590
|
/**
|
|
3514
|
-
* Property key is the DHCP option number
|
|
3591
|
+
* if `type`==`local` or `type6`==`local`. Property key is the DHCP option number
|
|
3515
3592
|
*/
|
|
3516
3593
|
options?: pulumi.Input<{
|
|
3517
3594
|
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayDhcpdConfigConfigOptions>;
|
|
@@ -3538,7 +3615,7 @@ export declare namespace org {
|
|
|
3538
3615
|
*/
|
|
3539
3616
|
type6?: pulumi.Input<string>;
|
|
3540
3617
|
/**
|
|
3541
|
-
* Property key is <enterprise number>:<sub option code>, with
|
|
3618
|
+
* if `type`==`local` or `type6`==`local`. Property key is <enterprise number>:<sub option code>, with
|
|
3542
3619
|
* * enterprise number: 1-65535 (https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers)
|
|
3543
3620
|
* * sub option code: 1-255, sub-option code'
|
|
3544
3621
|
*/
|
|
@@ -3623,6 +3700,10 @@ export declare namespace org {
|
|
|
3623
3700
|
* whether to allow clients in the network to talk to each other
|
|
3624
3701
|
*/
|
|
3625
3702
|
isolation?: pulumi.Input<boolean>;
|
|
3703
|
+
/**
|
|
3704
|
+
* whether to enable multicast support (only PIM-sparse mode is supported)
|
|
3705
|
+
*/
|
|
3706
|
+
multicast?: pulumi.Input<inputs.org.DeviceprofileGatewayNetworkMulticast>;
|
|
3626
3707
|
name: pulumi.Input<string>;
|
|
3627
3708
|
/**
|
|
3628
3709
|
* for a Network (usually LAN), it can be routable to other networks (e.g. OSPF)
|
|
@@ -3677,6 +3758,25 @@ export declare namespace org {
|
|
|
3677
3758
|
*/
|
|
3678
3759
|
wanName?: pulumi.Input<string>;
|
|
3679
3760
|
}
|
|
3761
|
+
interface DeviceprofileGatewayNetworkMulticast {
|
|
3762
|
+
/**
|
|
3763
|
+
* if the network will only be the soruce of the multicast traffic, IGMP can be disabled
|
|
3764
|
+
*/
|
|
3765
|
+
disableIgmp?: pulumi.Input<boolean>;
|
|
3766
|
+
enabled?: pulumi.Input<boolean>;
|
|
3767
|
+
/**
|
|
3768
|
+
* Group address to RP (rendezvous point) mapping. Property Key is the CIDR (example "225.1.0.3/32")
|
|
3769
|
+
*/
|
|
3770
|
+
groups?: pulumi.Input<{
|
|
3771
|
+
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayNetworkMulticastGroups>;
|
|
3772
|
+
}>;
|
|
3773
|
+
}
|
|
3774
|
+
interface DeviceprofileGatewayNetworkMulticastGroups {
|
|
3775
|
+
/**
|
|
3776
|
+
* RP (rendezvous point) IP Address
|
|
3777
|
+
*/
|
|
3778
|
+
rpIp?: pulumi.Input<string>;
|
|
3779
|
+
}
|
|
3680
3780
|
interface DeviceprofileGatewayNetworkTenants {
|
|
3681
3781
|
addresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3682
3782
|
}
|
|
@@ -3981,6 +4081,9 @@ export declare namespace org {
|
|
|
3981
4081
|
* if WAN interface is on a VLAN
|
|
3982
4082
|
*/
|
|
3983
4083
|
vlanId?: pulumi.Input<number>;
|
|
4084
|
+
/**
|
|
4085
|
+
* Property key is the VPN name
|
|
4086
|
+
*/
|
|
3984
4087
|
vpnPaths?: pulumi.Input<{
|
|
3985
4088
|
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayPortConfigVpnPaths>;
|
|
3986
4089
|
}>;
|
|
@@ -3992,6 +4095,16 @@ export declare namespace org {
|
|
|
3992
4095
|
* optional, if spoke should reach this port by a different IP
|
|
3993
4096
|
*/
|
|
3994
4097
|
wanExtIp?: pulumi.Input<string>;
|
|
4098
|
+
/**
|
|
4099
|
+
* Property Key is the destianation CIDR (e.g "100.100.100.0/24")
|
|
4100
|
+
*/
|
|
4101
|
+
wanExtraRoutes?: pulumi.Input<{
|
|
4102
|
+
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayPortConfigWanExtraRoutes>;
|
|
4103
|
+
}>;
|
|
4104
|
+
/**
|
|
4105
|
+
* if `usage`==`wan`
|
|
4106
|
+
*/
|
|
4107
|
+
wanProbeOverride?: pulumi.Input<inputs.org.DeviceprofileGatewayPortConfigWanProbeOverride>;
|
|
3995
4108
|
/**
|
|
3996
4109
|
* optional, by default, source-NAT is performed on all WAN Ports using the interface-ip
|
|
3997
4110
|
*/
|
|
@@ -4050,19 +4163,23 @@ export declare namespace org {
|
|
|
4050
4163
|
}
|
|
4051
4164
|
interface DeviceprofileGatewayPortConfigVpnPaths {
|
|
4052
4165
|
/**
|
|
4053
|
-
* enum: `broadband`, `lte`
|
|
4166
|
+
* Only if the VPN `type`==`hubSpoke`. enum: `broadband`, `lte`
|
|
4054
4167
|
*/
|
|
4055
4168
|
bfdProfile?: pulumi.Input<string>;
|
|
4056
4169
|
/**
|
|
4057
|
-
*
|
|
4170
|
+
* Only if the VPN `type`==`hubSpoke`. Whether to use tunnel mode. SSR only
|
|
4058
4171
|
*/
|
|
4059
4172
|
bfdUseTunnelMode?: pulumi.Input<boolean>;
|
|
4060
4173
|
/**
|
|
4061
|
-
*
|
|
4174
|
+
* Only if the VPN `type`==`mesh`
|
|
4175
|
+
*/
|
|
4176
|
+
linkName?: pulumi.Input<string>;
|
|
4177
|
+
/**
|
|
4178
|
+
* Only if the VPN `type`==`hubSpoke`. For a given VPN, when `path_selection.strategy`==`simple`, the preference for a path (lower is preferred)
|
|
4062
4179
|
*/
|
|
4063
4180
|
preference?: pulumi.Input<number>;
|
|
4064
4181
|
/**
|
|
4065
|
-
* enum: `hub`, `spoke`
|
|
4182
|
+
* Only if the VPN `type`==`hubSpoke`. enum: `hub`, `spoke`
|
|
4066
4183
|
*/
|
|
4067
4184
|
role?: pulumi.Input<string>;
|
|
4068
4185
|
trafficShaping?: pulumi.Input<inputs.org.DeviceprofileGatewayPortConfigVpnPathsTrafficShaping>;
|
|
@@ -4075,6 +4192,16 @@ export declare namespace org {
|
|
|
4075
4192
|
classPercentages?: pulumi.Input<pulumi.Input<number>[]>;
|
|
4076
4193
|
enabled?: pulumi.Input<boolean>;
|
|
4077
4194
|
}
|
|
4195
|
+
interface DeviceprofileGatewayPortConfigWanExtraRoutes {
|
|
4196
|
+
via?: pulumi.Input<string>;
|
|
4197
|
+
}
|
|
4198
|
+
interface DeviceprofileGatewayPortConfigWanProbeOverride {
|
|
4199
|
+
ips?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4200
|
+
/**
|
|
4201
|
+
* enum: `broadband`, `lte`
|
|
4202
|
+
*/
|
|
4203
|
+
probeProfile?: pulumi.Input<string>;
|
|
4204
|
+
}
|
|
4078
4205
|
interface DeviceprofileGatewayPortConfigWanSourceNat {
|
|
4079
4206
|
/**
|
|
4080
4207
|
* or to disable the source-nat
|
|
@@ -4515,7 +4642,6 @@ export declare namespace org {
|
|
|
4515
4642
|
* when bfdMinimumIntervalIsConfigured alone
|
|
4516
4643
|
*/
|
|
4517
4644
|
bfdMultiplier?: pulumi.Input<number>;
|
|
4518
|
-
communities?: pulumi.Input<pulumi.Input<inputs.org.GatewaytemplateBgpConfigCommunity>[]>;
|
|
4519
4645
|
/**
|
|
4520
4646
|
* BFD provides faster path failure detection and is enabled by default
|
|
4521
4647
|
*/
|
|
@@ -4574,11 +4700,6 @@ export declare namespace org {
|
|
|
4574
4700
|
*/
|
|
4575
4701
|
wanName?: pulumi.Input<string>;
|
|
4576
4702
|
}
|
|
4577
|
-
interface GatewaytemplateBgpConfigCommunity {
|
|
4578
|
-
id?: pulumi.Input<string>;
|
|
4579
|
-
localPreference?: pulumi.Input<number>;
|
|
4580
|
-
vpnName?: pulumi.Input<string>;
|
|
4581
|
-
}
|
|
4582
4703
|
interface GatewaytemplateBgpConfigNeighbors {
|
|
4583
4704
|
/**
|
|
4584
4705
|
* If true, the BGP session to this neighbor will be administratively disabled/shutdown
|
|
@@ -4601,21 +4722,21 @@ export declare namespace org {
|
|
|
4601
4722
|
[key: string]: pulumi.Input<inputs.org.GatewaytemplateDhcpdConfigConfig>;
|
|
4602
4723
|
}>;
|
|
4603
4724
|
/**
|
|
4604
|
-
* if set to `
|
|
4725
|
+
* if set to `false`, disable the DHCP server
|
|
4605
4726
|
*/
|
|
4606
4727
|
enabled?: pulumi.Input<boolean>;
|
|
4607
4728
|
}
|
|
4608
4729
|
interface GatewaytemplateDhcpdConfigConfig {
|
|
4609
4730
|
/**
|
|
4610
|
-
* if `type`==`local` - optional, if not defined, system one will be used
|
|
4731
|
+
* if `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
|
|
4611
4732
|
*/
|
|
4612
4733
|
dnsServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4613
4734
|
/**
|
|
4614
|
-
* if `type`==`local` - optional, if not defined, system one will be used
|
|
4735
|
+
* if `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
|
|
4615
4736
|
*/
|
|
4616
4737
|
dnsSuffixes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4617
4738
|
/**
|
|
4618
|
-
* Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
4739
|
+
* if `type`==`local` or `type6`==`local`. Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
4619
4740
|
*/
|
|
4620
4741
|
fixedBindings?: pulumi.Input<{
|
|
4621
4742
|
[key: string]: pulumi.Input<inputs.org.GatewaytemplateDhcpdConfigConfigFixedBindings>;
|
|
@@ -4645,7 +4766,7 @@ export declare namespace org {
|
|
|
4645
4766
|
*/
|
|
4646
4767
|
leaseTime?: pulumi.Input<number>;
|
|
4647
4768
|
/**
|
|
4648
|
-
* Property key is the DHCP option number
|
|
4769
|
+
* if `type`==`local` or `type6`==`local`. Property key is the DHCP option number
|
|
4649
4770
|
*/
|
|
4650
4771
|
options?: pulumi.Input<{
|
|
4651
4772
|
[key: string]: pulumi.Input<inputs.org.GatewaytemplateDhcpdConfigConfigOptions>;
|
|
@@ -4672,7 +4793,7 @@ export declare namespace org {
|
|
|
4672
4793
|
*/
|
|
4673
4794
|
type6?: pulumi.Input<string>;
|
|
4674
4795
|
/**
|
|
4675
|
-
* Property key is <enterprise number>:<sub option code>, with
|
|
4796
|
+
* if `type`==`local` or `type6`==`local`. Property key is <enterprise number>:<sub option code>, with
|
|
4676
4797
|
* * enterprise number: 1-65535 (https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers)
|
|
4677
4798
|
* * sub option code: 1-255, sub-option code'
|
|
4678
4799
|
*/
|
|
@@ -4757,6 +4878,10 @@ export declare namespace org {
|
|
|
4757
4878
|
* whether to allow clients in the network to talk to each other
|
|
4758
4879
|
*/
|
|
4759
4880
|
isolation?: pulumi.Input<boolean>;
|
|
4881
|
+
/**
|
|
4882
|
+
* whether to enable multicast support (only PIM-sparse mode is supported)
|
|
4883
|
+
*/
|
|
4884
|
+
multicast?: pulumi.Input<inputs.org.GatewaytemplateNetworkMulticast>;
|
|
4760
4885
|
name: pulumi.Input<string>;
|
|
4761
4886
|
/**
|
|
4762
4887
|
* for a Network (usually LAN), it can be routable to other networks (e.g. OSPF)
|
|
@@ -4811,6 +4936,25 @@ export declare namespace org {
|
|
|
4811
4936
|
*/
|
|
4812
4937
|
wanName?: pulumi.Input<string>;
|
|
4813
4938
|
}
|
|
4939
|
+
interface GatewaytemplateNetworkMulticast {
|
|
4940
|
+
/**
|
|
4941
|
+
* if the network will only be the soruce of the multicast traffic, IGMP can be disabled
|
|
4942
|
+
*/
|
|
4943
|
+
disableIgmp?: pulumi.Input<boolean>;
|
|
4944
|
+
enabled?: pulumi.Input<boolean>;
|
|
4945
|
+
/**
|
|
4946
|
+
* Group address to RP (rendezvous point) mapping. Property Key is the CIDR (example "225.1.0.3/32")
|
|
4947
|
+
*/
|
|
4948
|
+
groups?: pulumi.Input<{
|
|
4949
|
+
[key: string]: pulumi.Input<inputs.org.GatewaytemplateNetworkMulticastGroups>;
|
|
4950
|
+
}>;
|
|
4951
|
+
}
|
|
4952
|
+
interface GatewaytemplateNetworkMulticastGroups {
|
|
4953
|
+
/**
|
|
4954
|
+
* RP (rendezvous point) IP Address
|
|
4955
|
+
*/
|
|
4956
|
+
rpIp?: pulumi.Input<string>;
|
|
4957
|
+
}
|
|
4814
4958
|
interface GatewaytemplateNetworkTenants {
|
|
4815
4959
|
addresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4816
4960
|
}
|
|
@@ -5115,6 +5259,9 @@ export declare namespace org {
|
|
|
5115
5259
|
* if WAN interface is on a VLAN
|
|
5116
5260
|
*/
|
|
5117
5261
|
vlanId?: pulumi.Input<number>;
|
|
5262
|
+
/**
|
|
5263
|
+
* Property key is the VPN name
|
|
5264
|
+
*/
|
|
5118
5265
|
vpnPaths?: pulumi.Input<{
|
|
5119
5266
|
[key: string]: pulumi.Input<inputs.org.GatewaytemplatePortConfigVpnPaths>;
|
|
5120
5267
|
}>;
|
|
@@ -5126,6 +5273,16 @@ export declare namespace org {
|
|
|
5126
5273
|
* optional, if spoke should reach this port by a different IP
|
|
5127
5274
|
*/
|
|
5128
5275
|
wanExtIp?: pulumi.Input<string>;
|
|
5276
|
+
/**
|
|
5277
|
+
* Property Key is the destianation CIDR (e.g "100.100.100.0/24")
|
|
5278
|
+
*/
|
|
5279
|
+
wanExtraRoutes?: pulumi.Input<{
|
|
5280
|
+
[key: string]: pulumi.Input<inputs.org.GatewaytemplatePortConfigWanExtraRoutes>;
|
|
5281
|
+
}>;
|
|
5282
|
+
/**
|
|
5283
|
+
* if `usage`==`wan`
|
|
5284
|
+
*/
|
|
5285
|
+
wanProbeOverride?: pulumi.Input<inputs.org.GatewaytemplatePortConfigWanProbeOverride>;
|
|
5129
5286
|
/**
|
|
5130
5287
|
* optional, by default, source-NAT is performed on all WAN Ports using the interface-ip
|
|
5131
5288
|
*/
|
|
@@ -5184,19 +5341,23 @@ export declare namespace org {
|
|
|
5184
5341
|
}
|
|
5185
5342
|
interface GatewaytemplatePortConfigVpnPaths {
|
|
5186
5343
|
/**
|
|
5187
|
-
* enum: `broadband`, `lte`
|
|
5344
|
+
* Only if the VPN `type`==`hubSpoke`. enum: `broadband`, `lte`
|
|
5188
5345
|
*/
|
|
5189
5346
|
bfdProfile?: pulumi.Input<string>;
|
|
5190
5347
|
/**
|
|
5191
|
-
*
|
|
5348
|
+
* Only if the VPN `type`==`hubSpoke`. Whether to use tunnel mode. SSR only
|
|
5192
5349
|
*/
|
|
5193
5350
|
bfdUseTunnelMode?: pulumi.Input<boolean>;
|
|
5194
5351
|
/**
|
|
5195
|
-
*
|
|
5352
|
+
* Only if the VPN `type`==`mesh`
|
|
5353
|
+
*/
|
|
5354
|
+
linkName?: pulumi.Input<string>;
|
|
5355
|
+
/**
|
|
5356
|
+
* Only if the VPN `type`==`hubSpoke`. For a given VPN, when `path_selection.strategy`==`simple`, the preference for a path (lower is preferred)
|
|
5196
5357
|
*/
|
|
5197
5358
|
preference?: pulumi.Input<number>;
|
|
5198
5359
|
/**
|
|
5199
|
-
* enum: `hub`, `spoke`
|
|
5360
|
+
* Only if the VPN `type`==`hubSpoke`. enum: `hub`, `spoke`
|
|
5200
5361
|
*/
|
|
5201
5362
|
role?: pulumi.Input<string>;
|
|
5202
5363
|
trafficShaping?: pulumi.Input<inputs.org.GatewaytemplatePortConfigVpnPathsTrafficShaping>;
|
|
@@ -5209,6 +5370,16 @@ export declare namespace org {
|
|
|
5209
5370
|
classPercentages?: pulumi.Input<pulumi.Input<number>[]>;
|
|
5210
5371
|
enabled?: pulumi.Input<boolean>;
|
|
5211
5372
|
}
|
|
5373
|
+
interface GatewaytemplatePortConfigWanExtraRoutes {
|
|
5374
|
+
via?: pulumi.Input<string>;
|
|
5375
|
+
}
|
|
5376
|
+
interface GatewaytemplatePortConfigWanProbeOverride {
|
|
5377
|
+
ips?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5378
|
+
/**
|
|
5379
|
+
* enum: `broadband`, `lte`
|
|
5380
|
+
*/
|
|
5381
|
+
probeProfile?: pulumi.Input<string>;
|
|
5382
|
+
}
|
|
5212
5383
|
interface GatewaytemplatePortConfigWanSourceNat {
|
|
5213
5384
|
/**
|
|
5214
5385
|
* or to disable the source-nat
|
|
@@ -5931,6 +6102,7 @@ export declare namespace org {
|
|
|
5931
6102
|
/**
|
|
5932
6103
|
* required if
|
|
5933
6104
|
* - `type`==`dynamicGbp` (gbp_tag received from RADIUS)
|
|
6105
|
+
* - `type`==`gbpResource`
|
|
5934
6106
|
* - `type`==`staticGbp` (applying gbp tag against matching conditions)
|
|
5935
6107
|
*/
|
|
5936
6108
|
gbpTag?: pulumi.Input<number>;
|
|
@@ -5957,7 +6129,7 @@ export declare namespace org {
|
|
|
5957
6129
|
*/
|
|
5958
6130
|
radiusGroup?: pulumi.Input<string>;
|
|
5959
6131
|
/**
|
|
5960
|
-
* if `type`==`resource`
|
|
6132
|
+
* if `type`==`resource` or `type`==`gbpResource`
|
|
5961
6133
|
* empty means unrestricted, i.e. any
|
|
5962
6134
|
*/
|
|
5963
6135
|
specs?: pulumi.Input<pulumi.Input<inputs.org.NetworktemplateAclTagsSpec>[]>;
|
|
@@ -5969,7 +6141,16 @@ export declare namespace org {
|
|
|
5969
6141
|
*/
|
|
5970
6142
|
subnets?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5971
6143
|
/**
|
|
5972
|
-
* enum:
|
|
6144
|
+
* enum:
|
|
6145
|
+
* * `any`: matching anything not identified
|
|
6146
|
+
* * `dynamicGbp`: from the gbpTag received from RADIUS
|
|
6147
|
+
* * `gbpResource`: can only be used in `dstTags`
|
|
6148
|
+
* * `mac`
|
|
6149
|
+
* * `network`
|
|
6150
|
+
* * `radiusGroup`
|
|
6151
|
+
* * `resource`: can only be used in `dstTags`
|
|
6152
|
+
* * `staticGbp`: applying gbp tag against matching conditions
|
|
6153
|
+
* * `subnet`'
|
|
5973
6154
|
*/
|
|
5974
6155
|
type: pulumi.Input<string>;
|
|
5975
6156
|
}
|
|
@@ -6261,6 +6442,10 @@ export declare namespace org {
|
|
|
6261
6442
|
stpEdge?: pulumi.Input<boolean>;
|
|
6262
6443
|
stpNoRootPort?: pulumi.Input<boolean>;
|
|
6263
6444
|
stpP2p?: pulumi.Input<boolean>;
|
|
6445
|
+
/**
|
|
6446
|
+
* if this is connected to a vstp network
|
|
6447
|
+
*/
|
|
6448
|
+
useVstp?: pulumi.Input<boolean>;
|
|
6264
6449
|
/**
|
|
6265
6450
|
* Only if `mode`!=`dynamic` network/vlan for voip traffic, must also set port_network. to authenticate device, set port_auth
|
|
6266
6451
|
*/
|
|
@@ -6324,8 +6509,6 @@ export declare namespace org {
|
|
|
6324
6509
|
* radius auth session timeout
|
|
6325
6510
|
*/
|
|
6326
6511
|
authServersTimeout?: pulumi.Input<number>;
|
|
6327
|
-
coaEnabled?: pulumi.Input<boolean>;
|
|
6328
|
-
coaPort?: pulumi.Input<number>;
|
|
6329
6512
|
/**
|
|
6330
6513
|
* use `network`or `sourceIp`
|
|
6331
6514
|
* which network the RADIUS server resides, if there's static IP for this network, we'd use it as source-ip
|
|
@@ -6723,8 +6906,8 @@ export declare namespace org {
|
|
|
6723
6906
|
[key: string]: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRulePortConfig>;
|
|
6724
6907
|
}>;
|
|
6725
6908
|
/**
|
|
6726
|
-
* Property key is the port mirroring instance name
|
|
6727
|
-
* portMirroring can be added under device/site settings. It takes interface and ports as input for ingress, interface as input for egress and can take interface and port as output.
|
|
6909
|
+
* Property key is the port mirroring instance name
|
|
6910
|
+
* portMirroring can be added under device/site settings. It takes interface and ports as input for ingress, interface as input for egress and can take interface and port as output. A maximum 4 port mirrorings is allowed
|
|
6728
6911
|
*/
|
|
6729
6912
|
portMirroring?: pulumi.Input<{
|
|
6730
6913
|
[key: string]: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRulePortMirroring>;
|
|
@@ -7357,6 +7540,20 @@ export declare namespace org {
|
|
|
7357
7540
|
*/
|
|
7358
7541
|
orgId: pulumi.Input<string>;
|
|
7359
7542
|
}
|
|
7543
|
+
interface SettingJcloudRa {
|
|
7544
|
+
/**
|
|
7545
|
+
* JCloud Routing Assurance Org Token
|
|
7546
|
+
*/
|
|
7547
|
+
orgApitoken?: pulumi.Input<string>;
|
|
7548
|
+
/**
|
|
7549
|
+
* JCloud Routing Assurance Org Token Name
|
|
7550
|
+
*/
|
|
7551
|
+
orgApitokenName?: pulumi.Input<string>;
|
|
7552
|
+
/**
|
|
7553
|
+
* JCloud Routing Assurance Org ID
|
|
7554
|
+
*/
|
|
7555
|
+
orgId?: pulumi.Input<string>;
|
|
7556
|
+
}
|
|
7360
7557
|
interface SettingJuniper {
|
|
7361
7558
|
accounts?: pulumi.Input<pulumi.Input<inputs.org.SettingJuniperAccount>[]>;
|
|
7362
7559
|
}
|
|
@@ -7402,11 +7599,12 @@ export declare namespace org {
|
|
|
7402
7599
|
*/
|
|
7403
7600
|
euOnly?: pulumi.Input<boolean>;
|
|
7404
7601
|
/**
|
|
7405
|
-
* allow customer to choose the EAP-TLS client certificate's field to use for IDP Machine Groups lookup
|
|
7602
|
+
* allow customer to choose the EAP-TLS client certificate's field to use for IDP Machine Groups lookup. enum: `automatic`, `cn`, `dns`
|
|
7406
7603
|
*/
|
|
7407
7604
|
idpMachineCertLookupField?: pulumi.Input<string>;
|
|
7408
7605
|
/**
|
|
7409
|
-
* allow customer to choose the EAP-TLS client certificate's field
|
|
7606
|
+
* allow customer to choose the EAP-TLS client certificate's field
|
|
7607
|
+
* to use for IDP User Groups lookup. enum: `automatic`, `cn`, `email`, `upn`
|
|
7410
7608
|
*/
|
|
7411
7609
|
idpUserCertLookupField?: pulumi.Input<string>;
|
|
7412
7610
|
idps?: pulumi.Input<pulumi.Input<inputs.org.SettingMistNacIdp>[]>;
|
|
@@ -7462,6 +7660,16 @@ export declare namespace org {
|
|
|
7462
7660
|
oobIpType6?: pulumi.Input<string>;
|
|
7463
7661
|
rootPassword?: pulumi.Input<string>;
|
|
7464
7662
|
}
|
|
7663
|
+
interface SettingOpticPortConfig {
|
|
7664
|
+
/**
|
|
7665
|
+
* enable channelization
|
|
7666
|
+
*/
|
|
7667
|
+
channelized?: pulumi.Input<boolean>;
|
|
7668
|
+
/**
|
|
7669
|
+
* interface speed (e.g. `25g`, `50g`), use the chassis speed by default
|
|
7670
|
+
*/
|
|
7671
|
+
speed?: pulumi.Input<string>;
|
|
7672
|
+
}
|
|
7465
7673
|
interface SettingPasswordPolicy {
|
|
7466
7674
|
/**
|
|
7467
7675
|
* whether the policy is enabled
|
|
@@ -7491,15 +7699,6 @@ export declare namespace org {
|
|
|
7491
7699
|
*/
|
|
7492
7700
|
maxPktLen?: pulumi.Input<number>;
|
|
7493
7701
|
}
|
|
7494
|
-
interface SettingPortChannelization {
|
|
7495
|
-
/**
|
|
7496
|
-
* Property key is the interface name or range (e.g. `et-0/0/47`, `et-0/0/48-49`), Property value is the interface speed (e.g. `25g`, `50g`)
|
|
7497
|
-
*/
|
|
7498
|
-
config?: pulumi.Input<{
|
|
7499
|
-
[key: string]: pulumi.Input<string>;
|
|
7500
|
-
}>;
|
|
7501
|
-
enabled?: pulumi.Input<boolean>;
|
|
7502
|
-
}
|
|
7503
7702
|
interface SettingSecurity {
|
|
7504
7703
|
/**
|
|
7505
7704
|
* whether to disable local SSH (by default, local SSH is enabled with allowMist in Org is enabled
|
|
@@ -8971,6 +9170,7 @@ export declare namespace site {
|
|
|
8971
9170
|
/**
|
|
8972
9171
|
* required if
|
|
8973
9172
|
* - `type`==`dynamicGbp` (gbp_tag received from RADIUS)
|
|
9173
|
+
* - `type`==`gbpResource`
|
|
8974
9174
|
* - `type`==`staticGbp` (applying gbp tag against matching conditions)
|
|
8975
9175
|
*/
|
|
8976
9176
|
gbpTag?: pulumi.Input<number>;
|
|
@@ -8997,7 +9197,7 @@ export declare namespace site {
|
|
|
8997
9197
|
*/
|
|
8998
9198
|
radiusGroup?: pulumi.Input<string>;
|
|
8999
9199
|
/**
|
|
9000
|
-
* if `type`==`resource`
|
|
9200
|
+
* if `type`==`resource` or `type`==`gbpResource`
|
|
9001
9201
|
* empty means unrestricted, i.e. any
|
|
9002
9202
|
*/
|
|
9003
9203
|
specs?: pulumi.Input<pulumi.Input<inputs.site.NetworktemplateAclTagsSpec>[]>;
|
|
@@ -9009,7 +9209,16 @@ export declare namespace site {
|
|
|
9009
9209
|
*/
|
|
9010
9210
|
subnets?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9011
9211
|
/**
|
|
9012
|
-
* enum:
|
|
9212
|
+
* enum:
|
|
9213
|
+
* * `any`: matching anything not identified
|
|
9214
|
+
* * `dynamicGbp`: from the gbpTag received from RADIUS
|
|
9215
|
+
* * `gbpResource`: can only be used in `dstTags`
|
|
9216
|
+
* * `mac`
|
|
9217
|
+
* * `network`
|
|
9218
|
+
* * `radiusGroup`
|
|
9219
|
+
* * `resource`: can only be used in `dstTags`
|
|
9220
|
+
* * `staticGbp`: applying gbp tag against matching conditions
|
|
9221
|
+
* * `subnet`'
|
|
9013
9222
|
*/
|
|
9014
9223
|
type: pulumi.Input<string>;
|
|
9015
9224
|
}
|
|
@@ -9301,6 +9510,10 @@ export declare namespace site {
|
|
|
9301
9510
|
stpEdge?: pulumi.Input<boolean>;
|
|
9302
9511
|
stpNoRootPort?: pulumi.Input<boolean>;
|
|
9303
9512
|
stpP2p?: pulumi.Input<boolean>;
|
|
9513
|
+
/**
|
|
9514
|
+
* if this is connected to a vstp network
|
|
9515
|
+
*/
|
|
9516
|
+
useVstp?: pulumi.Input<boolean>;
|
|
9304
9517
|
/**
|
|
9305
9518
|
* Only if `mode`!=`dynamic` network/vlan for voip traffic, must also set port_network. to authenticate device, set port_auth
|
|
9306
9519
|
*/
|
|
@@ -9364,8 +9577,6 @@ export declare namespace site {
|
|
|
9364
9577
|
* radius auth session timeout
|
|
9365
9578
|
*/
|
|
9366
9579
|
authServersTimeout?: pulumi.Input<number>;
|
|
9367
|
-
coaEnabled?: pulumi.Input<boolean>;
|
|
9368
|
-
coaPort?: pulumi.Input<number>;
|
|
9369
9580
|
/**
|
|
9370
9581
|
* use `network`or `sourceIp`
|
|
9371
9582
|
* which network the RADIUS server resides, if there's static IP for this network, we'd use it as source-ip
|
|
@@ -9763,8 +9974,8 @@ export declare namespace site {
|
|
|
9763
9974
|
[key: string]: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRulePortConfig>;
|
|
9764
9975
|
}>;
|
|
9765
9976
|
/**
|
|
9766
|
-
* Property key is the port mirroring instance name
|
|
9767
|
-
* portMirroring can be added under device/site settings. It takes interface and ports as input for ingress, interface as input for egress and can take interface and port as output.
|
|
9977
|
+
* Property key is the port mirroring instance name
|
|
9978
|
+
* portMirroring can be added under device/site settings. It takes interface and ports as input for ingress, interface as input for egress and can take interface and port as output. A maximum 4 port mirrorings is allowed
|
|
9768
9979
|
*/
|
|
9769
9980
|
portMirroring?: pulumi.Input<{
|
|
9770
9981
|
[key: string]: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRulePortMirroring>;
|