@pulumi/juniper-mist 0.2.2 → 0.2.3
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/image.d.ts +1 -1
- package/device/image.js +1 -1
- package/device/switch.d.ts +39 -39
- 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 +1394 -1276
- package/types/output.d.ts +1732 -1575
|
@@ -28,7 +28,7 @@ export declare class WlanPortalTemplate extends pulumi.CustomResource {
|
|
|
28
28
|
*/
|
|
29
29
|
static isInstance(obj: any): obj is WlanPortalTemplate;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Portal template wlan settings
|
|
32
32
|
*/
|
|
33
33
|
readonly portalTemplate: pulumi.Output<outputs.site.WlanPortalTemplatePortalTemplate>;
|
|
34
34
|
readonly siteId: pulumi.Output<string>;
|
|
@@ -50,7 +50,7 @@ export declare class WlanPortalTemplate extends pulumi.CustomResource {
|
|
|
50
50
|
*/
|
|
51
51
|
export interface WlanPortalTemplateState {
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Portal template wlan settings
|
|
54
54
|
*/
|
|
55
55
|
portalTemplate?: pulumi.Input<inputs.site.WlanPortalTemplatePortalTemplate>;
|
|
56
56
|
siteId?: pulumi.Input<string>;
|
|
@@ -64,7 +64,7 @@ export interface WlanPortalTemplateState {
|
|
|
64
64
|
*/
|
|
65
65
|
export interface WlanPortalTemplateArgs {
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* Portal template wlan settings
|
|
68
68
|
*/
|
|
69
69
|
portalTemplate: pulumi.Input<inputs.site.WlanPortalTemplatePortalTemplate>;
|
|
70
70
|
siteId: pulumi.Input<string>;
|