@pulumi/splunk 1.0.0 → 1.2.0-alpha.1637768220
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/README.md +1 -1
- package/adminSamlGroups.d.ts +4 -4
- package/adminSamlGroups.js +1 -0
- package/adminSamlGroups.js.map +1 -1
- package/appsLocal.d.ts +26 -26
- package/appsLocal.js +1 -0
- package/appsLocal.js.map +1 -1
- package/authenticationUsers.d.ts +18 -18
- package/authenticationUsers.js +1 -0
- package/authenticationUsers.js.map +1 -1
- package/authorizationRoles.d.ts +26 -26
- package/authorizationRoles.js +1 -0
- package/authorizationRoles.js.map +1 -1
- package/config/index.js +11 -4
- package/config/index.js.map +1 -1
- package/config/vars.d.ts +6 -6
- package/config/vars.js +37 -26
- package/config/vars.js.map +1 -1
- package/configsConf.d.ts +6 -6
- package/configsConf.js +1 -0
- package/configsConf.js.map +1 -1
- package/dataUiViews.d.ts +6 -6
- package/dataUiViews.js +1 -0
- package/dataUiViews.js.map +1 -1
- package/globalHttpEventCollector.d.ts +14 -14
- package/globalHttpEventCollector.js +1 -0
- package/globalHttpEventCollector.js.map +1 -1
- package/index.js +34 -26
- package/index.js.map +1 -1
- package/indexes.d.ts +78 -78
- package/indexes.js +1 -0
- package/indexes.js.map +1 -1
- package/inputsHttpEventCollector.d.ts +20 -20
- package/inputsHttpEventCollector.js +1 -0
- package/inputsHttpEventCollector.js.map +1 -1
- package/inputsMonitor.d.ts +32 -32
- package/inputsMonitor.js +1 -0
- package/inputsMonitor.js.map +1 -1
- package/inputsScript.d.ts +20 -20
- package/inputsScript.js +1 -0
- package/inputsScript.js.map +1 -1
- package/inputsTcpCooked.d.ts +12 -12
- package/inputsTcpCooked.js +1 -0
- package/inputsTcpCooked.js.map +1 -1
- package/inputsTcpRaw.d.ts +22 -22
- package/inputsTcpRaw.js +1 -0
- package/inputsTcpRaw.js.map +1 -1
- package/inputsTcpSplunkTcpToken.d.ts +6 -6
- package/inputsTcpSplunkTcpToken.js +1 -0
- package/inputsTcpSplunkTcpToken.js.map +1 -1
- package/inputsTcpSsl.d.ts +10 -10
- package/inputsTcpSsl.js +1 -0
- package/inputsTcpSsl.js.map +1 -1
- package/inputsUdp.d.ts +24 -24
- package/inputsUdp.js +1 -0
- package/inputsUdp.js.map +1 -1
- package/outputsTcpDefault.d.ts +18 -18
- package/outputsTcpDefault.js +1 -0
- package/outputsTcpDefault.js.map +1 -1
- package/outputsTcpGroup.d.ts +22 -22
- package/outputsTcpGroup.js +1 -0
- package/outputsTcpGroup.js.map +1 -1
- package/outputsTcpServer.d.ts +22 -22
- package/outputsTcpServer.js +1 -0
- package/outputsTcpServer.js.map +1 -1
- package/outputsTcpSyslog.d.ts +16 -16
- package/outputsTcpSyslog.js +1 -0
- package/outputsTcpSyslog.js.map +1 -1
- package/package.json +4 -3
- package/package.json.bak +3 -2
- package/package.json.dev +4 -3
- package/provider.d.ts +23 -6
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/savedSearches.d.ts +269 -269
- package/savedSearches.js +1 -0
- package/savedSearches.js.map +1 -1
- package/shIndexesManager.d.ts +10 -10
- package/shIndexesManager.js +1 -0
- package/shIndexesManager.js.map +1 -1
- package/types/index.js +1 -0
- package/types/index.js.map +1 -1
- package/utilities.js +1 -0
- package/utilities.js.map +1 -1
package/README.md
CHANGED
package/adminSamlGroups.d.ts
CHANGED
|
@@ -66,11 +66,11 @@ export interface AdminSamlGroupsState {
|
|
|
66
66
|
/**
|
|
67
67
|
* The name of the external group.
|
|
68
68
|
*/
|
|
69
|
-
|
|
69
|
+
name?: pulumi.Input<string>;
|
|
70
70
|
/**
|
|
71
71
|
* List of internal roles assigned to the group.
|
|
72
72
|
*/
|
|
73
|
-
|
|
73
|
+
roles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
76
|
* The set of arguments for constructing a AdminSamlGroups resource.
|
|
@@ -79,9 +79,9 @@ export interface AdminSamlGroupsArgs {
|
|
|
79
79
|
/**
|
|
80
80
|
* The name of the external group.
|
|
81
81
|
*/
|
|
82
|
-
|
|
82
|
+
name?: pulumi.Input<string>;
|
|
83
83
|
/**
|
|
84
84
|
* List of internal roles assigned to the group.
|
|
85
85
|
*/
|
|
86
|
-
|
|
86
|
+
roles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
87
87
|
}
|
package/adminSamlGroups.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.AdminSamlGroups = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
package/adminSamlGroups.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adminSamlGroups.js","sourceRoot":"","sources":["../adminSamlGroups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"adminSamlGroups.js","sourceRoot":"","sources":["../adminSamlGroups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IA6CtD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SACrD;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9C,MAAM,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SACnD;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;IA5DD;;;;;;;;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;;AA1BL,0CA8DC;AAhDG,gBAAgB;AACO,4BAAY,GAAG,8CAA8C,CAAC"}
|
package/appsLocal.d.ts
CHANGED
|
@@ -112,66 +112,66 @@ export interface AppsLocalState {
|
|
|
112
112
|
/**
|
|
113
113
|
* The app/user context that is the namespace for the resource
|
|
114
114
|
*/
|
|
115
|
-
|
|
115
|
+
acl?: pulumi.Input<inputs.AppsLocalAcl>;
|
|
116
116
|
/**
|
|
117
117
|
* Splunkbase session token for operations like install and update that require login. Use auth or session when installing or updating an app through Splunkbase.
|
|
118
118
|
*/
|
|
119
|
-
|
|
119
|
+
auth?: pulumi.Input<string>;
|
|
120
120
|
/**
|
|
121
121
|
* For apps posted to Splunkbase, use your Splunk account username. For internal apps, include your name and contact information.
|
|
122
122
|
*/
|
|
123
|
-
|
|
123
|
+
author?: pulumi.Input<string>;
|
|
124
124
|
/**
|
|
125
125
|
* Custom setup complete indication:
|
|
126
126
|
* <br>true = Custom app setup complete.
|
|
127
127
|
* <br>false = Custom app setup not complete.
|
|
128
128
|
*/
|
|
129
|
-
|
|
129
|
+
configured?: pulumi.Input<boolean>;
|
|
130
130
|
/**
|
|
131
131
|
* Short app description also displayed below the app title in Splunk Web Launcher.
|
|
132
132
|
*/
|
|
133
|
-
|
|
133
|
+
description?: pulumi.Input<string>;
|
|
134
134
|
/**
|
|
135
135
|
* Custom app name. Overrides name when installing an app from a file where filename is set to true. See also filename.
|
|
136
136
|
*/
|
|
137
|
-
|
|
137
|
+
explicitAppname?: pulumi.Input<string>;
|
|
138
138
|
/**
|
|
139
139
|
* Indicates whether to use the name value as the app source location.
|
|
140
140
|
* <br>true indicates that name is a path to a file to install.
|
|
141
141
|
* <br>false indicates that name is the literal app name and that the app is created from Splunkbase using a template.
|
|
142
142
|
*/
|
|
143
|
-
|
|
143
|
+
filename?: pulumi.Input<boolean>;
|
|
144
144
|
/**
|
|
145
145
|
* App name displayed in Splunk Web, from five to eighty characters excluding the prefix "Splunk for".
|
|
146
146
|
*/
|
|
147
|
-
|
|
147
|
+
label?: pulumi.Input<string>;
|
|
148
148
|
/**
|
|
149
149
|
* Literal app name or path for the file to install, depending on the value of filename.
|
|
150
150
|
* <br>filename = false indicates that name is the literal app name and that the app is created from Splunkbase using a template.
|
|
151
151
|
* <br>filename = true indicates that name is the URL or path to the local .tar, .tgz or .spl file. If name is the Splunkbase URL, set auth or session to authenticate the request.
|
|
152
152
|
* The app folder name cannot include spaces or special characters.
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
name?: pulumi.Input<string>;
|
|
155
155
|
/**
|
|
156
156
|
* Login session token for installing or updating an app on Splunkbase. Alternatively, use auth.
|
|
157
157
|
*/
|
|
158
|
-
|
|
158
|
+
session?: pulumi.Input<string>;
|
|
159
159
|
/**
|
|
160
160
|
* File-based update indication:
|
|
161
161
|
* <br>true specifies that filename should be used to update an existing app. If not specified, update defaults to
|
|
162
162
|
* <br>false, which indicates that filename should not be used to update an existing app.
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
update?: pulumi.Input<boolean>;
|
|
165
165
|
/**
|
|
166
166
|
* App version.
|
|
167
167
|
*/
|
|
168
|
-
|
|
168
|
+
version?: pulumi.Input<string>;
|
|
169
169
|
/**
|
|
170
170
|
* Indicates whether the app is visible and navigable from Splunk Web.
|
|
171
171
|
* <br>true = App is visible and navigable.
|
|
172
172
|
* <br>false = App is not visible or navigable.
|
|
173
173
|
*/
|
|
174
|
-
|
|
174
|
+
visible?: pulumi.Input<boolean>;
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
177
|
* The set of arguments for constructing a AppsLocal resource.
|
|
@@ -180,64 +180,64 @@ export interface AppsLocalArgs {
|
|
|
180
180
|
/**
|
|
181
181
|
* The app/user context that is the namespace for the resource
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
acl?: pulumi.Input<inputs.AppsLocalAcl>;
|
|
184
184
|
/**
|
|
185
185
|
* Splunkbase session token for operations like install and update that require login. Use auth or session when installing or updating an app through Splunkbase.
|
|
186
186
|
*/
|
|
187
|
-
|
|
187
|
+
auth?: pulumi.Input<string>;
|
|
188
188
|
/**
|
|
189
189
|
* For apps posted to Splunkbase, use your Splunk account username. For internal apps, include your name and contact information.
|
|
190
190
|
*/
|
|
191
|
-
|
|
191
|
+
author?: pulumi.Input<string>;
|
|
192
192
|
/**
|
|
193
193
|
* Custom setup complete indication:
|
|
194
194
|
* <br>true = Custom app setup complete.
|
|
195
195
|
* <br>false = Custom app setup not complete.
|
|
196
196
|
*/
|
|
197
|
-
|
|
197
|
+
configured?: pulumi.Input<boolean>;
|
|
198
198
|
/**
|
|
199
199
|
* Short app description also displayed below the app title in Splunk Web Launcher.
|
|
200
200
|
*/
|
|
201
|
-
|
|
201
|
+
description?: pulumi.Input<string>;
|
|
202
202
|
/**
|
|
203
203
|
* Custom app name. Overrides name when installing an app from a file where filename is set to true. See also filename.
|
|
204
204
|
*/
|
|
205
|
-
|
|
205
|
+
explicitAppname?: pulumi.Input<string>;
|
|
206
206
|
/**
|
|
207
207
|
* Indicates whether to use the name value as the app source location.
|
|
208
208
|
* <br>true indicates that name is a path to a file to install.
|
|
209
209
|
* <br>false indicates that name is the literal app name and that the app is created from Splunkbase using a template.
|
|
210
210
|
*/
|
|
211
|
-
|
|
211
|
+
filename?: pulumi.Input<boolean>;
|
|
212
212
|
/**
|
|
213
213
|
* App name displayed in Splunk Web, from five to eighty characters excluding the prefix "Splunk for".
|
|
214
214
|
*/
|
|
215
|
-
|
|
215
|
+
label?: pulumi.Input<string>;
|
|
216
216
|
/**
|
|
217
217
|
* Literal app name or path for the file to install, depending on the value of filename.
|
|
218
218
|
* <br>filename = false indicates that name is the literal app name and that the app is created from Splunkbase using a template.
|
|
219
219
|
* <br>filename = true indicates that name is the URL or path to the local .tar, .tgz or .spl file. If name is the Splunkbase URL, set auth or session to authenticate the request.
|
|
220
220
|
* The app folder name cannot include spaces or special characters.
|
|
221
221
|
*/
|
|
222
|
-
|
|
222
|
+
name?: pulumi.Input<string>;
|
|
223
223
|
/**
|
|
224
224
|
* Login session token for installing or updating an app on Splunkbase. Alternatively, use auth.
|
|
225
225
|
*/
|
|
226
|
-
|
|
226
|
+
session?: pulumi.Input<string>;
|
|
227
227
|
/**
|
|
228
228
|
* File-based update indication:
|
|
229
229
|
* <br>true specifies that filename should be used to update an existing app. If not specified, update defaults to
|
|
230
230
|
* <br>false, which indicates that filename should not be used to update an existing app.
|
|
231
231
|
*/
|
|
232
|
-
|
|
232
|
+
update?: pulumi.Input<boolean>;
|
|
233
233
|
/**
|
|
234
234
|
* App version.
|
|
235
235
|
*/
|
|
236
|
-
|
|
236
|
+
version?: pulumi.Input<string>;
|
|
237
237
|
/**
|
|
238
238
|
* Indicates whether the app is visible and navigable from Splunk Web.
|
|
239
239
|
* <br>true = App is visible and navigable.
|
|
240
240
|
* <br>false = App is not visible or navigable.
|
|
241
241
|
*/
|
|
242
|
-
|
|
242
|
+
visible?: pulumi.Input<boolean>;
|
|
243
243
|
}
|
package/appsLocal.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.AppsLocal = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
package/appsLocal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appsLocal.js","sourceRoot":"","sources":["../appsLocal.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"appsLocal.js","sourceRoot":"","sources":["../appsLocal.ts"],"names":[],"mappings":"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"}
|
package/authenticationUsers.d.ts
CHANGED
|
@@ -86,39 +86,39 @@ export interface AuthenticationUsersState {
|
|
|
86
86
|
/**
|
|
87
87
|
* User default app. Overrides the default app inherited from the user roles.
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
defaultApp?: pulumi.Input<string>;
|
|
90
90
|
/**
|
|
91
91
|
* User email address.
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
email?: pulumi.Input<string>;
|
|
94
94
|
/**
|
|
95
95
|
* Force user to change password indication
|
|
96
96
|
*/
|
|
97
|
-
|
|
97
|
+
forceChangePass?: pulumi.Input<boolean>;
|
|
98
98
|
/**
|
|
99
99
|
* Unique user login name.
|
|
100
100
|
*/
|
|
101
|
-
|
|
101
|
+
name?: pulumi.Input<string>;
|
|
102
102
|
/**
|
|
103
103
|
* User login password.
|
|
104
104
|
*/
|
|
105
|
-
|
|
105
|
+
password?: pulumi.Input<string>;
|
|
106
106
|
/**
|
|
107
107
|
* Full user name.
|
|
108
108
|
*/
|
|
109
|
-
|
|
109
|
+
realname?: pulumi.Input<string>;
|
|
110
110
|
/**
|
|
111
111
|
* Restart background search job that has not completed when Splunk restarts indication.
|
|
112
112
|
*/
|
|
113
|
-
|
|
113
|
+
restartBackgroundJobs?: pulumi.Input<boolean>;
|
|
114
114
|
/**
|
|
115
115
|
* Role to assign to this user. At least one existing role is required.
|
|
116
116
|
*/
|
|
117
|
-
|
|
117
|
+
roles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
118
118
|
/**
|
|
119
119
|
* User timezone.
|
|
120
120
|
*/
|
|
121
|
-
|
|
121
|
+
tz?: pulumi.Input<string>;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* The set of arguments for constructing a AuthenticationUsers resource.
|
|
@@ -127,37 +127,37 @@ export interface AuthenticationUsersArgs {
|
|
|
127
127
|
/**
|
|
128
128
|
* User default app. Overrides the default app inherited from the user roles.
|
|
129
129
|
*/
|
|
130
|
-
|
|
130
|
+
defaultApp?: pulumi.Input<string>;
|
|
131
131
|
/**
|
|
132
132
|
* User email address.
|
|
133
133
|
*/
|
|
134
|
-
|
|
134
|
+
email?: pulumi.Input<string>;
|
|
135
135
|
/**
|
|
136
136
|
* Force user to change password indication
|
|
137
137
|
*/
|
|
138
|
-
|
|
138
|
+
forceChangePass?: pulumi.Input<boolean>;
|
|
139
139
|
/**
|
|
140
140
|
* Unique user login name.
|
|
141
141
|
*/
|
|
142
|
-
|
|
142
|
+
name?: pulumi.Input<string>;
|
|
143
143
|
/**
|
|
144
144
|
* User login password.
|
|
145
145
|
*/
|
|
146
|
-
|
|
146
|
+
password?: pulumi.Input<string>;
|
|
147
147
|
/**
|
|
148
148
|
* Full user name.
|
|
149
149
|
*/
|
|
150
|
-
|
|
150
|
+
realname?: pulumi.Input<string>;
|
|
151
151
|
/**
|
|
152
152
|
* Restart background search job that has not completed when Splunk restarts indication.
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
restartBackgroundJobs?: pulumi.Input<boolean>;
|
|
155
155
|
/**
|
|
156
156
|
* Role to assign to this user. At least one existing role is required.
|
|
157
157
|
*/
|
|
158
|
-
|
|
158
|
+
roles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
160
|
* User timezone.
|
|
161
161
|
*/
|
|
162
|
-
|
|
162
|
+
tz?: pulumi.Input<string>;
|
|
163
163
|
}
|
package/authenticationUsers.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.AuthenticationUsers = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authenticationUsers.js","sourceRoot":"","sources":["../authenticationUsers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"authenticationUsers.js","sourceRoot":"","sources":["../authenticationUsers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAyE1D,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,MAAM,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,MAAM,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,MAAM,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/C;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,MAAM,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9C,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,MAAM,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7C;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;IAtGD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1E,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,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;;AA1BL,kDAwGC;AA1FG,gBAAgB;AACO,gCAAY,GAAG,sDAAsD,CAAC"}
|
package/authorizationRoles.d.ts
CHANGED
|
@@ -118,55 +118,55 @@ export interface AuthorizationRolesState {
|
|
|
118
118
|
/**
|
|
119
119
|
* List of capabilities assigned to role.
|
|
120
120
|
*/
|
|
121
|
-
|
|
121
|
+
capabilities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
122
122
|
/**
|
|
123
123
|
* Maximum number of concurrently running real-time searches that all members of this role can have.
|
|
124
124
|
*/
|
|
125
|
-
|
|
125
|
+
cumulativeRealtimeSearchJobsQuota?: pulumi.Input<number>;
|
|
126
126
|
/**
|
|
127
127
|
* Maximum number of concurrently running searches for all role members. Warning message logged when limit is reached.
|
|
128
128
|
*/
|
|
129
|
-
|
|
129
|
+
cumulativeSearchJobsQuota?: pulumi.Input<number>;
|
|
130
130
|
/**
|
|
131
131
|
* Specify the folder name of the default app to use for this role. A user-specific default app overrides this.
|
|
132
132
|
*/
|
|
133
|
-
|
|
133
|
+
defaultApp?: pulumi.Input<string>;
|
|
134
134
|
/**
|
|
135
135
|
* List of imported roles for this role. <br>Importing other roles imports all aspects of that role, such as capabilities and allowed indexes to search. In combining multiple roles, the effective value for each attribute is value with the broadest permissions.
|
|
136
136
|
*/
|
|
137
|
-
|
|
137
|
+
importedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
138
138
|
/**
|
|
139
139
|
* The name of the user role to create.
|
|
140
140
|
*/
|
|
141
|
-
|
|
141
|
+
name?: pulumi.Input<string>;
|
|
142
142
|
/**
|
|
143
143
|
* Specify the maximum number of concurrent real-time search jobs for this role. This count is independent from the normal search jobs limit.
|
|
144
144
|
*/
|
|
145
|
-
|
|
145
|
+
realtimeSearchJobsQuota?: pulumi.Input<number>;
|
|
146
146
|
/**
|
|
147
147
|
* Specifies the maximum disk space in MB that can be used by a user's search jobs. For example, a value of 100 limits this role to 100 MB total.
|
|
148
148
|
*/
|
|
149
|
-
|
|
149
|
+
searchDiskQuota?: pulumi.Input<number>;
|
|
150
150
|
/**
|
|
151
151
|
* Specify a search string that restricts the scope of searches run by this role. Search results for this role only show events that also match the search string you specify. In the case that a user has multiple roles with different search filters, they are combined with an OR.
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
searchFilter?: pulumi.Input<string>;
|
|
154
154
|
/**
|
|
155
155
|
* List of indexes that this role has permissions to search. These may be wildcarded, but the index name must begin with an underscore to match internal indexes.
|
|
156
156
|
*/
|
|
157
|
-
|
|
157
|
+
searchIndexesAlloweds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
158
158
|
/**
|
|
159
159
|
* List of indexes to search when no index is specified. These indexes can be wildcarded, with the exception that '*' does not match internal indexes. To match internal indexes, start with '_'. All internal indexes are represented by '_*'. A user with this role can search other indexes using "index= "
|
|
160
160
|
*/
|
|
161
|
-
|
|
161
|
+
searchIndexesDefaults?: pulumi.Input<pulumi.Input<string>[]>;
|
|
162
162
|
/**
|
|
163
163
|
* The maximum number of concurrent searches a user with this role is allowed to run. For users with multiple roles, the maximum quota value among all of the roles applies.
|
|
164
164
|
*/
|
|
165
|
-
|
|
165
|
+
searchJobsQuota?: pulumi.Input<number>;
|
|
166
166
|
/**
|
|
167
167
|
* Maximum time span of a search, in seconds. By default, searches are not limited to any specific time window. To override any search time windows from imported roles, set srchTimeWin to '0', as the 'admin' role does.
|
|
168
168
|
*/
|
|
169
|
-
|
|
169
|
+
searchTimeWin?: pulumi.Input<number>;
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
172
|
* The set of arguments for constructing a AuthorizationRoles resource.
|
|
@@ -175,53 +175,53 @@ export interface AuthorizationRolesArgs {
|
|
|
175
175
|
/**
|
|
176
176
|
* List of capabilities assigned to role.
|
|
177
177
|
*/
|
|
178
|
-
|
|
178
|
+
capabilities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
179
179
|
/**
|
|
180
180
|
* Maximum number of concurrently running real-time searches that all members of this role can have.
|
|
181
181
|
*/
|
|
182
|
-
|
|
182
|
+
cumulativeRealtimeSearchJobsQuota?: pulumi.Input<number>;
|
|
183
183
|
/**
|
|
184
184
|
* Maximum number of concurrently running searches for all role members. Warning message logged when limit is reached.
|
|
185
185
|
*/
|
|
186
|
-
|
|
186
|
+
cumulativeSearchJobsQuota?: pulumi.Input<number>;
|
|
187
187
|
/**
|
|
188
188
|
* Specify the folder name of the default app to use for this role. A user-specific default app overrides this.
|
|
189
189
|
*/
|
|
190
|
-
|
|
190
|
+
defaultApp?: pulumi.Input<string>;
|
|
191
191
|
/**
|
|
192
192
|
* List of imported roles for this role. <br>Importing other roles imports all aspects of that role, such as capabilities and allowed indexes to search. In combining multiple roles, the effective value for each attribute is value with the broadest permissions.
|
|
193
193
|
*/
|
|
194
|
-
|
|
194
|
+
importedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
195
195
|
/**
|
|
196
196
|
* The name of the user role to create.
|
|
197
197
|
*/
|
|
198
|
-
|
|
198
|
+
name?: pulumi.Input<string>;
|
|
199
199
|
/**
|
|
200
200
|
* Specify the maximum number of concurrent real-time search jobs for this role. This count is independent from the normal search jobs limit.
|
|
201
201
|
*/
|
|
202
|
-
|
|
202
|
+
realtimeSearchJobsQuota?: pulumi.Input<number>;
|
|
203
203
|
/**
|
|
204
204
|
* Specifies the maximum disk space in MB that can be used by a user's search jobs. For example, a value of 100 limits this role to 100 MB total.
|
|
205
205
|
*/
|
|
206
|
-
|
|
206
|
+
searchDiskQuota?: pulumi.Input<number>;
|
|
207
207
|
/**
|
|
208
208
|
* Specify a search string that restricts the scope of searches run by this role. Search results for this role only show events that also match the search string you specify. In the case that a user has multiple roles with different search filters, they are combined with an OR.
|
|
209
209
|
*/
|
|
210
|
-
|
|
210
|
+
searchFilter?: pulumi.Input<string>;
|
|
211
211
|
/**
|
|
212
212
|
* List of indexes that this role has permissions to search. These may be wildcarded, but the index name must begin with an underscore to match internal indexes.
|
|
213
213
|
*/
|
|
214
|
-
|
|
214
|
+
searchIndexesAlloweds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
215
215
|
/**
|
|
216
216
|
* List of indexes to search when no index is specified. These indexes can be wildcarded, with the exception that '*' does not match internal indexes. To match internal indexes, start with '_'. All internal indexes are represented by '_*'. A user with this role can search other indexes using "index= "
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
searchIndexesDefaults?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
220
|
* The maximum number of concurrent searches a user with this role is allowed to run. For users with multiple roles, the maximum quota value among all of the roles applies.
|
|
221
221
|
*/
|
|
222
|
-
|
|
222
|
+
searchJobsQuota?: pulumi.Input<number>;
|
|
223
223
|
/**
|
|
224
224
|
* Maximum time span of a search, in seconds. By default, searches are not limited to any specific time window. To override any search time windows from imported roles, set srchTimeWin to '0', as the 'admin' role does.
|
|
225
225
|
*/
|
|
226
|
-
|
|
226
|
+
searchTimeWin?: pulumi.Input<number>;
|
|
227
227
|
}
|
package/authorizationRoles.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.AuthorizationRoles = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authorizationRoles.js","sourceRoot":"","sources":["../authorizationRoles.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"authorizationRoles.js","sourceRoot":"","sources":["../authorizationRoles.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IAyFzD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,MAAM,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,mCAAmC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1G,MAAM,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,MAAM,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,MAAM,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,MAAM,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,MAAM,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,MAAM,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,MAAM,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,mCAAmC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iCAAiC,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,MAAM,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,MAAM,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9C,MAAM,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,MAAM,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,MAAM,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,MAAM,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,MAAM,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IA9HD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,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,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;;AA1BL,gDAgIC;AAlHG,gBAAgB;AACO,+BAAY,GAAG,oDAAoD,CAAC"}
|
package/config/index.js
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
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
|
-
function
|
|
5
|
-
|
|
6
|
-
}
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
7
|
+
}) : (function(o, m, k, k2) {
|
|
8
|
+
if (k2 === undefined) k2 = k;
|
|
9
|
+
o[k2] = m[k];
|
|
10
|
+
}));
|
|
11
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
12
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
13
|
+
};
|
|
7
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
15
|
// Export members:
|
|
9
|
-
|
|
16
|
+
__exportStar(require("./vars"), exports);
|
|
10
17
|
//# sourceMappingURL=index.js.map
|
package/config/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;AAEjF,kBAAkB;AAClB,yCAAuB"}
|
package/config/vars.d.ts
CHANGED
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
* Authentication tokens, also known as JSON Web Tokens (JWT), are a method for authenticating Splunk platform users into
|
|
3
3
|
* the Splunk platform
|
|
4
4
|
*/
|
|
5
|
-
export declare
|
|
5
|
+
export declare const authToken: string | undefined;
|
|
6
6
|
/**
|
|
7
7
|
* insecure skip verification flag
|
|
8
8
|
*/
|
|
9
|
-
export declare
|
|
9
|
+
export declare const insecureSkipVerify: boolean | undefined;
|
|
10
10
|
/**
|
|
11
11
|
* Splunk instance password
|
|
12
12
|
*/
|
|
13
|
-
export declare
|
|
13
|
+
export declare const password: string | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* Timeout when making calls to Splunk server. Defaults to 60 seconds
|
|
16
16
|
*/
|
|
17
|
-
export declare
|
|
17
|
+
export declare const timeout: number | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* Splunk instance URL
|
|
20
20
|
*/
|
|
21
|
-
export declare
|
|
21
|
+
export declare const url: string | undefined;
|
|
22
22
|
/**
|
|
23
23
|
* Splunk instance admin username
|
|
24
24
|
*/
|
|
25
|
-
export declare
|
|
25
|
+
export declare const username: string | undefined;
|