@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
package/org/servicepolicy.js
CHANGED
|
@@ -12,7 +12,7 @@ const utilities = require("../utilities");
|
|
|
12
12
|
* * the Gateway configuration (`mist_device_gateway.service_policies`)
|
|
13
13
|
* * the Gateway Templates (`mist_org_gatewaytemplate.service_policies`)
|
|
14
14
|
* * the HUB Profiles (`mist_org_deviceprofile_gateway.service_policies`)
|
|
15
|
-
* They can be used to manage common policies
|
|
15
|
+
* They can be used to manage common policies between multiples configurations
|
|
16
16
|
*
|
|
17
17
|
* ## Import
|
|
18
18
|
*
|
|
@@ -53,6 +53,7 @@ class Servicepolicy extends pulumi.CustomResource {
|
|
|
53
53
|
if (opts.id) {
|
|
54
54
|
const state = argsOrState;
|
|
55
55
|
resourceInputs["action"] = state ? state.action : undefined;
|
|
56
|
+
resourceInputs["antivirus"] = state ? state.antivirus : undefined;
|
|
56
57
|
resourceInputs["appqoe"] = state ? state.appqoe : undefined;
|
|
57
58
|
resourceInputs["ewfs"] = state ? state.ewfs : undefined;
|
|
58
59
|
resourceInputs["idp"] = state ? state.idp : undefined;
|
|
@@ -61,6 +62,7 @@ class Servicepolicy extends pulumi.CustomResource {
|
|
|
61
62
|
resourceInputs["orgId"] = state ? state.orgId : undefined;
|
|
62
63
|
resourceInputs["pathPreference"] = state ? state.pathPreference : undefined;
|
|
63
64
|
resourceInputs["services"] = state ? state.services : undefined;
|
|
65
|
+
resourceInputs["sslProxy"] = state ? state.sslProxy : undefined;
|
|
64
66
|
resourceInputs["tenants"] = state ? state.tenants : undefined;
|
|
65
67
|
}
|
|
66
68
|
else {
|
|
@@ -69,6 +71,7 @@ class Servicepolicy extends pulumi.CustomResource {
|
|
|
69
71
|
throw new Error("Missing required property 'orgId'");
|
|
70
72
|
}
|
|
71
73
|
resourceInputs["action"] = args ? args.action : undefined;
|
|
74
|
+
resourceInputs["antivirus"] = args ? args.antivirus : undefined;
|
|
72
75
|
resourceInputs["appqoe"] = args ? args.appqoe : undefined;
|
|
73
76
|
resourceInputs["ewfs"] = args ? args.ewfs : undefined;
|
|
74
77
|
resourceInputs["idp"] = args ? args.idp : undefined;
|
|
@@ -77,6 +80,7 @@ class Servicepolicy extends pulumi.CustomResource {
|
|
|
77
80
|
resourceInputs["orgId"] = args ? args.orgId : undefined;
|
|
78
81
|
resourceInputs["pathPreference"] = args ? args.pathPreference : undefined;
|
|
79
82
|
resourceInputs["services"] = args ? args.services : undefined;
|
|
83
|
+
resourceInputs["sslProxy"] = args ? args.sslProxy : undefined;
|
|
80
84
|
resourceInputs["tenants"] = args ? args.tenants : undefined;
|
|
81
85
|
}
|
|
82
86
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/org/servicepolicy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"servicepolicy.js","sourceRoot":"","sources":["../../org/servicepolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;
|
|
1
|
+
{"version":3,"file":"servicepolicy.js","sourceRoot":"","sources":["../../org/servicepolicy.ts"],"names":[],"mappings":"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"}
|
package/org/setting.d.ts
CHANGED
|
@@ -33,13 +33,13 @@ export declare class Setting extends pulumi.CustomResource {
|
|
|
33
33
|
*/
|
|
34
34
|
static isInstance(obj: any): obj is Setting;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
|
|
37
37
|
* `deviceUpdownThreshold` is ignored.
|
|
38
38
|
*/
|
|
39
39
|
readonly apUpdownThreshold: pulumi.Output<number>;
|
|
40
40
|
readonly apiPolicy: pulumi.Output<outputs.org.SettingApiPolicy | undefined>;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* List of PEM-encoded ca certs
|
|
43
43
|
*/
|
|
44
44
|
readonly cacerts: pulumi.Output<string[]>;
|
|
45
45
|
readonly celona: pulumi.Output<outputs.org.SettingCelona | undefined>;
|
|
@@ -50,21 +50,21 @@ export declare class Setting extends pulumi.CustomResource {
|
|
|
50
50
|
*/
|
|
51
51
|
readonly deviceCert: pulumi.Output<outputs.org.SettingDeviceCert | undefined>;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
|
|
54
54
|
* AP/SW/GW down event only if AP/SW/GW Up is not seen within the threshold in minutes; 0 - 240, default is 0 (trigger
|
|
55
55
|
* immediate)
|
|
56
56
|
*/
|
|
57
57
|
readonly deviceUpdownThreshold: pulumi.Output<number>;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
|
|
60
60
|
*/
|
|
61
61
|
readonly disablePcap: pulumi.Output<boolean>;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* Whether to disable remote shell access for an entire org
|
|
64
64
|
*/
|
|
65
65
|
readonly disableRemoteShell: pulumi.Output<boolean>;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
|
|
68
68
|
* `deviceUpdownThreshold` is ignored.
|
|
69
69
|
*/
|
|
70
70
|
readonly gatewayUpdownThreshold: pulumi.Output<number>;
|
|
@@ -97,13 +97,13 @@ export declare class Setting extends pulumi.CustomResource {
|
|
|
97
97
|
readonly security: pulumi.Output<outputs.org.SettingSecurity | undefined>;
|
|
98
98
|
readonly switchMgmt: pulumi.Output<outputs.org.SettingSwitchMgmt | undefined>;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
|
|
101
101
|
* `deviceUpdownThreshold` is ignored.
|
|
102
102
|
*/
|
|
103
103
|
readonly switchUpdownThreshold: pulumi.Output<number>;
|
|
104
104
|
readonly syntheticTest: pulumi.Output<outputs.org.SettingSyntheticTest | undefined>;
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* Automatically logout the user when UI session is inactive. `0` means disabled
|
|
107
107
|
*/
|
|
108
108
|
readonly uiIdleTimeout: pulumi.Output<number>;
|
|
109
109
|
readonly vpnOptions: pulumi.Output<outputs.org.SettingVpnOptions | undefined>;
|
|
@@ -124,13 +124,13 @@ export declare class Setting extends pulumi.CustomResource {
|
|
|
124
124
|
*/
|
|
125
125
|
export interface SettingState {
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
|
|
128
128
|
* `deviceUpdownThreshold` is ignored.
|
|
129
129
|
*/
|
|
130
130
|
apUpdownThreshold?: pulumi.Input<number>;
|
|
131
131
|
apiPolicy?: pulumi.Input<inputs.org.SettingApiPolicy>;
|
|
132
132
|
/**
|
|
133
|
-
*
|
|
133
|
+
* List of PEM-encoded ca certs
|
|
134
134
|
*/
|
|
135
135
|
cacerts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136
136
|
celona?: pulumi.Input<inputs.org.SettingCelona>;
|
|
@@ -141,21 +141,21 @@ export interface SettingState {
|
|
|
141
141
|
*/
|
|
142
142
|
deviceCert?: pulumi.Input<inputs.org.SettingDeviceCert>;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
|
|
145
145
|
* AP/SW/GW down event only if AP/SW/GW Up is not seen within the threshold in minutes; 0 - 240, default is 0 (trigger
|
|
146
146
|
* immediate)
|
|
147
147
|
*/
|
|
148
148
|
deviceUpdownThreshold?: pulumi.Input<number>;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* Whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
|
|
151
151
|
*/
|
|
152
152
|
disablePcap?: pulumi.Input<boolean>;
|
|
153
153
|
/**
|
|
154
|
-
*
|
|
154
|
+
* Whether to disable remote shell access for an entire org
|
|
155
155
|
*/
|
|
156
156
|
disableRemoteShell?: pulumi.Input<boolean>;
|
|
157
157
|
/**
|
|
158
|
-
*
|
|
158
|
+
* Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
|
|
159
159
|
* `deviceUpdownThreshold` is ignored.
|
|
160
160
|
*/
|
|
161
161
|
gatewayUpdownThreshold?: pulumi.Input<number>;
|
|
@@ -188,13 +188,13 @@ export interface SettingState {
|
|
|
188
188
|
security?: pulumi.Input<inputs.org.SettingSecurity>;
|
|
189
189
|
switchMgmt?: pulumi.Input<inputs.org.SettingSwitchMgmt>;
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
|
|
192
192
|
* `deviceUpdownThreshold` is ignored.
|
|
193
193
|
*/
|
|
194
194
|
switchUpdownThreshold?: pulumi.Input<number>;
|
|
195
195
|
syntheticTest?: pulumi.Input<inputs.org.SettingSyntheticTest>;
|
|
196
196
|
/**
|
|
197
|
-
*
|
|
197
|
+
* Automatically logout the user when UI session is inactive. `0` means disabled
|
|
198
198
|
*/
|
|
199
199
|
uiIdleTimeout?: pulumi.Input<number>;
|
|
200
200
|
vpnOptions?: pulumi.Input<inputs.org.SettingVpnOptions>;
|
|
@@ -207,13 +207,13 @@ export interface SettingState {
|
|
|
207
207
|
*/
|
|
208
208
|
export interface SettingArgs {
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
|
|
211
211
|
* `deviceUpdownThreshold` is ignored.
|
|
212
212
|
*/
|
|
213
213
|
apUpdownThreshold?: pulumi.Input<number>;
|
|
214
214
|
apiPolicy?: pulumi.Input<inputs.org.SettingApiPolicy>;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* List of PEM-encoded ca certs
|
|
217
217
|
*/
|
|
218
218
|
cacerts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
celona?: pulumi.Input<inputs.org.SettingCelona>;
|
|
@@ -223,21 +223,21 @@ export interface SettingArgs {
|
|
|
223
223
|
*/
|
|
224
224
|
deviceCert?: pulumi.Input<inputs.org.SettingDeviceCert>;
|
|
225
225
|
/**
|
|
226
|
-
*
|
|
226
|
+
* Enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
|
|
227
227
|
* AP/SW/GW down event only if AP/SW/GW Up is not seen within the threshold in minutes; 0 - 240, default is 0 (trigger
|
|
228
228
|
* immediate)
|
|
229
229
|
*/
|
|
230
230
|
deviceUpdownThreshold?: pulumi.Input<number>;
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
232
|
+
* Whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
|
|
233
233
|
*/
|
|
234
234
|
disablePcap?: pulumi.Input<boolean>;
|
|
235
235
|
/**
|
|
236
|
-
*
|
|
236
|
+
* Whether to disable remote shell access for an entire org
|
|
237
237
|
*/
|
|
238
238
|
disableRemoteShell?: pulumi.Input<boolean>;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
|
|
241
241
|
* `deviceUpdownThreshold` is ignored.
|
|
242
242
|
*/
|
|
243
243
|
gatewayUpdownThreshold?: pulumi.Input<number>;
|
|
@@ -269,13 +269,13 @@ export interface SettingArgs {
|
|
|
269
269
|
security?: pulumi.Input<inputs.org.SettingSecurity>;
|
|
270
270
|
switchMgmt?: pulumi.Input<inputs.org.SettingSwitchMgmt>;
|
|
271
271
|
/**
|
|
272
|
-
*
|
|
272
|
+
* Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
|
|
273
273
|
* `deviceUpdownThreshold` is ignored.
|
|
274
274
|
*/
|
|
275
275
|
switchUpdownThreshold?: pulumi.Input<number>;
|
|
276
276
|
syntheticTest?: pulumi.Input<inputs.org.SettingSyntheticTest>;
|
|
277
277
|
/**
|
|
278
|
-
*
|
|
278
|
+
* Automatically logout the user when UI session is inactive. `0` means disabled
|
|
279
279
|
*/
|
|
280
280
|
uiIdleTimeout?: pulumi.Input<number>;
|
|
281
281
|
vpnOptions?: pulumi.Input<inputs.org.SettingVpnOptions>;
|
package/org/sso.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export declare class Sso extends pulumi.CustomResource {
|
|
|
61
61
|
*/
|
|
62
62
|
readonly defaultRole: pulumi.Output<string | undefined>;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
64
|
+
* Random string generated during the SSO creation and used to generate the SAML URLs: * ACS URL =
|
|
65
65
|
* `/api/v1/saml/{domain}/login` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/login`) * Single Logout URL =
|
|
66
66
|
* `/api/v1/saml/{domain}/logout` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/logout`)
|
|
67
67
|
*/
|
|
@@ -87,7 +87,7 @@ export declare class Sso extends pulumi.CustomResource {
|
|
|
87
87
|
*/
|
|
88
88
|
readonly issuer: pulumi.Output<string>;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Name
|
|
91
91
|
*/
|
|
92
92
|
readonly name: pulumi.Output<string>;
|
|
93
93
|
/**
|
|
@@ -99,8 +99,8 @@ export declare class Sso extends pulumi.CustomResource {
|
|
|
99
99
|
* custom role attribute parsing scheme. Supported Role Parsing Schemes
|
|
100
100
|
* <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
|
|
101
101
|
* Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
|
|
102
|
-
* entire entry will be ignored)</li
|
|
103
|
-
* “cn”</
|
|
102
|
+
* entire entry will be ignored)</li></ul>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
|
|
103
|
+
* “cn”</td></tr></table>
|
|
104
104
|
*/
|
|
105
105
|
readonly roleAttrExtraction: pulumi.Output<string | undefined>;
|
|
106
106
|
/**
|
|
@@ -131,7 +131,7 @@ export interface SsoState {
|
|
|
131
131
|
*/
|
|
132
132
|
defaultRole?: pulumi.Input<string>;
|
|
133
133
|
/**
|
|
134
|
-
*
|
|
134
|
+
* Random string generated during the SSO creation and used to generate the SAML URLs: * ACS URL =
|
|
135
135
|
* `/api/v1/saml/{domain}/login` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/login`) * Single Logout URL =
|
|
136
136
|
* `/api/v1/saml/{domain}/logout` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/logout`)
|
|
137
137
|
*/
|
|
@@ -157,7 +157,7 @@ export interface SsoState {
|
|
|
157
157
|
*/
|
|
158
158
|
issuer?: pulumi.Input<string>;
|
|
159
159
|
/**
|
|
160
|
-
*
|
|
160
|
+
* Name
|
|
161
161
|
*/
|
|
162
162
|
name?: pulumi.Input<string>;
|
|
163
163
|
/**
|
|
@@ -169,8 +169,8 @@ export interface SsoState {
|
|
|
169
169
|
* custom role attribute parsing scheme. Supported Role Parsing Schemes
|
|
170
170
|
* <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
|
|
171
171
|
* Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
|
|
172
|
-
* entire entry will be ignored)</li
|
|
173
|
-
* “cn”</
|
|
172
|
+
* entire entry will be ignored)</li></ul>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
|
|
173
|
+
* “cn”</td></tr></table>
|
|
174
174
|
*/
|
|
175
175
|
roleAttrExtraction?: pulumi.Input<string>;
|
|
176
176
|
/**
|
|
@@ -213,7 +213,7 @@ export interface SsoArgs {
|
|
|
213
213
|
*/
|
|
214
214
|
issuer: pulumi.Input<string>;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Name
|
|
217
217
|
*/
|
|
218
218
|
name?: pulumi.Input<string>;
|
|
219
219
|
/**
|
|
@@ -225,8 +225,8 @@ export interface SsoArgs {
|
|
|
225
225
|
* custom role attribute parsing scheme. Supported Role Parsing Schemes
|
|
226
226
|
* <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
|
|
227
227
|
* Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
|
|
228
|
-
* entire entry will be ignored)</li
|
|
229
|
-
* “cn”</
|
|
228
|
+
* entire entry will be ignored)</li></ul>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
|
|
229
|
+
* “cn”</td></tr></table>
|
|
230
230
|
*/
|
|
231
231
|
roleAttrExtraction?: pulumi.Input<string>;
|
|
232
232
|
/**
|
package/org/ssoRole.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import * as outputs from "../types/output";
|
|
|
6
6
|
*
|
|
7
7
|
* SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
|
|
8
8
|
* 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.\
|
|
9
|
-
* Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects
|
|
9
|
+
* Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
|
|
10
10
|
*
|
|
11
11
|
* ## Import
|
|
12
12
|
*
|
package/org/ssoRole.js
CHANGED
|
@@ -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
|
* ## Import
|
|
16
16
|
*
|
package/org/webhook.d.ts
CHANGED
|
@@ -33,26 +33,25 @@ export declare class Webhook extends pulumi.CustomResource {
|
|
|
33
33
|
*/
|
|
34
34
|
static isInstance(obj: any): obj is Webhook;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Whether webhook is enabled
|
|
37
37
|
*/
|
|
38
38
|
readonly enabled: pulumi.Output<boolean>;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
41
|
-
* the headers name and value must be string, total bytes of headers name and value must be less than 1000
|
|
40
|
+
* If `type`=`http-post`, additional custom HTTP headers to add. The headers name and value must be string, total bytes of headers name and value must be less than 1000
|
|
42
41
|
*/
|
|
43
42
|
readonly headers: pulumi.Output<{
|
|
44
43
|
[key: string]: string;
|
|
45
44
|
} | undefined>;
|
|
46
45
|
/**
|
|
47
|
-
*
|
|
46
|
+
* Name of the webhook
|
|
48
47
|
*/
|
|
49
48
|
readonly name: pulumi.Output<string>;
|
|
50
49
|
/**
|
|
51
|
-
*
|
|
50
|
+
* Required when `oauth2GrantType`==`clientCredentials`
|
|
52
51
|
*/
|
|
53
52
|
readonly oauth2ClientId: pulumi.Output<string | undefined>;
|
|
54
53
|
/**
|
|
55
|
-
*
|
|
54
|
+
* Required when `oauth2GrantType`==`clientCredentials`
|
|
56
55
|
*/
|
|
57
56
|
readonly oauth2ClientSecret: pulumi.Output<string | undefined>;
|
|
58
57
|
/**
|
|
@@ -60,29 +59,29 @@ export declare class Webhook extends pulumi.CustomResource {
|
|
|
60
59
|
*/
|
|
61
60
|
readonly oauth2GrantType: pulumi.Output<string | undefined>;
|
|
62
61
|
/**
|
|
63
|
-
*
|
|
62
|
+
* Required when `oauth2GrantType`==`password`
|
|
64
63
|
*/
|
|
65
64
|
readonly oauth2Password: pulumi.Output<string | undefined>;
|
|
66
65
|
/**
|
|
67
|
-
*
|
|
66
|
+
* Required when `type`==`oauth2`, if provided, will be used in the token request
|
|
68
67
|
*/
|
|
69
68
|
readonly oauth2Scopes: pulumi.Output<string[] | undefined>;
|
|
70
69
|
/**
|
|
71
|
-
*
|
|
70
|
+
* Required when `type`==`oauth2`
|
|
72
71
|
*/
|
|
73
72
|
readonly oauth2TokenUrl: pulumi.Output<string | undefined>;
|
|
74
73
|
/**
|
|
75
|
-
*
|
|
74
|
+
* Required when `oauth2GrantType`==`password`
|
|
76
75
|
*/
|
|
77
76
|
readonly oauth2Username: pulumi.Output<string | undefined>;
|
|
78
77
|
readonly orgId: pulumi.Output<string>;
|
|
79
78
|
/**
|
|
80
|
-
*
|
|
79
|
+
* Only if `type`=`http-post`
|
|
81
80
|
*/
|
|
82
81
|
readonly secret: pulumi.Output<string | undefined>;
|
|
83
82
|
/**
|
|
84
|
-
*
|
|
85
|
-
* webhook receiver is configured to accept it.
|
|
83
|
+
* Required if `type`=`splunk`. If splunkToken is not defined for a type Splunk webhook, it will not send, regardless if
|
|
84
|
+
* the webhook receiver is configured to accept it.
|
|
86
85
|
*/
|
|
87
86
|
readonly splunkToken: pulumi.Output<string | undefined>;
|
|
88
87
|
/**
|
|
@@ -95,7 +94,7 @@ export declare class Webhook extends pulumi.CustomResource {
|
|
|
95
94
|
readonly type: pulumi.Output<string>;
|
|
96
95
|
readonly url: pulumi.Output<string>;
|
|
97
96
|
/**
|
|
98
|
-
*
|
|
97
|
+
* When url uses HTTPS, whether to verify the certificate
|
|
99
98
|
*/
|
|
100
99
|
readonly verifyCert: pulumi.Output<boolean>;
|
|
101
100
|
/**
|
|
@@ -112,26 +111,25 @@ export declare class Webhook extends pulumi.CustomResource {
|
|
|
112
111
|
*/
|
|
113
112
|
export interface WebhookState {
|
|
114
113
|
/**
|
|
115
|
-
*
|
|
114
|
+
* Whether webhook is enabled
|
|
116
115
|
*/
|
|
117
116
|
enabled?: pulumi.Input<boolean>;
|
|
118
117
|
/**
|
|
119
|
-
*
|
|
120
|
-
* the headers name and value must be string, total bytes of headers name and value must be less than 1000
|
|
118
|
+
* If `type`=`http-post`, additional custom HTTP headers to add. The headers name and value must be string, total bytes of headers name and value must be less than 1000
|
|
121
119
|
*/
|
|
122
120
|
headers?: pulumi.Input<{
|
|
123
121
|
[key: string]: pulumi.Input<string>;
|
|
124
122
|
}>;
|
|
125
123
|
/**
|
|
126
|
-
*
|
|
124
|
+
* Name of the webhook
|
|
127
125
|
*/
|
|
128
126
|
name?: pulumi.Input<string>;
|
|
129
127
|
/**
|
|
130
|
-
*
|
|
128
|
+
* Required when `oauth2GrantType`==`clientCredentials`
|
|
131
129
|
*/
|
|
132
130
|
oauth2ClientId?: pulumi.Input<string>;
|
|
133
131
|
/**
|
|
134
|
-
*
|
|
132
|
+
* Required when `oauth2GrantType`==`clientCredentials`
|
|
135
133
|
*/
|
|
136
134
|
oauth2ClientSecret?: pulumi.Input<string>;
|
|
137
135
|
/**
|
|
@@ -139,29 +137,29 @@ export interface WebhookState {
|
|
|
139
137
|
*/
|
|
140
138
|
oauth2GrantType?: pulumi.Input<string>;
|
|
141
139
|
/**
|
|
142
|
-
*
|
|
140
|
+
* Required when `oauth2GrantType`==`password`
|
|
143
141
|
*/
|
|
144
142
|
oauth2Password?: pulumi.Input<string>;
|
|
145
143
|
/**
|
|
146
|
-
*
|
|
144
|
+
* Required when `type`==`oauth2`, if provided, will be used in the token request
|
|
147
145
|
*/
|
|
148
146
|
oauth2Scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
149
147
|
/**
|
|
150
|
-
*
|
|
148
|
+
* Required when `type`==`oauth2`
|
|
151
149
|
*/
|
|
152
150
|
oauth2TokenUrl?: pulumi.Input<string>;
|
|
153
151
|
/**
|
|
154
|
-
*
|
|
152
|
+
* Required when `oauth2GrantType`==`password`
|
|
155
153
|
*/
|
|
156
154
|
oauth2Username?: pulumi.Input<string>;
|
|
157
155
|
orgId?: pulumi.Input<string>;
|
|
158
156
|
/**
|
|
159
|
-
*
|
|
157
|
+
* Only if `type`=`http-post`
|
|
160
158
|
*/
|
|
161
159
|
secret?: pulumi.Input<string>;
|
|
162
160
|
/**
|
|
163
|
-
*
|
|
164
|
-
* webhook receiver is configured to accept it.
|
|
161
|
+
* Required if `type`=`splunk`. If splunkToken is not defined for a type Splunk webhook, it will not send, regardless if
|
|
162
|
+
* the webhook receiver is configured to accept it.
|
|
165
163
|
*/
|
|
166
164
|
splunkToken?: pulumi.Input<string>;
|
|
167
165
|
/**
|
|
@@ -174,7 +172,7 @@ export interface WebhookState {
|
|
|
174
172
|
type?: pulumi.Input<string>;
|
|
175
173
|
url?: pulumi.Input<string>;
|
|
176
174
|
/**
|
|
177
|
-
*
|
|
175
|
+
* When url uses HTTPS, whether to verify the certificate
|
|
178
176
|
*/
|
|
179
177
|
verifyCert?: pulumi.Input<boolean>;
|
|
180
178
|
}
|
|
@@ -183,26 +181,25 @@ export interface WebhookState {
|
|
|
183
181
|
*/
|
|
184
182
|
export interface WebhookArgs {
|
|
185
183
|
/**
|
|
186
|
-
*
|
|
184
|
+
* Whether webhook is enabled
|
|
187
185
|
*/
|
|
188
186
|
enabled?: pulumi.Input<boolean>;
|
|
189
187
|
/**
|
|
190
|
-
*
|
|
191
|
-
* the headers name and value must be string, total bytes of headers name and value must be less than 1000
|
|
188
|
+
* If `type`=`http-post`, additional custom HTTP headers to add. The headers name and value must be string, total bytes of headers name and value must be less than 1000
|
|
192
189
|
*/
|
|
193
190
|
headers?: pulumi.Input<{
|
|
194
191
|
[key: string]: pulumi.Input<string>;
|
|
195
192
|
}>;
|
|
196
193
|
/**
|
|
197
|
-
*
|
|
194
|
+
* Name of the webhook
|
|
198
195
|
*/
|
|
199
196
|
name?: pulumi.Input<string>;
|
|
200
197
|
/**
|
|
201
|
-
*
|
|
198
|
+
* Required when `oauth2GrantType`==`clientCredentials`
|
|
202
199
|
*/
|
|
203
200
|
oauth2ClientId?: pulumi.Input<string>;
|
|
204
201
|
/**
|
|
205
|
-
*
|
|
202
|
+
* Required when `oauth2GrantType`==`clientCredentials`
|
|
206
203
|
*/
|
|
207
204
|
oauth2ClientSecret?: pulumi.Input<string>;
|
|
208
205
|
/**
|
|
@@ -210,29 +207,29 @@ export interface WebhookArgs {
|
|
|
210
207
|
*/
|
|
211
208
|
oauth2GrantType?: pulumi.Input<string>;
|
|
212
209
|
/**
|
|
213
|
-
*
|
|
210
|
+
* Required when `oauth2GrantType`==`password`
|
|
214
211
|
*/
|
|
215
212
|
oauth2Password?: pulumi.Input<string>;
|
|
216
213
|
/**
|
|
217
|
-
*
|
|
214
|
+
* Required when `type`==`oauth2`, if provided, will be used in the token request
|
|
218
215
|
*/
|
|
219
216
|
oauth2Scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
220
217
|
/**
|
|
221
|
-
*
|
|
218
|
+
* Required when `type`==`oauth2`
|
|
222
219
|
*/
|
|
223
220
|
oauth2TokenUrl?: pulumi.Input<string>;
|
|
224
221
|
/**
|
|
225
|
-
*
|
|
222
|
+
* Required when `oauth2GrantType`==`password`
|
|
226
223
|
*/
|
|
227
224
|
oauth2Username?: pulumi.Input<string>;
|
|
228
225
|
orgId: pulumi.Input<string>;
|
|
229
226
|
/**
|
|
230
|
-
*
|
|
227
|
+
* Only if `type`=`http-post`
|
|
231
228
|
*/
|
|
232
229
|
secret?: pulumi.Input<string>;
|
|
233
230
|
/**
|
|
234
|
-
*
|
|
235
|
-
* webhook receiver is configured to accept it.
|
|
231
|
+
* Required if `type`=`splunk`. If splunkToken is not defined for a type Splunk webhook, it will not send, regardless if
|
|
232
|
+
* the webhook receiver is configured to accept it.
|
|
236
233
|
*/
|
|
237
234
|
splunkToken?: pulumi.Input<string>;
|
|
238
235
|
/**
|
|
@@ -245,7 +242,7 @@ export interface WebhookArgs {
|
|
|
245
242
|
type?: pulumi.Input<string>;
|
|
246
243
|
url: pulumi.Input<string>;
|
|
247
244
|
/**
|
|
248
|
-
*
|
|
245
|
+
* When url uses HTTPS, whether to verify the certificate
|
|
249
246
|
*/
|
|
250
247
|
verifyCert?: pulumi.Input<boolean>;
|
|
251
248
|
}
|
package/org/webhook.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webhook.js","sourceRoot":"","sources":["../../org/webhook.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"webhook.js","sourceRoot":"","sources":["../../org/webhook.ts"],"names":[],"mappings":"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"}
|