@pulumi/juniper-mist 0.2.2 → 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.
Files changed (54) hide show
  1. package/device/ap.d.ts +75 -54
  2. package/device/ap.js +2 -0
  3. package/device/ap.js.map +1 -1
  4. package/device/base.d.ts +1 -1
  5. package/device/base.js +1 -1
  6. package/device/gateway.d.ts +24 -24
  7. package/device/image.d.ts +1 -1
  8. package/device/image.js +1 -1
  9. package/device/switch.d.ts +39 -39
  10. package/org/avprofile.d.ts +128 -0
  11. package/org/avprofile.js +111 -0
  12. package/org/avprofile.js.map +1 -0
  13. package/org/deviceprofileAp.d.ts +36 -30
  14. package/org/deviceprofileAp.js.map +1 -1
  15. package/org/deviceprofileGateway.d.ts +9 -9
  16. package/org/gatewaytemplate.d.ts +9 -9
  17. package/org/getAvprofiles.d.ts +71 -0
  18. package/org/getAvprofiles.js +66 -0
  19. package/org/getAvprofiles.js.map +1 -0
  20. package/org/getSsoRoles.d.ts +2 -2
  21. package/org/getSsoRoles.js +2 -2
  22. package/org/index.d.ts +6 -0
  23. package/org/index.js +10 -2
  24. package/org/index.js.map +1 -1
  25. package/org/inventory.d.ts +4 -4
  26. package/org/inventory.js +1 -1
  27. package/org/nactag.d.ts +54 -39
  28. package/org/nactag.js +2 -0
  29. package/org/nactag.js.map +1 -1
  30. package/org/networktemplate.d.ts +12 -12
  31. package/org/rftemplate.d.ts +6 -6
  32. package/org/servicepolicy.d.ts +29 -8
  33. package/org/servicepolicy.js +5 -1
  34. package/org/servicepolicy.js.map +1 -1
  35. package/org/setting.d.ts +24 -24
  36. package/org/sso.d.ts +11 -11
  37. package/org/ssoRole.d.ts +1 -1
  38. package/org/ssoRole.js +1 -1
  39. package/org/webhook.d.ts +39 -42
  40. package/org/webhook.js.map +1 -1
  41. package/org/wlan.d.ts +233 -233
  42. package/org/wlanPortalTemplate.d.ts +3 -3
  43. package/package.json +2 -2
  44. package/site/base.d.ts +1 -1
  45. package/site/base.js +1 -1
  46. package/site/networktemplate.d.ts +15 -15
  47. package/site/setting.d.ts +49 -49
  48. package/site/setting.js +1 -1
  49. package/site/webhook.d.ts +39 -42
  50. package/site/webhook.js.map +1 -1
  51. package/site/wlan.d.ts +233 -233
  52. package/site/wlanPortalTemplate.d.ts +3 -3
  53. package/types/input.d.ts +1394 -1276
  54. package/types/output.d.ts +1732 -1575
@@ -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
- * whether to disable eth1 port
62
+ * Whether to disable eth1 port
63
63
  */
64
64
  readonly disableEth1: pulumi.Output<boolean>;
65
65
  /**
66
- * whether to disable eth2 port
66
+ * Whether to disable eth2 port
67
67
  */
68
68
  readonly disableEth2: pulumi.Output<boolean>;
69
69
  /**
70
- * whether to disable eth3 port
70
+ * Whether to disable eth3 port
71
71
  */
72
72
  readonly disableEth3: pulumi.Output<boolean>;
73
73
  /**
74
- * whether to disable module port
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
- * whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
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
- * power related configs
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
- * Note: if native imagotag is enabled, BLE will be disabled automatically
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
- * a dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
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
- * whether to disable eth1 port
147
+ * Whether to disable eth1 port
146
148
  */
147
149
  disableEth1?: pulumi.Input<boolean>;
