@pulumi/juniper-mist 0.2.1 → 0.2.3-alpha.1740713631
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/ap.d.ts +75 -54
- package/device/ap.js +2 -0
- package/device/ap.js.map +1 -1
- package/device/base.d.ts +1 -1
- package/device/base.js +1 -1
- package/device/gateway.d.ts +24 -24
- package/device/getVersions.d.ts +83 -0
- package/device/getVersions.js +58 -0
- package/device/getVersions.js.map +1 -0
- package/device/image.d.ts +1 -1
- package/device/image.js +1 -1
- package/device/index.d.ts +3 -0
- package/device/index.js +4 -1
- package/device/index.js.map +1 -1
- package/device/switch.d.ts +39 -39
- package/index.d.ts +3 -0
- package/index.js +15 -1
- package/index.js.map +1 -1
- package/org/avprofile.d.ts +128 -0
- package/org/avprofile.js +111 -0
- package/org/avprofile.js.map +1 -0
- package/org/deviceprofileAp.d.ts +36 -30
- package/org/deviceprofileAp.js.map +1 -1
- package/org/deviceprofileGateway.d.ts +9 -9
- package/org/gatewaytemplate.d.ts +9 -9
- package/org/getAvprofiles.d.ts +71 -0
- package/org/getAvprofiles.js +66 -0
- package/org/getAvprofiles.js.map +1 -0
- package/org/getSsoRoles.d.ts +2 -2
- package/org/getSsoRoles.js +2 -2
- package/org/index.d.ts +6 -0
- package/org/index.js +10 -2
- package/org/index.js.map +1 -1
- package/org/inventory.d.ts +4 -4
- package/org/inventory.js +1 -1
- package/org/nactag.d.ts +54 -39
- package/org/nactag.js +2 -0
- package/org/nactag.js.map +1 -1
- package/org/networktemplate.d.ts +12 -12
- package/org/rftemplate.d.ts +6 -6
- package/org/servicepolicy.d.ts +29 -8
- package/org/servicepolicy.js +5 -1
- package/org/servicepolicy.js.map +1 -1
- package/org/setting.d.ts +24 -24
- package/org/sso.d.ts +11 -11
- package/org/ssoRole.d.ts +1 -1
- package/org/ssoRole.js +1 -1
- package/org/webhook.d.ts +39 -42
- package/org/webhook.js.map +1 -1
- package/org/wlan.d.ts +233 -233
- package/org/wlanPortalTemplate.d.ts +3 -3
- package/package.json +2 -2
- package/site/base.d.ts +1 -1
- package/site/base.js +1 -1
- package/site/networktemplate.d.ts +15 -15
- package/site/setting.d.ts +49 -49
- package/site/setting.js +1 -1
- package/site/webhook.d.ts +39 -42
- package/site/webhook.js.map +1 -1
- package/site/wlan.d.ts +233 -233
- package/site/wlanPortalTemplate.d.ts +3 -3
- package/types/input.d.ts +1405 -1277
- package/types/output.d.ts +1788 -1608
- package/upgradeDevice.d.ts +208 -0
- package/upgradeDevice.js +116 -0
- package/upgradeDevice.js.map +1 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This resource manages the Org Antivirus Profile.
|
|
4
|
+
*
|
|
5
|
+
* An Antivirus Profile is used to configure the Antivirus feature on SRX devices. It specifies which content the Antivirus should analyse and which content should be ignored.
|
|
6
|
+
*
|
|
7
|
+
* The Antivirus profiles can be used within the following resources:
|
|
8
|
+
* * `mist_org_servicepolicy.antivirus`
|
|
9
|
+
* * `mist_org_gatewaytemplate.service_policies.antivirus`
|
|
10
|
+
* * `mist_org_deviceprofile_gateway.service_policies.antivirus`
|
|
11
|
+
* * `mist_device_gateway.service_policies.antivirus`
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as junipermist from "@pulumi/juniper-mist";
|
|
18
|
+
*
|
|
19
|
+
* const avprofileOne = new junipermist.org.Avprofile("avprofile_one", {
|
|
20
|
+
* orgId: terraformTest.id,
|
|
21
|
+
* fallbackAction: "block",
|
|
22
|
+
* maxFilesize: 5000,
|
|
23
|
+
* mimeWhitelists: ["image/png"],
|
|
24
|
+
* name: "avprofile_one",
|
|
25
|
+
* protocols: [
|
|
26
|
+
* "ftp",
|
|
27
|
+
* "http",
|
|
28
|
+
* "imap",
|
|
29
|
+
* "pop3",
|
|
30
|
+
* "smtp",
|
|
31
|
+
* ],
|
|
32
|
+
* urlWhitelists: ["www.google.fr"],
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* ## Import
|
|
37
|
+
*
|
|
38
|
+
* Using `pulumi import`, import `mist_org_avprofile` with:
|
|
39
|
+
*
|
|
40
|
+
* IDP Profile can be imported by specifying the org_id and the avprofile_id
|
|
41
|
+
*
|
|
42
|
+
* ```sh
|
|
43
|
+
* $ pulumi import junipermist:org/avprofile:Avprofile avprofile_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
export declare class Avprofile extends pulumi.CustomResource {
|
|
47
|
+
/**
|
|
48
|
+
* Get an existing Avprofile resource's state with the given name, ID, and optional extra
|
|
49
|
+
* properties used to qualify the lookup.
|
|
50
|
+
*
|
|
51
|
+
* @param name The _unique_ name of the resulting resource.
|
|
52
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
53
|
+
* @param state Any extra arguments used during the lookup.
|
|
54
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
55
|
+
*/
|
|
56
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AvprofileState, opts?: pulumi.CustomResourceOptions): Avprofile;
|
|
57
|
+
/**
|
|
58
|
+
* Returns true if the given object is an instance of Avprofile. This is designed to work even
|
|
59
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
60
|
+
*/
|
|
61
|
+
static isInstance(obj: any): obj is Avprofile;
|
|
62
|
+
/**
|
|
63
|
+
* enum: `block`, `permit`
|
|
64
|
+
*/
|
|
65
|
+
readonly fallbackAction: pulumi.Output<string | undefined>;
|
|
66
|
+
/**
|
|
67
|
+
* In KB
|
|
68
|
+
*/
|
|
69
|
+
readonly maxFilesize: pulumi.Output<number>;
|
|
70
|
+
readonly mimeWhitelists: pulumi.Output<string[] | undefined>;
|
|
71
|
+
readonly name: pulumi.Output<string>;
|
|
72
|
+
readonly orgId: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* List of protocols to monitor. enum: `ftp`, `http`, `imap`, `pop3`, `smtp`
|
|
75
|
+
*/
|
|
76
|
+
readonly protocols: pulumi.Output<string[]>;
|
|
77
|
+
readonly urlWhitelists: pulumi.Output<string[] | undefined>;
|
|
78
|
+
/**
|
|
79
|
+
* Create a Avprofile resource with the given unique name, arguments, and options.
|
|
80
|
+
*
|
|
81
|
+
* @param name The _unique_ name of the resource.
|
|
82
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
83
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
84
|
+
*/
|
|
85
|
+
constructor(name: string, args: AvprofileArgs, opts?: pulumi.CustomResourceOptions);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Input properties used for looking up and filtering Avprofile resources.
|
|
89
|
+
*/
|
|
90
|
+
export interface AvprofileState {
|
|
91
|
+
/**
|
|
92
|
+
* enum: `block`, `permit`
|
|
93
|
+
*/
|
|
94
|
+
fallbackAction?: pulumi.Input<string>;
|
|
95
|
+
/**
|
|
96
|
+
* In KB
|
|
97
|
+
*/
|
|
98
|
+
maxFilesize?: pulumi.Input<number>;
|
|
99
|
+
mimeWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
100
|
+
name?: pulumi.Input<string>;
|
|
101
|
+
orgId?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* List of protocols to monitor. enum: `ftp`, `http`, `imap`, `pop3`, `smtp`
|
|
104
|
+
*/
|
|
105
|
+
protocols?: pulumi.Input<pulumi.Input<string>[]>;
|
|
106
|
+
urlWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* The set of arguments for constructing a Avprofile resource.
|
|
110
|
+
*/
|
|
111
|
+
export interface AvprofileArgs {
|
|
112
|
+
/**
|
|
113
|
+
* enum: `block`, `permit`
|
|
114
|
+
*/
|
|
115
|
+
fallbackAction?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* In KB
|
|
118
|
+
*/
|
|
119
|
+
maxFilesize?: pulumi.Input<number>;
|
|
120
|
+
mimeWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
121
|
+
name?: pulumi.Input<string>;
|
|
122
|
+
orgId: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* List of protocols to monitor. enum: `ftp`, `http`, `imap`, `pop3`, `smtp`
|
|
125
|
+
*/
|
|
126
|
+
protocols: pulumi.Input<pulumi.Input<string>[]>;
|
|
127
|
+
urlWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
128
|
+
}
|
package/org/avprofile.js
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Avprofile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource manages the Org Antivirus Profile.
|
|
10
|
+
*
|
|
11
|
+
* An Antivirus Profile is used to configure the Antivirus feature on SRX devices. It specifies which content the Antivirus should analyse and which content should be ignored.
|
|
12
|
+
*
|
|
13
|
+
* The Antivirus profiles can be used within the following resources:
|
|
14
|
+
* * `mist_org_servicepolicy.antivirus`
|
|
15
|
+
* * `mist_org_gatewaytemplate.service_policies.antivirus`
|
|
16
|
+
* * `mist_org_deviceprofile_gateway.service_policies.antivirus`
|
|
17
|
+
* * `mist_device_gateway.service_policies.antivirus`
|
|
18
|
+
*
|
|
19
|
+
* ## Example Usage
|
|
20
|
+
*
|
|
21
|
+
* ```typescript
|
|
22
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
23
|
+
* import * as junipermist from "@pulumi/juniper-mist";
|
|
24
|
+
*
|
|
25
|
+
* const avprofileOne = new junipermist.org.Avprofile("avprofile_one", {
|
|
26
|
+
* orgId: terraformTest.id,
|
|
27
|
+
* fallbackAction: "block",
|
|
28
|
+
* maxFilesize: 5000,
|
|
29
|
+
* mimeWhitelists: ["image/png"],
|
|
30
|
+
* name: "avprofile_one",
|
|
31
|
+
* protocols: [
|
|
32
|
+
* "ftp",
|
|
33
|
+
* "http",
|
|
34
|
+
* "imap",
|
|
35
|
+
* "pop3",
|
|
36
|
+
* "smtp",
|
|
37
|
+
* ],
|
|
38
|
+
* urlWhitelists: ["www.google.fr"],
|
|
39
|
+
* });
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* ## Import
|
|
43
|
+
*
|
|
44
|
+
* Using `pulumi import`, import `mist_org_avprofile` with:
|
|
45
|
+
*
|
|
46
|
+
* IDP Profile can be imported by specifying the org_id and the avprofile_id
|
|
47
|
+
*
|
|
48
|
+
* ```sh
|
|
49
|
+
* $ pulumi import junipermist:org/avprofile:Avprofile avprofile_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
class Avprofile extends pulumi.CustomResource {
|
|
53
|
+
/**
|
|
54
|
+
* Get an existing Avprofile resource's state with the given name, ID, and optional extra
|
|
55
|
+
* properties used to qualify the lookup.
|
|
56
|
+
*
|
|
57
|
+
* @param name The _unique_ name of the resulting resource.
|
|
58
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
59
|
+
* @param state Any extra arguments used during the lookup.
|
|
60
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
61
|
+
*/
|
|
62
|
+
static get(name, id, state, opts) {
|
|
63
|
+
return new Avprofile(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns true if the given object is an instance of Avprofile. This is designed to work even
|
|
67
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
68
|
+
*/
|
|
69
|
+
static isInstance(obj) {
|
|
70
|
+
if (obj === undefined || obj === null) {
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
return obj['__pulumiType'] === Avprofile.__pulumiType;
|
|
74
|
+
}
|
|
75
|
+
constructor(name, argsOrState, opts) {
|
|
76
|
+
let resourceInputs = {};
|
|
77
|
+
opts = opts || {};
|
|
78
|
+
if (opts.id) {
|
|
79
|
+
const state = argsOrState;
|
|
80
|
+
resourceInputs["fallbackAction"] = state ? state.fallbackAction : undefined;
|
|
81
|
+
resourceInputs["maxFilesize"] = state ? state.maxFilesize : undefined;
|
|
82
|
+
resourceInputs["mimeWhitelists"] = state ? state.mimeWhitelists : undefined;
|
|
83
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
84
|
+
resourceInputs["orgId"] = state ? state.orgId : undefined;
|
|
85
|
+
resourceInputs["protocols"] = state ? state.protocols : undefined;
|
|
86
|
+
resourceInputs["urlWhitelists"] = state ? state.urlWhitelists : undefined;
|
|
87
|
+
}
|
|
88
|
+
else {
|
|
89
|
+
const args = argsOrState;
|
|
90
|
+
if ((!args || args.orgId === undefined) && !opts.urn) {
|
|
91
|
+
throw new Error("Missing required property 'orgId'");
|
|
92
|
+
}
|
|
93
|
+
if ((!args || args.protocols === undefined) && !opts.urn) {
|
|
94
|
+
throw new Error("Missing required property 'protocols'");
|
|
95
|
+
}
|
|
96
|
+
resourceInputs["fallbackAction"] = args ? args.fallbackAction : undefined;
|
|
97
|
+
resourceInputs["maxFilesize"] = args ? args.maxFilesize : undefined;
|
|
98
|
+
resourceInputs["mimeWhitelists"] = args ? args.mimeWhitelists : undefined;
|
|
99
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
100
|
+
resourceInputs["orgId"] = args ? args.orgId : undefined;
|
|
101
|
+
resourceInputs["protocols"] = args ? args.protocols : undefined;
|
|
102
|
+
resourceInputs["urlWhitelists"] = args ? args.urlWhitelists : undefined;
|
|
103
|
+
}
|
|
104
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
105
|
+
super(Avprofile.__pulumiType, name, resourceInputs, opts);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
exports.Avprofile = Avprofile;
|
|
109
|
+
/** @internal */
|
|
110
|
+
Avprofile.__pulumiType = 'junipermist:org/avprofile:Avprofile';
|
|
111
|
+
//# sourceMappingURL=avprofile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"avprofile.js","sourceRoot":"","sources":["../../org/avprofile.ts"],"names":[],"mappings":"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"}
|
package/org/deviceprofileAp.d.ts
CHANGED
|
@@ -59,19 +59,19 @@ export declare class DeviceprofileAp extends pulumi.CustomResource {
|
|
|
59
59
|
*/
|
|
60
60
|
readonly bleConfig: pulumi.Output<outputs.org.DeviceprofileApBleConfig | undefined>;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
62
|
+
* Whether to disable eth1 port
|
|
63
63
|
*/
|
|
64
64
|
readonly disableEth1: pulumi.Output<boolean>;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Whether to disable eth2 port
|
|
67
67
|
*/
|
|
68
68
|
readonly disableEth2: pulumi.Output<boolean>;
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
* Whether to disable eth3 port
|
|
71
71
|
*/
|
|
72
72
|
readonly disableEth3: pulumi.Output<boolean>;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* Whether to disable module port
|
|
75
75
|
*/
|
|
76
76
|
readonly disableModule: pulumi.Output<boolean>;
|
|
77
77
|
readonly eslConfig: pulumi.Output<outputs.org.DeviceprofileApEslConfig | undefined>;
|
|
@@ -91,11 +91,11 @@ export declare class DeviceprofileAp extends pulumi.CustomResource {
|
|
|
91
91
|
readonly ntpServers: pulumi.Output<string[] | undefined>;
|
|
92
92
|
readonly orgId: pulumi.Output<string>;
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
94
|
+
* Whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
|
|
95
95
|
*/
|
|
96
96
|
readonly poePassthrough: pulumi.Output<boolean>;
|
|
97
97
|
/**
|
|
98
|
-
*
|
|
98
|
+
* Power related configs
|
|
99
99
|
*/
|
|
100
100
|
readonly pwrConfig: pulumi.Output<outputs.org.DeviceprofileApPwrConfig | undefined>;
|
|
101
101
|
/**
|
|
@@ -107,15 +107,17 @@ export declare class DeviceprofileAp extends pulumi.CustomResource {
|
|
|
107
107
|
* Device Type. enum: `ap`
|
|
108
108
|
*/
|
|
109
109
|
readonly type: pulumi.Output<string>;
|
|
110
|
+
/**
|
|
111
|
+
* AP Uplink port configuration
|
|
112
|
+
*/
|
|
110
113
|
readonly uplinkPortConfig: pulumi.Output<outputs.org.DeviceprofileApUplinkPortConfig | undefined>;
|
|
111
114
|
/**
|
|
112
|
-
* USB AP settings
|
|
113
|
-
*
|
|
114
|
-
* Note: legacy, new config moved to ESL Config.
|
|
115
|
+
* USB AP settings - Note: if native imagotag is enabled, BLE will be disabled automatically - Note: legacy, new config
|
|
116
|
+
* moved to ESL Config.
|
|
115
117
|
*/
|
|
116
118
|
readonly usbConfig: pulumi.Output<outputs.org.DeviceprofileApUsbConfig | undefined>;
|
|
117
119
|
/**
|
|
118
|
-
*
|
|
120
|
+
* Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
|
|
119
121
|
*/
|
|
120
122
|
readonly vars: pulumi.Output<{
|
|
121
123
|
[key: string]: string;
|
|
@@ -142,19 +144,19 @@ export interface DeviceprofileApState {
|
|
|
142
144
|
*/
|
|
143
145
|
bleConfig?: pulumi.Input<inputs.org.DeviceprofileApBleConfig>;
|
|
144
146
|
/**
|
|
145
|
-
*
|
|
147
|
+
* Whether to disable eth1 port
|
|
146
148
|
*/
|
|
147
149
|
disableEth1?: pulumi.Input<boolean>;
|
|
148
150
|
/**
|
|
149
|
-
*
|
|
151
|
+
* Whether to disable eth2 port
|
|
150
152
|
*/
|
|
151
153
|
disableEth2?: pulumi.Input<boolean>;
|
|
152
154
|
/**
|
|
153
|
-
*
|
|
155
|
+
* Whether to disable eth3 port
|
|
154
156
|
*/
|
|
155
157
|
disableEth3?: pulumi.Input<boolean>;
|
|
156
158
|
/**
|
|
157
|
-
*
|
|
159
|
+
* Whether to disable module port
|
|
158
160
|
*/
|
|
159
161
|
disableModule?: pulumi.Input<boolean>;
|
|
160
162
|
eslConfig?: pulumi.Input<inputs.org.DeviceprofileApEslConfig>;
|
|
@@ -174,11 +176,11 @@ export interface DeviceprofileApState {
|
|
|
174
176
|
ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
175
177
|
orgId?: pulumi.Input<string>;
|
|
176
178
|
/**
|
|
177
|
-
*
|
|
179
|
+
* Whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
|
|
178
180
|
*/
|
|
179
181
|
poePassthrough?: pulumi.Input<boolean>;
|
|
180
182
|
/**
|
|
181
|
-
*
|
|
183
|
+
* Power related configs
|
|
182
184
|
*/
|
|
183
185
|
pwrConfig?: pulumi.Input<inputs.org.DeviceprofileApPwrConfig>;
|
|
184
186
|
/**
|
|
@@ -190,15 +192,17 @@ export interface DeviceprofileApState {
|
|
|
190
192
|
* Device Type. enum: `ap`
|
|
191
193
|
*/
|
|
192
194
|
type?: pulumi.Input<string>;
|
|
195
|
+
/**
|
|
196
|
+
* AP Uplink port configuration
|
|
197
|
+
*/
|
|
193
198
|
uplinkPortConfig?: pulumi.Input<inputs.org.DeviceprofileApUplinkPortConfig>;
|
|
194
199
|
/**
|
|
195
|
-
* USB AP settings
|
|
196
|
-
*
|
|
197
|
-
* Note: legacy, new config moved to ESL Config.
|
|
200
|
+
* USB AP settings - Note: if native imagotag is enabled, BLE will be disabled automatically - Note: legacy, new config
|
|
201
|
+
* moved to ESL Config.
|
|
198
202
|
*/
|
|
199
203
|
usbConfig?: pulumi.Input<inputs.org.DeviceprofileApUsbConfig>;
|
|
200
204
|
/**
|
|
201
|
-
*
|
|
205
|
+
* Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
|
|
202
206
|
*/
|
|
203
207
|
vars?: pulumi.Input<{
|
|
204
208
|
[key: string]: pulumi.Input<string>;
|
|
@@ -217,19 +221,19 @@ export interface DeviceprofileApArgs {
|
|
|
217
221
|
*/
|
|
218
222
|
bleConfig?: pulumi.Input<inputs.org.DeviceprofileApBleConfig>;
|
|
219
223
|
/**
|
|
220
|
-
*
|
|
224
|
+
* Whether to disable eth1 port
|
|
221
225
|
*/
|
|
222
226
|
disableEth1?: pulumi.Input<boolean>;
|
|
223
227
|
/**
|
|
224
|
-
*
|
|
228
|
+
* Whether to disable eth2 port
|
|
225
229
|
*/
|
|
226
230
|
disableEth2?: pulumi.Input<boolean>;
|
|
227
231
|
/**
|
|
228
|
-
*
|
|
232
|
+
* Whether to disable eth3 port
|
|
229
233
|
*/
|
|
230
234
|
disableEth3?: pulumi.Input<boolean>;
|
|
231
235
|
/**
|
|
232
|
-
*
|
|
236
|
+
* Whether to disable module port
|
|
233
237
|
*/
|
|
234
238
|
disableModule?: pulumi.Input<boolean>;
|
|
235
239
|
eslConfig?: pulumi.Input<inputs.org.DeviceprofileApEslConfig>;
|
|
@@ -249,11 +253,11 @@ export interface DeviceprofileApArgs {
|
|
|
249
253
|
ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
250
254
|
orgId: pulumi.Input<string>;
|
|
251
255
|
/**
|
|
252
|
-
*
|
|
256
|
+
* Whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
|
|
253
257
|
*/
|
|
254
258
|
poePassthrough?: pulumi.Input<boolean>;
|
|
255
259
|
/**
|
|
256
|
-
*
|
|
260
|
+
* Power related configs
|
|
257
261
|
*/
|
|
258
262
|
pwrConfig?: pulumi.Input<inputs.org.DeviceprofileApPwrConfig>;
|
|
259
263
|
/**
|
|
@@ -261,15 +265,17 @@ export interface DeviceprofileApArgs {
|
|
|
261
265
|
*/
|
|
262
266
|
radioConfig?: pulumi.Input<inputs.org.DeviceprofileApRadioConfig>;
|
|
263
267
|
siteId?: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* AP Uplink port configuration
|
|
270
|
+
*/
|
|
264
271
|
uplinkPortConfig?: pulumi.Input<inputs.org.DeviceprofileApUplinkPortConfig>;
|
|
265
272
|
/**
|
|
266
|
-
* USB AP settings
|
|
267
|
-
*
|
|
268
|
-
* Note: legacy, new config moved to ESL Config.
|
|
273
|
+
* USB AP settings - Note: if native imagotag is enabled, BLE will be disabled automatically - Note: legacy, new config
|
|
274
|
+
* moved to ESL Config.
|
|
269
275
|
*/
|
|
270
276
|
usbConfig?: pulumi.Input<inputs.org.DeviceprofileApUsbConfig>;
|
|
271
277
|
/**
|
|
272
|
-
*
|
|
278
|
+
* Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
|
|
273
279
|
*/
|
|
274
280
|
vars?: pulumi.Input<{
|
|
275
281
|
[key: string]: pulumi.Input<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deviceprofileAp.js","sourceRoot":"","sources":["../../org/deviceprofileAp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"deviceprofileAp.js","sourceRoot":"","sources":["../../org/deviceprofileAp.ts"],"names":[],"mappings":"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"}
|
|
@@ -79,11 +79,11 @@ export declare class DeviceprofileGateway extends pulumi.CustomResource {
|
|
|
79
79
|
readonly networks: pulumi.Output<outputs.org.DeviceprofileGatewayNetwork[] | undefined>;
|
|
80
80
|
readonly ntpOverride: pulumi.Output<boolean>;
|
|
81
81
|
/**
|
|
82
|
-
*
|
|
82
|
+
* List of NTP servers specific to this device. By default, those in Site Settings will be used
|
|
83
83
|
*/
|
|
84
84
|
readonly ntpServers: pulumi.Output<string[] | undefined>;
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Out-of-band (vme/em0/fxp0) IP config
|
|
87
87
|
*/
|
|
88
88
|
readonly oobIpConfig: pulumi.Output<outputs.org.DeviceprofileGatewayOobIpConfig>;
|
|
89
89
|
readonly orgId: pulumi.Output<string>;
|
|
@@ -100,7 +100,7 @@ export declare class DeviceprofileGateway extends pulumi.CustomResource {
|
|
|
100
100
|
[key: string]: outputs.org.DeviceprofileGatewayPortConfig;
|
|
101
101
|
} | undefined>;
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* Auto assigned if not set
|
|
104
104
|
*/
|
|
105
105
|
readonly routerId: pulumi.Output<string | undefined>;
|
|
106
106
|
/**
|
|
@@ -186,11 +186,11 @@ export interface DeviceprofileGatewayState {
|
|
|
186
186
|
networks?: pulumi.Input<pulumi.Input<inputs.org.DeviceprofileGatewayNetwork>[]>;
|
|
187
187
|
ntpOverride?: pulumi.Input<boolean>;
|
|
188
188
|
/**
|
|
189
|
-
*
|
|
189
|
+
* List of NTP servers specific to this device. By default, those in Site Settings will be used
|
|
190
190
|
*/
|
|
191
191
|
ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
192
192
|
/**
|
|
193
|
-
*
|
|
193
|
+
* Out-of-band (vme/em0/fxp0) IP config
|
|
194
194
|
*/
|
|
195
195
|
oobIpConfig?: pulumi.Input<inputs.org.DeviceprofileGatewayOobIpConfig>;
|
|
196
196
|
orgId?: pulumi.Input<string>;
|
|
@@ -207,7 +207,7 @@ export interface DeviceprofileGatewayState {
|
|
|
207
207
|
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayPortConfig>;
|
|
208
208
|
}>;
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* Auto assigned if not set
|
|
211
211
|
*/
|
|
212
212
|
routerId?: pulumi.Input<string>;
|
|
213
213
|
/**
|
|
@@ -285,11 +285,11 @@ export interface DeviceprofileGatewayArgs {
|
|
|
285
285
|
networks?: pulumi.Input<pulumi.Input<inputs.org.DeviceprofileGatewayNetwork>[]>;
|
|
286
286
|
ntpOverride?: pulumi.Input<boolean>;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* List of NTP servers specific to this device. By default, those in Site Settings will be used
|
|
289
289
|
*/
|
|
290
290
|
ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
291
291
|
/**
|
|
292
|
-
*
|
|
292
|
+
* Out-of-band (vme/em0/fxp0) IP config
|
|
293
293
|
*/
|
|
294
294
|
oobIpConfig?: pulumi.Input<inputs.org.DeviceprofileGatewayOobIpConfig>;
|
|
295
295
|
orgId: pulumi.Input<string>;
|
|
@@ -306,7 +306,7 @@ export interface DeviceprofileGatewayArgs {
|
|
|
306
306
|
[key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayPortConfig>;
|
|
307
307
|
}>;
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Auto assigned if not set
|
|
310
310
|
*/
|
|
311
311
|
routerId?: pulumi.Input<string>;
|
|
312
312
|
/**
|
package/org/gatewaytemplate.d.ts
CHANGED
|
@@ -77,11 +77,11 @@ export declare class Gatewaytemplate extends pulumi.CustomResource {
|
|
|
77
77
|
readonly networks: pulumi.Output<outputs.org.GatewaytemplateNetwork[] | undefined>;
|
|
78
78
|
readonly ntpOverride: pulumi.Output<boolean>;
|
|
79
79
|
/**
|
|
80
|
-
*
|
|
80
|
+
* List of NTP servers specific to this device. By default, those in Site Settings will be used
|
|
81
81
|
*/
|
|
82
82
|
readonly ntpServers: pulumi.Output<string[] | undefined>;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Out-of-band (vme/em0/fxp0) IP config
|
|
85
85
|
*/
|
|
86
86
|
readonly oobIpConfig: pulumi.Output<outputs.org.GatewaytemplateOobIpConfig>;
|
|
87
87
|
readonly orgId: pulumi.Output<string>;
|
|
@@ -99,7 +99,7 @@ export declare class Gatewaytemplate extends pulumi.CustomResource {
|
|
|
99
99
|
[key: string]: outputs.org.GatewaytemplatePortConfig;
|
|
100
100
|
} | undefined>;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Auto assigned if not set
|
|
103
103
|
*/
|
|
104
104
|
readonly routerId: pulumi.Output<string | undefined>;
|
|
105
105
|
/**
|
|
@@ -185,11 +185,11 @@ export interface GatewaytemplateState {
|
|
|
185
185
|
networks?: pulumi.Input<pulumi.Input<inputs.org.GatewaytemplateNetwork>[]>;
|
|
186
186
|
ntpOverride?: pulumi.Input<boolean>;
|
|
187
187
|
/**
|
|
188
|
-
*
|
|
188
|
+
* List of NTP servers specific to this device. By default, those in Site Settings will be used
|
|
189
189
|
*/
|
|
190
190
|
ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* Out-of-band (vme/em0/fxp0) IP config
|
|
193
193
|
*/
|
|
194
194
|
oobIpConfig?: pulumi.Input<inputs.org.GatewaytemplateOobIpConfig>;
|
|
195
195
|
orgId?: pulumi.Input<string>;
|
|
@@ -207,7 +207,7 @@ export interface GatewaytemplateState {
|
|
|
207
207
|
[key: string]: pulumi.Input<inputs.org.GatewaytemplatePortConfig>;
|
|
208
208
|
}>;
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* Auto assigned if not set
|
|
211
211
|
*/
|
|
212
212
|
routerId?: pulumi.Input<string>;
|
|
213
213
|
/**
|
|
@@ -285,11 +285,11 @@ export interface GatewaytemplateArgs {
|
|
|
285
285
|
networks?: pulumi.Input<pulumi.Input<inputs.org.GatewaytemplateNetwork>[]>;
|
|
286
286
|
ntpOverride?: pulumi.Input<boolean>;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* List of NTP servers specific to this device. By default, those in Site Settings will be used
|
|
289
289
|
*/
|
|
290
290
|
ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
291
291
|
/**
|
|
292
|
-
*
|
|
292
|
+
* Out-of-band (vme/em0/fxp0) IP config
|
|
293
293
|
*/
|
|
294
294
|
oobIpConfig?: pulumi.Input<inputs.org.GatewaytemplateOobIpConfig>;
|
|
295
295
|
orgId: pulumi.Input<string>;
|
|
@@ -307,7 +307,7 @@ export interface GatewaytemplateArgs {
|
|
|
307
307
|
[key: string]: pulumi.Input<inputs.org.GatewaytemplatePortConfig>;
|
|
308
308
|
}>;
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Auto assigned if not set
|
|
311
311
|
*/
|
|
312
312
|
routerId?: pulumi.Input<string>;
|
|
313
313
|
/**
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* This data source provides the list of WAN Assurance Antivirus Profiles.
|
|
5
|
+
*
|
|
6
|
+
* An Antivirus Profile is used to configure the Antivirus feature on SRX devices. It specifies which content the Antivirus should analyse and which content should be ignored.
|
|
7
|
+
*
|
|
8
|
+
* The Antivirus profiles can be used within the following resources:
|
|
9
|
+
* * `mist_org_servicepolicy.antivirus`
|
|
10
|
+
* * `mist_org_gatewaytemplate.service_policies.antivirus`
|
|
11
|
+
* * `mist_org_deviceprofile_gateway.service_policies.antivirus`
|
|
12
|
+
* * `mist_device_gateway.service_policies.antivirus`
|
|
13
|
+
*
|
|
14
|
+
* ## Example Usage
|
|
15
|
+
*
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
18
|
+
* import * as junipermist from "@pulumi/junipermist";
|
|
19
|
+
*
|
|
20
|
+
* const avprofiles = junipermist.org.getAvprofiles({
|
|
21
|
+
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export declare function getAvprofiles(args: GetAvprofilesArgs, opts?: pulumi.InvokeOptions): Promise<GetAvprofilesResult>;
|
|
26
|
+
/**
|
|
27
|
+
* A collection of arguments for invoking getAvprofiles.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetAvprofilesArgs {
|
|
30
|
+
orgId: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A collection of values returned by getAvprofiles.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetAvprofilesResult {
|
|
36
|
+
/**
|
|
37
|
+
* The provider-assigned unique ID for this managed resource.
|
|
38
|
+
*/
|
|
39
|
+
readonly id: string;
|
|
40
|
+
readonly orgAvprofiles: outputs.org.GetAvprofilesOrgAvprofile[];
|
|
41
|
+
readonly orgId: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* This data source provides the list of WAN Assurance Antivirus Profiles.
|
|
45
|
+
*
|
|
46
|
+
* An Antivirus Profile is used to configure the Antivirus feature on SRX devices. It specifies which content the Antivirus should analyse and which content should be ignored.
|
|
47
|
+
*
|
|
48
|
+
* The Antivirus profiles can be used within the following resources:
|
|
49
|
+
* * `mist_org_servicepolicy.antivirus`
|
|
50
|
+
* * `mist_org_gatewaytemplate.service_policies.antivirus`
|
|
51
|
+
* * `mist_org_deviceprofile_gateway.service_policies.antivirus`
|
|
52
|
+
* * `mist_device_gateway.service_policies.antivirus`
|
|
53
|
+
*
|
|
54
|
+
* ## Example Usage
|
|
55
|
+
*
|
|
56
|
+
* ```typescript
|
|
57
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
+
* import * as junipermist from "@pulumi/junipermist";
|
|
59
|
+
*
|
|
60
|
+
* const avprofiles = junipermist.org.getAvprofiles({
|
|
61
|
+
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function getAvprofilesOutput(args: GetAvprofilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAvprofilesResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getAvprofiles.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetAvprofilesOutputArgs {
|
|
70
|
+
orgId: pulumi.Input<string>;
|
|
71
|
+
}
|