@pulumi/juniper-mist 0.0.20 → 0.0.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/juniper-mist",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "description": "A Pulumi package for creating and managing Juniper Mist resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -25,7 +25,7 @@
25
25
  "pulumi": {
26
26
  "resource": true,
27
27
  "name": "junipermist",
28
- "version": "0.0.20",
28
+ "version": "0.0.22",
29
29
  "server": "github://api.github.com/pulumi/pulumi-junipermist"
30
30
  }
31
31
  }
package/types/input.d.ts CHANGED
@@ -2730,7 +2730,7 @@ export declare namespace device {
2730
2730
  }
2731
2731
  interface SwitchSwitchMgmtProtectRe {
2732
2732
  /**
2733
- * optionally, services we'll allow
2733
+ * optionally, services we'll allow. enum: `icmp`, `ssh`
2734
2734
  */
2735
2735
  allowedServices?: pulumi.Input<pulumi.Input<string>[]>;
2736
2736
  customs?: pulumi.Input<pulumi.Input<inputs.device.SwitchSwitchMgmtProtectReCustom>[]>;
@@ -2747,14 +2747,14 @@ export declare namespace device {
2747
2747
  }
2748
2748
  interface SwitchSwitchMgmtProtectReCustom {
2749
2749
  /**
2750
- * matched dst port, "0" means any
2750
+ * matched dst port, "0" means any. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
2751
2751
  */
2752
2752
  portRange?: pulumi.Input<string>;
2753
2753
  /**
2754
- * enum: `any`, `icmp`, `tcp`, `udp`
2754
+ * enum: `any`, `icmp`, `tcp`, `udp`. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
2755
2755
  */
2756
2756
  protocol?: pulumi.Input<string>;
2757
- subnets?: pulumi.Input<pulumi.Input<string>[]>;
2757
+ subnets: pulumi.Input<pulumi.Input<string>[]>;
2758
2758
  }
2759
2759
  interface SwitchSwitchMgmtTacacs {
2760
2760
  acctServers?: pulumi.Input<pulumi.Input<inputs.device.SwitchSwitchMgmtTacacsAcctServer>[]>;
@@ -6761,7 +6761,7 @@ export declare namespace org {
6761
6761
  }
6762
6762
  interface NetworktemplateSwitchMgmtProtectRe {
6763
6763
  /**
6764
- * optionally, services we'll allow
6764
+ * optionally, services we'll allow. enum: `icmp`, `ssh`
6765
6765
  */
6766
6766
  allowedServices?: pulumi.Input<pulumi.Input<string>[]>;
6767
6767
  customs?: pulumi.Input<pulumi.Input<inputs.org.NetworktemplateSwitchMgmtProtectReCustom>[]>;
@@ -6778,14 +6778,14 @@ export declare namespace org {
6778
6778
  }
6779
6779
  interface NetworktemplateSwitchMgmtProtectReCustom {
6780
6780
  /**
6781
- * matched dst port, "0" means any
6781
+ * matched dst port, "0" means any. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
6782
6782
  */
6783
6783
  portRange?: pulumi.Input<string>;
6784
6784
  /**
6785
- * enum: `any`, `icmp`, `tcp`, `udp`
6785
+ * enum: `any`, `icmp`, `tcp`, `udp`. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
6786
6786
  */
6787
6787
  protocol?: pulumi.Input<string>;
6788
- subnets?: pulumi.Input<pulumi.Input<string>[]>;
6788
+ subnets: pulumi.Input<pulumi.Input<string>[]>;
6789
6789
  }
6790
6790
  interface NetworktemplateSwitchMgmtTacacs {
6791
6791
  acctServers?: pulumi.Input<pulumi.Input<inputs.org.NetworktemplateSwitchMgmtTacacsAcctServer>[]>;
@@ -9771,7 +9771,7 @@ export declare namespace site {
9771
9771
  }
9772
9772
  interface NetworktemplateSwitchMgmtProtectRe {
9773
9773
  /**
9774
- * optionally, services we'll allow
9774
+ * optionally, services we'll allow. enum: `icmp`, `ssh`
9775
9775
  */
9776
9776
  allowedServices?: pulumi.Input<pulumi.Input<string>[]>;
9777
9777
  customs?: pulumi.Input<pulumi.Input<inputs.site.NetworktemplateSwitchMgmtProtectReCustom>[]>;
@@ -9788,14 +9788,14 @@ export declare namespace site {
9788
9788
  }
9789
9789
  interface NetworktemplateSwitchMgmtProtectReCustom {
9790
9790
  /**
9791
- * matched dst port, "0" means any
9791
+ * matched dst port, "0" means any. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
9792
9792
  */
9793
9793
  portRange?: pulumi.Input<string>;
9794
9794
  /**
9795
- * enum: `any`, `icmp`, `tcp`, `udp`
9795
+ * enum: `any`, `icmp`, `tcp`, `udp`. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
9796
9796
  */
9797
9797
  protocol?: pulumi.Input<string>;
9798
- subnets?: pulumi.Input<pulumi.Input<string>[]>;
9798
+ subnets: pulumi.Input<pulumi.Input<string>[]>;
9799
9799
  }
9800
9800
  interface NetworktemplateSwitchMgmtTacacs {
9801
9801
  acctServers?: pulumi.Input<pulumi.Input<inputs.site.NetworktemplateSwitchMgmtTacacsAcctServer>[]>;
package/types/output.d.ts CHANGED
@@ -3254,7 +3254,7 @@ export declare namespace device {
3254
3254
  * - `type`==`mac`
3255
3255
  * - `type`==`staticGbp` if from matching mac
3256
3256
  */
3257
- macs?: string[];
3257
+ macs: string[];
3258
3258
  /**
3259
3259
  * if:
3260
3260
  * * `type`==`mac` (optional. default is `any`)
@@ -4299,10 +4299,10 @@ export declare namespace device {
4299
4299
  }
4300
4300
  interface SwitchSwitchMgmtProtectRe {
4301
4301
  /**
4302
- * optionally, services we'll allow
4302
+ * optionally, services we'll allow. enum: `icmp`, `ssh`
4303
4303
  */
4304
4304
  allowedServices: string[];
4305
- customs?: outputs.device.SwitchSwitchMgmtProtectReCustom[];
4305
+ customs: outputs.device.SwitchSwitchMgmtProtectReCustom[];
4306
4306
  /**
4307
4307
  * when enabled, all traffic that is not essential to our operation will be dropped
4308
4308
  * e.g. ntp / dns / traffic to mist will be allowed by default
@@ -4316,14 +4316,14 @@ export declare namespace device {
4316
4316
  }
4317
4317
  interface SwitchSwitchMgmtProtectReCustom {
4318
4318
  /**
4319
- * matched dst port, "0" means any
4319
+ * matched dst port, "0" means any. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
4320
4320
  */
4321
4321
  portRange: string;
4322
4322
  /**
4323
- * enum: `any`, `icmp`, `tcp`, `udp`
4323
+ * enum: `any`, `icmp`, `tcp`, `udp`. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
4324
4324
  */
4325
4325
  protocol: string;
4326
- subnets?: string[];
4326
+ subnets: string[];
4327
4327
  }
4328
4328
  interface SwitchSwitchMgmtTacacs {
4329
4329
  acctServers?: outputs.device.SwitchSwitchMgmtTacacsAcctServer[];
@@ -7833,7 +7833,7 @@ export declare namespace org {
7833
7833
  * - `type`==`mac`
7834
7834
  * - `type`==`staticGbp` if from matching mac
7835
7835
  */
7836
- macs?: string[];
7836
+ macs: string[];
7837
7837
  /**
7838
7838
  * if:
7839
7839
  * * `type`==`mac` (optional. default is `any`)
@@ -8774,10 +8774,10 @@ export declare namespace org {
8774
8774
  }
8775
8775
  interface NetworktemplateSwitchMgmtProtectRe {
8776
8776
  /**
8777
- * optionally, services we'll allow
8777
+ * optionally, services we'll allow. enum: `icmp`, `ssh`
8778
8778
  */
8779
8779
  allowedServices: string[];
8780
- customs?: outputs.org.NetworktemplateSwitchMgmtProtectReCustom[];
8780
+ customs: outputs.org.NetworktemplateSwitchMgmtProtectReCustom[];
8781
8781
  /**
8782
8782
  * when enabled, all traffic that is not essential to our operation will be dropped
8783
8783
  * e.g. ntp / dns / traffic to mist will be allowed by default
@@ -8791,11 +8791,11 @@ export declare namespace org {
8791
8791
  }
8792
8792
  interface NetworktemplateSwitchMgmtProtectReCustom {
8793
8793
  /**
8794
- * matched dst port, "0" means any
8794
+ * matched dst port, "0" means any. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
8795
8795
  */
8796
8796
  portRange: string;
8797
8797
  /**
8798
- * enum: `any`, `icmp`, `tcp`, `udp`
8798
+ * enum: `any`, `icmp`, `tcp`, `udp`. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
8799
8799
  */
8800
8800
  protocol: string;
8801
8801
  subnets: string[];
@@ -10970,7 +10970,7 @@ export declare namespace site {
10970
10970
  * - `type`==`mac`
10971
10971
  * - `type`==`staticGbp` if from matching mac
10972
10972
  */
10973
- macs?: string[];
10973
+ macs: string[];
10974
10974
  /**
10975
10975
  * if:
10976
10976
  * * `type`==`mac` (optional. default is `any`)
@@ -11911,10 +11911,10 @@ export declare namespace site {
11911
11911
  }
11912
11912
  interface NetworktemplateSwitchMgmtProtectRe {
11913
11913
  /**
11914
- * optionally, services we'll allow
11914
+ * optionally, services we'll allow. enum: `icmp`, `ssh`
11915
11915
  */
11916
11916
  allowedServices: string[];
11917
- customs?: outputs.site.NetworktemplateSwitchMgmtProtectReCustom[];
11917
+ customs: outputs.site.NetworktemplateSwitchMgmtProtectReCustom[];
11918
11918
  /**
11919
11919
  * when enabled, all traffic that is not essential to our operation will be dropped
11920
11920
  * e.g. ntp / dns / traffic to mist will be allowed by default
@@ -11928,11 +11928,11 @@ export declare namespace site {
11928
11928
  }
11929
11929
  interface NetworktemplateSwitchMgmtProtectReCustom {
11930
11930
  /**
11931
- * matched dst port, "0" means any
11931
+ * matched dst port, "0" means any. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
11932
11932
  */
11933
11933
  portRange: string;
11934
11934
  /**
11935
- * enum: `any`, `icmp`, `tcp`, `udp`
11935
+ * enum: `any`, `icmp`, `tcp`, `udp`. Note: For `protocol`==`any` and `portRange`==`any`, configure `trustedHosts` instead
11936
11936
  */
11937
11937
  protocol: string;
11938
11938
  subnets: string[];