148
150
  /**
149
- * whether to disable eth2 port
151
+ * Whether to disable eth2 port
150
152
  */
151
153
  disableEth2?: pulumi.Input<boolean>;
152
154
  /**
153
- * whether to disable eth3 port
155
+ * Whether to disable eth3 port
154
156
  */
155
157
  disableEth3?: pulumi.Input<boolean>;
156
158
  /**
157
- * whether to disable module port
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
- * whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
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
- * power related configs
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
- * Note: if native imagotag is enabled, BLE will be disabled automatically
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
- * a dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
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
- * whether to disable eth1 port
224
+ * Whether to disable eth1 port
221
225
  */
222
226
  disableEth1?: pulumi.Input<boolean>;
223
227
  /**
224
- * whether to disable eth2 port
228
+ * Whether to disable eth2 port
225
229
  */
226
230
  disableEth2?: pulumi.Input<boolean>;
227
231
  /**
228
- * whether to disable eth3 port
232
+ * Whether to disable eth3 port
229
233
  */
230
234
  disableEth3?: pulumi.Input<boolean>;
231
235
  /**
232
- * whether to disable module port
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
- * whether to enable power out through module port (for APH) or eth1 (for APL/BT11)
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
- * power related configs
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
- * Note: if native imagotag is enabled, BLE will be disabled automatically
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
- * a dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
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":"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"}
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
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
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
- * out-of-band (vme/em0/fxp0) IP config
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
- * auto assigned if not set
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
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
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
- * out-of-band (vme/em0/fxp0) IP config
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
- * auto assigned if not set
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
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
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
- * out-of-band (vme/em0/fxp0) IP config
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
- * auto assigned if not set
309
+ * Auto assigned if not set
310
310
  */
311
311
  routerId?: pulumi.Input<string>;
312
312
  /**
@@ -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
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
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
- * out-of-band (vme/em0/fxp0) IP config
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
- * auto assigned if not set
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
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
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
- * out-of-band (vme/em0/fxp0) IP config
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
- * auto assigned if not set
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
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
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
- * out-of-band (vme/em0/fxp0) IP config
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
- * auto assigned if not set
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
+ }
@@ -0,0 +1,66 @@
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.getAvprofilesOutput = exports.getAvprofiles = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides the list of WAN Assurance Antivirus Profiles.
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/junipermist";
24
+ *
25
+ * const avprofiles = junipermist.org.getAvprofiles({
26
+ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
27
+ * });
28
+ * ```
29
+ */
30
+ function getAvprofiles(args, opts) {
31
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
32
+ return pulumi.runtime.invoke("junipermist:org/getAvprofiles:getAvprofiles", {
33
+ "orgId": args.orgId,
34
+ }, opts);
35
+ }
36
+ exports.getAvprofiles = getAvprofiles;
37
+ /**
38
+ * This data source provides the list of WAN Assurance Antivirus Profiles.
39
+ *
40
+ * 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.
41
+ *
42
+ * The Antivirus profiles can be used within the following resources:
43
+ * * `mist_org_servicepolicy.antivirus`
44
+ * * `mist_org_gatewaytemplate.service_policies.antivirus`
45
+ * * `mist_org_deviceprofile_gateway.service_policies.antivirus`
46
+ * * `mist_device_gateway.service_policies.antivirus`
47
+ *
48
+ * ## Example Usage
49
+ *
50
+ * ```typescript
51
+ * import * as pulumi from "@pulumi/pulumi";
52
+ * import * as junipermist from "@pulumi/junipermist";
53
+ *
54
+ * const avprofiles = junipermist.org.getAvprofiles({
55
+ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
56
+ * });
57
+ * ```
58
+ */
59
+ function getAvprofilesOutput(args, opts) {
60
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
61
+ return pulumi.runtime.invokeOutput("junipermist:org/getAvprofiles:getAvprofiles", {
62
+ "orgId": args.orgId,
63
+ }, opts);
64
+ }
65
+ exports.getAvprofilesOutput = getAvprofilesOutput;
66
+ //# sourceMappingURL=getAvprofiles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAvprofiles.js","sourceRoot":"","sources":["../../org/getAvprofiles.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;AAoBD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,6CAA6C,EAAE;QAC9E,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
5
5
  *
6
6
  * SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
7
7
  * These roles determine the tasks and actions that users can perform within the SSO system. There are typically predefined roles and custom roles in an SSO system.\
8
- * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects..
8
+ * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
9
9
  *
10
10
  * ## Example Usage
11
11
  *
@@ -41,7 +41,7 @@ export interface GetSsoRolesResult {
41
41
  *
42
42
  * SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
43
43
  * These roles determine the tasks and actions that users can perform within the SSO system. There are typically predefined roles and custom roles in an SSO system.\
44
- * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects..
44
+ * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
45
45
  *
46
46
  * ## Example Usage
47
47
  *
@@ -10,7 +10,7 @@ const utilities = require("../utilities");
10
10
  *
11
11
  * SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
12
12
  * These roles determine the tasks and actions that users can perform within the SSO system. There are typically predefined roles and custom roles in an SSO system.\
13
- * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects..
13
+ * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
14
14
  *
15
15
  * ## Example Usage
16
16
  *
@@ -35,7 +35,7 @@ exports.getSsoRoles = getSsoRoles;
35
35
  *
36
36
  * SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
37
37
  * These roles determine the tasks and actions that users can perform within the SSO system. There are typically predefined roles and custom roles in an SSO system.\
38
- * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects..
38
+ * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
39
39
  *
40
40
  * ## Example Usage
41
41
  *
package/org/index.d.ts CHANGED
@@ -4,6 +4,9 @@ export declare const Alarmtemplate: typeof import("./alarmtemplate").Alarmtempla
4
4
  export { ApitokenArgs, ApitokenState } from "./apitoken";
5
5
  export type Apitoken = import("./apitoken").Apitoken;
6
6
  export declare const Apitoken: typeof import("./apitoken").Apitoken;
7
+ export { AvprofileArgs, AvprofileState } from "./avprofile";
8
+ export type Avprofile = import("./avprofile").Avprofile;
9
+ export declare const Avprofile: typeof import("./avprofile").Avprofile;
7
10
  export { BaseArgs, BaseState } from "./base";
8
11
  export type Base = import("./base").Base;
9
12
  export declare const Base: typeof import("./base").Base;
@@ -25,6 +28,9 @@ export declare const Gatewaytemplate: typeof import("./gatewaytemplate").Gateway
25
28
  export { GetAlarmtemplatesArgs, GetAlarmtemplatesResult, GetAlarmtemplatesOutputArgs } from "./getAlarmtemplates";
26
29
  export declare const getAlarmtemplates: typeof import("./getAlarmtemplates").getAlarmtemplates;
27
30
  export declare const getAlarmtemplatesOutput: typeof import("./getAlarmtemplates").getAlarmtemplatesOutput;
31
+ export { GetAvprofilesArgs, GetAvprofilesResult, GetAvprofilesOutputArgs } from "./getAvprofiles";
32
+ export declare const getAvprofiles: typeof import("./getAvprofiles").getAvprofiles;
33
+ export declare const getAvprofilesOutput: typeof import("./getAvprofiles").getAvprofilesOutput;
28
34
  export { GetDeviceprofilesApArgs, GetDeviceprofilesApResult, GetDeviceprofilesApOutputArgs } from "./getDeviceprofilesAp";
29
35
  export declare const getDeviceprofilesAp: typeof import("./getDeviceprofilesAp").getDeviceprofilesAp;
30
36
  export declare const getDeviceprofilesApOutput: typeof import("./getDeviceprofilesAp").getDeviceprofilesApOutput;
package/org/index.js CHANGED
@@ -2,14 +2,16 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.getVpnsOutput = exports.getVpns = exports.getSsoRolesOutput = exports.getSsoRoles = exports.getSsoMetadataOutput = exports.getSsoMetadata = exports.getSitegroupsOutput = exports.getSitegroups = exports.getServicesOutput = exports.getServices = exports.getServicepoliciesOutput = exports.getServicepolicies = exports.getRftemplatesOutput = exports.getRftemplates = exports.getPsksOutput = exports.getPsks = exports.getNetworktemplatesOutput = exports.getNetworktemplates = exports.getNetworksOutput = exports.getNetworks = exports.getNactagsOutput = exports.getNactags = exports.getNacrulesOutput = exports.getNacrules = exports.getNacidpMetadataOutput = exports.getNacidpMetadata = exports.getNacEndpointsOutput = exports.getNacEndpoints = exports.getInventoryOutput = exports.getInventory = exports.getIdpprofilesOutput = exports.getIdpprofiles = exports.getGatewaytemplatesOutput = exports.getGatewaytemplates = exports.getEvpnTopologiesOutput = exports.getEvpnTopologies = exports.getDeviceprofilesGatewayOutput = exports.getDeviceprofilesGateway = exports.getDeviceprofilesApOutput = exports.getDeviceprofilesAp = exports.getAlarmtemplatesOutput = exports.getAlarmtemplates = exports.Gatewaytemplate = exports.EvpnTopology = exports.DeviceprofileGateway = exports.DeviceprofileAssign = exports.DeviceprofileAp = exports.Base = exports.Apitoken = exports.Alarmtemplate = void 0;
6
- exports.Wxtag = exports.Wxrule = exports.Wlantemplate = exports.WlanPortalTemplate = exports.WlanPortalImage = exports.Wlan = exports.Webhook = exports.Vpn = exports.SsoRole = exports.Sso = exports.Sitegroup = exports.Setting = exports.Servicepolicy = exports.Service = exports.Rftemplate = exports.Psk = exports.Networktemplate = exports.Network = exports.Nactag = exports.Nacrule = exports.Nacidp = exports.NacEndpoint = exports.Inventory = exports.Idpprofile = exports.getWxtagsOutput = exports.getWxtags = exports.getWlantemplatesOutput = exports.getWlantemplates = exports.getWlansOutput = exports.getWlans = exports.getWebhooksOutput = exports.getWebhooks = void 0;
5
+ exports.getSsoRoles = exports.getSsoMetadataOutput = exports.getSsoMetadata = exports.getSitegroupsOutput = exports.getSitegroups = exports.getServicesOutput = exports.getServices = exports.getServicepoliciesOutput = exports.getServicepolicies = exports.getRftemplatesOutput = exports.getRftemplates = exports.getPsksOutput = exports.getPsks = exports.getNetworktemplatesOutput = exports.getNetworktemplates = exports.getNetworksOutput = exports.getNetworks = exports.getNactagsOutput = exports.getNactags = exports.getNacrulesOutput = exports.getNacrules = exports.getNacidpMetadataOutput = exports.getNacidpMetadata = exports.getNacEndpointsOutput = exports.getNacEndpoints = exports.getInventoryOutput = exports.getInventory = exports.getIdpprofilesOutput = exports.getIdpprofiles = exports.getGatewaytemplatesOutput = exports.getGatewaytemplates = exports.getEvpnTopologiesOutput = exports.getEvpnTopologies = exports.getDeviceprofilesGatewayOutput = exports.getDeviceprofilesGateway = exports.getDeviceprofilesApOutput = exports.getDeviceprofilesAp = exports.getAvprofilesOutput = exports.getAvprofiles = exports.getAlarmtemplatesOutput = exports.getAlarmtemplates = exports.Gatewaytemplate = exports.EvpnTopology = exports.DeviceprofileGateway = exports.DeviceprofileAssign = exports.DeviceprofileAp = exports.Base = exports.Avprofile = exports.Apitoken = exports.Alarmtemplate = void 0;
6
+ exports.Wxtag = exports.Wxrule = exports.Wlantemplate = exports.WlanPortalTemplate = exports.WlanPortalImage = exports.Wlan = exports.Webhook = exports.Vpn = exports.SsoRole = exports.Sso = exports.Sitegroup = exports.Setting = exports.Servicepolicy = exports.Service = exports.Rftemplate = exports.Psk = exports.Networktemplate = exports.Network = exports.Nactag = exports.Nacrule = exports.Nacidp = exports.NacEndpoint = exports.Inventory = exports.Idpprofile = exports.getWxtagsOutput = exports.getWxtags = exports.getWlantemplatesOutput = exports.getWlantemplates = exports.getWlansOutput = exports.getWlans = exports.getWebhooksOutput = exports.getWebhooks = exports.getVpnsOutput = exports.getVpns = exports.getSsoRolesOutput = void 0;
7
7
  const pulumi = require("@pulumi/pulumi");
8
8
  const utilities = require("../utilities");
9
9
  exports.Alarmtemplate = null;
10
10
  utilities.lazyLoad(exports, ["Alarmtemplate"], () => require("./alarmtemplate"));
11
11
  exports.Apitoken = null;
12
12
  utilities.lazyLoad(exports, ["Apitoken"], () => require("./apitoken"));
13
+ exports.Avprofile = null;
14
+ utilities.lazyLoad(exports, ["Avprofile"], () => require("./avprofile"));
13
15
  exports.Base = null;
14
16
  utilities.lazyLoad(exports, ["Base"], () => require("./base"));
15
17
  exports.DeviceprofileAp = null;
@@ -25,6 +27,9 @@ utilities.lazyLoad(exports, ["Gatewaytemplate"], () => require("./gatewaytemplat
25
27
  exports.getAlarmtemplates = null;
26
28
  exports.getAlarmtemplatesOutput = null;
27
29
  utilities.lazyLoad(exports, ["getAlarmtemplates", "getAlarmtemplatesOutput"], () => require("./getAlarmtemplates"));
30
+ exports.getAvprofiles = null;
31
+ exports.getAvprofilesOutput = null;
32
+ utilities.lazyLoad(exports, ["getAvprofiles", "getAvprofilesOutput"], () => require("./getAvprofiles"));
28
33
  exports.getDeviceprofilesAp = null;
29
34
  exports.getDeviceprofilesApOutput = null;
30
35
  utilities.lazyLoad(exports, ["getDeviceprofilesAp", "getDeviceprofilesApOutput"], () => require("./getDeviceprofilesAp"));
@@ -153,6 +158,8 @@ const _module = {
153
158
  return new exports.Alarmtemplate(name, undefined, { urn });
154
159
  case "junipermist:org/apitoken:Apitoken":
155
160
  return new exports.Apitoken(name, undefined, { urn });
161
+ case "junipermist:org/avprofile:Avprofile":
162
+ return new exports.Avprofile(name, undefined, { urn });
156
163
  case "junipermist:org/base:base":
157
164
  return new exports.Base(name, undefined, { urn });
158
165
  case "junipermist:org/deviceprofileAp:DeviceprofileAp":
@@ -220,6 +227,7 @@ const _module = {
220
227
  };
221
228
  pulumi.runtime.registerResourceModule("junipermist", "org/alarmtemplate", _module);
222
229
  pulumi.runtime.registerResourceModule("junipermist", "org/apitoken", _module);
230
+ pulumi.runtime.registerResourceModule("junipermist", "org/avprofile", _module);
223
231
  pulumi.runtime.registerResourceModule("junipermist", "org/base", _module);
224
232
  pulumi.runtime.registerResourceModule("junipermist", "org/deviceprofileAp", _module);
225
233
  pulumi.runtime.registerResourceModule("junipermist", "org/deviceprofileAssign", _module);