@pulumi/splunk 1.1.0 → 1.1.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/adminSamlGroups.js +7 -9
- package/adminSamlGroups.js.map +1 -1
- package/appsLocal.js +29 -31
- package/appsLocal.js.map +1 -1
- package/authenticationUsers.js +21 -23
- package/authenticationUsers.js.map +1 -1
- package/authorizationRoles.d.ts +6 -6
- package/authorizationRoles.js +29 -31
- package/authorizationRoles.js.map +1 -1
- package/config/index.js +5 -1
- package/config/index.js.map +1 -1
- package/configsConf.js +9 -11
- package/configsConf.js.map +1 -1
- package/dataUiViews.js +9 -11
- package/dataUiViews.js.map +1 -1
- package/genericAcl.d.ts +110 -0
- package/genericAcl.js +94 -0
- package/genericAcl.js.map +1 -0
- package/globalHttpEventCollector.js +17 -19
- package/globalHttpEventCollector.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +10 -1
- package/index.js.map +1 -1
- package/indexes.js +81 -83
- package/indexes.js.map +1 -1
- package/inputsHttpEventCollector.js +23 -25
- package/inputsHttpEventCollector.js.map +1 -1
- package/inputsMonitor.js +35 -37
- package/inputsMonitor.js.map +1 -1
- package/inputsScript.js +23 -25
- package/inputsScript.js.map +1 -1
- package/inputsTcpCooked.js +15 -17
- package/inputsTcpCooked.js.map +1 -1
- package/inputsTcpRaw.js +25 -27
- package/inputsTcpRaw.js.map +1 -1
- package/inputsTcpSplunkTcpToken.js +9 -11
- package/inputsTcpSplunkTcpToken.js.map +1 -1
- package/inputsTcpSsl.js +13 -15
- package/inputsTcpSsl.js.map +1 -1
- package/inputsUdp.js +27 -29
- package/inputsUdp.js.map +1 -1
- package/outputsTcpDefault.js +21 -23
- package/outputsTcpDefault.js.map +1 -1
- package/outputsTcpGroup.js +25 -27
- package/outputsTcpGroup.js.map +1 -1
- package/outputsTcpServer.js +25 -27
- package/outputsTcpServer.js.map +1 -1
- package/outputsTcpSyslog.js +19 -21
- package/outputsTcpSyslog.js.map +1 -1
- package/package.json +2 -2
- package/package.json.bak +2 -1
- package/package.json.dev +3 -2
- package/provider.js +9 -11
- package/provider.js.map +1 -1
- package/savedSearches.d.ts +12 -0
- package/savedSearches.js +279 -279
- package/savedSearches.js.map +1 -1
- package/shIndexesManager.js +13 -15
- package/shIndexesManager.js.map +1 -1
- package/types/input.d.ts +13 -0
- package/types/output.d.ts +13 -0
- package/utilities.js +6 -1
- package/utilities.js.map +1 -1
package/savedSearches.js
CHANGED
|
@@ -39,295 +39,295 @@ const utilities = require("./utilities");
|
|
|
39
39
|
*/
|
|
40
40
|
class SavedSearches extends pulumi.CustomResource {
|
|
41
41
|
constructor(name, argsOrState, opts) {
|
|
42
|
-
let
|
|
42
|
+
let resourceInputs = {};
|
|
43
43
|
opts = opts || {};
|
|
44
44
|
if (opts.id) {
|
|
45
45
|
const state = argsOrState;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
46
|
+
resourceInputs["acl"] = state ? state.acl : undefined;
|
|
47
|
+
resourceInputs["actionEmail"] = state ? state.actionEmail : undefined;
|
|
48
|
+
resourceInputs["actionEmailAuthPassword"] = state ? state.actionEmailAuthPassword : undefined;
|
|
49
|
+
resourceInputs["actionEmailAuthUsername"] = state ? state.actionEmailAuthUsername : undefined;
|
|
50
|
+
resourceInputs["actionEmailBcc"] = state ? state.actionEmailBcc : undefined;
|
|
51
|
+
resourceInputs["actionEmailCc"] = state ? state.actionEmailCc : undefined;
|
|
52
|
+
resourceInputs["actionEmailCommand"] = state ? state.actionEmailCommand : undefined;
|
|
53
|
+
resourceInputs["actionEmailFormat"] = state ? state.actionEmailFormat : undefined;
|
|
54
|
+
resourceInputs["actionEmailFrom"] = state ? state.actionEmailFrom : undefined;
|
|
55
|
+
resourceInputs["actionEmailHostname"] = state ? state.actionEmailHostname : undefined;
|
|
56
|
+
resourceInputs["actionEmailIncludeResultsLink"] = state ? state.actionEmailIncludeResultsLink : undefined;
|
|
57
|
+
resourceInputs["actionEmailIncludeSearch"] = state ? state.actionEmailIncludeSearch : undefined;
|
|
58
|
+
resourceInputs["actionEmailIncludeTrigger"] = state ? state.actionEmailIncludeTrigger : undefined;
|
|
59
|
+
resourceInputs["actionEmailIncludeTriggerTime"] = state ? state.actionEmailIncludeTriggerTime : undefined;
|
|
60
|
+
resourceInputs["actionEmailIncludeViewLink"] = state ? state.actionEmailIncludeViewLink : undefined;
|
|
61
|
+
resourceInputs["actionEmailInline"] = state ? state.actionEmailInline : undefined;
|
|
62
|
+
resourceInputs["actionEmailMailserver"] = state ? state.actionEmailMailserver : undefined;
|
|
63
|
+
resourceInputs["actionEmailMaxResults"] = state ? state.actionEmailMaxResults : undefined;
|
|
64
|
+
resourceInputs["actionEmailMaxTime"] = state ? state.actionEmailMaxTime : undefined;
|
|
65
|
+
resourceInputs["actionEmailMessageAlert"] = state ? state.actionEmailMessageAlert : undefined;
|
|
66
|
+
resourceInputs["actionEmailMessageReport"] = state ? state.actionEmailMessageReport : undefined;
|
|
67
|
+
resourceInputs["actionEmailPdfview"] = state ? state.actionEmailPdfview : undefined;
|
|
68
|
+
resourceInputs["actionEmailPreprocessResults"] = state ? state.actionEmailPreprocessResults : undefined;
|
|
69
|
+
resourceInputs["actionEmailReportCidFontList"] = state ? state.actionEmailReportCidFontList : undefined;
|
|
70
|
+
resourceInputs["actionEmailReportIncludeSplunkLogo"] = state ? state.actionEmailReportIncludeSplunkLogo : undefined;
|
|
71
|
+
resourceInputs["actionEmailReportPaperOrientation"] = state ? state.actionEmailReportPaperOrientation : undefined;
|
|
72
|
+
resourceInputs["actionEmailReportPaperSize"] = state ? state.actionEmailReportPaperSize : undefined;
|
|
73
|
+
resourceInputs["actionEmailReportServerEnabled"] = state ? state.actionEmailReportServerEnabled : undefined;
|
|
74
|
+
resourceInputs["actionEmailReportServerUrl"] = state ? state.actionEmailReportServerUrl : undefined;
|
|
75
|
+
resourceInputs["actionEmailSendCsv"] = state ? state.actionEmailSendCsv : undefined;
|
|
76
|
+
resourceInputs["actionEmailSendPdf"] = state ? state.actionEmailSendPdf : undefined;
|
|
77
|
+
resourceInputs["actionEmailSendResults"] = state ? state.actionEmailSendResults : undefined;
|
|
78
|
+
resourceInputs["actionEmailSubject"] = state ? state.actionEmailSubject : undefined;
|
|
79
|
+
resourceInputs["actionEmailTo"] = state ? state.actionEmailTo : undefined;
|
|
80
|
+
resourceInputs["actionEmailTrackAlert"] = state ? state.actionEmailTrackAlert : undefined;
|
|
81
|
+
resourceInputs["actionEmailTtl"] = state ? state.actionEmailTtl : undefined;
|
|
82
|
+
resourceInputs["actionEmailUseSsl"] = state ? state.actionEmailUseSsl : undefined;
|
|
83
|
+
resourceInputs["actionEmailUseTls"] = state ? state.actionEmailUseTls : undefined;
|
|
84
|
+
resourceInputs["actionEmailWidthSortColumns"] = state ? state.actionEmailWidthSortColumns : undefined;
|
|
85
|
+
resourceInputs["actionPopulateLookup"] = state ? state.actionPopulateLookup : undefined;
|
|
86
|
+
resourceInputs["actionPopulateLookupCommand"] = state ? state.actionPopulateLookupCommand : undefined;
|
|
87
|
+
resourceInputs["actionPopulateLookupDest"] = state ? state.actionPopulateLookupDest : undefined;
|
|
88
|
+
resourceInputs["actionPopulateLookupHostname"] = state ? state.actionPopulateLookupHostname : undefined;
|
|
89
|
+
resourceInputs["actionPopulateLookupMaxResults"] = state ? state.actionPopulateLookupMaxResults : undefined;
|
|
90
|
+
resourceInputs["actionPopulateLookupMaxTime"] = state ? state.actionPopulateLookupMaxTime : undefined;
|
|
91
|
+
resourceInputs["actionPopulateLookupTrackAlert"] = state ? state.actionPopulateLookupTrackAlert : undefined;
|
|
92
|
+
resourceInputs["actionPopulateLookupTtl"] = state ? state.actionPopulateLookupTtl : undefined;
|
|
93
|
+
resourceInputs["actionRss"] = state ? state.actionRss : undefined;
|
|
94
|
+
resourceInputs["actionRssCommand"] = state ? state.actionRssCommand : undefined;
|
|
95
|
+
resourceInputs["actionRssHostname"] = state ? state.actionRssHostname : undefined;
|
|
96
|
+
resourceInputs["actionRssMaxResults"] = state ? state.actionRssMaxResults : undefined;
|
|
97
|
+
resourceInputs["actionRssMaxTime"] = state ? state.actionRssMaxTime : undefined;
|
|
98
|
+
resourceInputs["actionRssTrackAlert"] = state ? state.actionRssTrackAlert : undefined;
|
|
99
|
+
resourceInputs["actionRssTtl"] = state ? state.actionRssTtl : undefined;
|
|
100
|
+
resourceInputs["actionScript"] = state ? state.actionScript : undefined;
|
|
101
|
+
resourceInputs["actionScriptCommand"] = state ? state.actionScriptCommand : undefined;
|
|
102
|
+
resourceInputs["actionScriptFilename"] = state ? state.actionScriptFilename : undefined;
|
|
103
|
+
resourceInputs["actionScriptHostname"] = state ? state.actionScriptHostname : undefined;
|
|
104
|
+
resourceInputs["actionScriptMaxResults"] = state ? state.actionScriptMaxResults : undefined;
|
|
105
|
+
resourceInputs["actionScriptMaxTime"] = state ? state.actionScriptMaxTime : undefined;
|
|
106
|
+
resourceInputs["actionScriptTrackAlert"] = state ? state.actionScriptTrackAlert : undefined;
|
|
107
|
+
resourceInputs["actionScriptTtl"] = state ? state.actionScriptTtl : undefined;
|
|
108
|
+
resourceInputs["actionSlackParamAttachment"] = state ? state.actionSlackParamAttachment : undefined;
|
|
109
|
+
resourceInputs["actionSlackParamChannel"] = state ? state.actionSlackParamChannel : undefined;
|
|
110
|
+
resourceInputs["actionSlackParamFields"] = state ? state.actionSlackParamFields : undefined;
|
|
111
|
+
resourceInputs["actionSlackParamMessage"] = state ? state.actionSlackParamMessage : undefined;
|
|
112
|
+
resourceInputs["actionSlackParamWebhookUrlOverride"] = state ? state.actionSlackParamWebhookUrlOverride : undefined;
|
|
113
|
+
resourceInputs["actionSummaryIndex"] = state ? state.actionSummaryIndex : undefined;
|
|
114
|
+
resourceInputs["actionSummaryIndexCommand"] = state ? state.actionSummaryIndexCommand : undefined;
|
|
115
|
+
resourceInputs["actionSummaryIndexHostname"] = state ? state.actionSummaryIndexHostname : undefined;
|
|
116
|
+
resourceInputs["actionSummaryIndexInline"] = state ? state.actionSummaryIndexInline : undefined;
|
|
117
|
+
resourceInputs["actionSummaryIndexMaxResults"] = state ? state.actionSummaryIndexMaxResults : undefined;
|
|
118
|
+
resourceInputs["actionSummaryIndexMaxTime"] = state ? state.actionSummaryIndexMaxTime : undefined;
|
|
119
|
+
resourceInputs["actionSummaryIndexName"] = state ? state.actionSummaryIndexName : undefined;
|
|
120
|
+
resourceInputs["actionSummaryIndexTrackAlert"] = state ? state.actionSummaryIndexTrackAlert : undefined;
|
|
121
|
+
resourceInputs["actionSummaryIndexTtl"] = state ? state.actionSummaryIndexTtl : undefined;
|
|
122
|
+
resourceInputs["actionWebhookParamUrl"] = state ? state.actionWebhookParamUrl : undefined;
|
|
123
|
+
resourceInputs["actions"] = state ? state.actions : undefined;
|
|
124
|
+
resourceInputs["alertComparator"] = state ? state.alertComparator : undefined;
|
|
125
|
+
resourceInputs["alertCondition"] = state ? state.alertCondition : undefined;
|
|
126
|
+
resourceInputs["alertDigestMode"] = state ? state.alertDigestMode : undefined;
|
|
127
|
+
resourceInputs["alertExpires"] = state ? state.alertExpires : undefined;
|
|
128
|
+
resourceInputs["alertSeverity"] = state ? state.alertSeverity : undefined;
|
|
129
|
+
resourceInputs["alertSuppress"] = state ? state.alertSuppress : undefined;
|
|
130
|
+
resourceInputs["alertSuppressFields"] = state ? state.alertSuppressFields : undefined;
|
|
131
|
+
resourceInputs["alertSuppressPeriod"] = state ? state.alertSuppressPeriod : undefined;
|
|
132
|
+
resourceInputs["alertThreshold"] = state ? state.alertThreshold : undefined;
|
|
133
|
+
resourceInputs["alertTrack"] = state ? state.alertTrack : undefined;
|
|
134
|
+
resourceInputs["alertType"] = state ? state.alertType : undefined;
|
|
135
|
+
resourceInputs["allowSkew"] = state ? state.allowSkew : undefined;
|
|
136
|
+
resourceInputs["autoSummarize"] = state ? state.autoSummarize : undefined;
|
|
137
|
+
resourceInputs["autoSummarizeCommand"] = state ? state.autoSummarizeCommand : undefined;
|
|
138
|
+
resourceInputs["autoSummarizeCronSchedule"] = state ? state.autoSummarizeCronSchedule : undefined;
|
|
139
|
+
resourceInputs["autoSummarizeDispatchEarliestTime"] = state ? state.autoSummarizeDispatchEarliestTime : undefined;
|
|
140
|
+
resourceInputs["autoSummarizeDispatchLatestTime"] = state ? state.autoSummarizeDispatchLatestTime : undefined;
|
|
141
|
+
resourceInputs["autoSummarizeDispatchTimeFormat"] = state ? state.autoSummarizeDispatchTimeFormat : undefined;
|
|
142
|
+
resourceInputs["autoSummarizeDispatchTtl"] = state ? state.autoSummarizeDispatchTtl : undefined;
|
|
143
|
+
resourceInputs["autoSummarizeMaxDisabledBuckets"] = state ? state.autoSummarizeMaxDisabledBuckets : undefined;
|
|
144
|
+
resourceInputs["autoSummarizeMaxSummaryRatio"] = state ? state.autoSummarizeMaxSummaryRatio : undefined;
|
|
145
|
+
resourceInputs["autoSummarizeMaxSummarySize"] = state ? state.autoSummarizeMaxSummarySize : undefined;
|
|
146
|
+
resourceInputs["autoSummarizeMaxTime"] = state ? state.autoSummarizeMaxTime : undefined;
|
|
147
|
+
resourceInputs["autoSummarizeSuspendPeriod"] = state ? state.autoSummarizeSuspendPeriod : undefined;
|
|
148
|
+
resourceInputs["autoSummarizeTimespan"] = state ? state.autoSummarizeTimespan : undefined;
|
|
149
|
+
resourceInputs["cronSchedule"] = state ? state.cronSchedule : undefined;
|
|
150
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
151
|
+
resourceInputs["disabled"] = state ? state.disabled : undefined;
|
|
152
|
+
resourceInputs["dispatchBuckets"] = state ? state.dispatchBuckets : undefined;
|
|
153
|
+
resourceInputs["dispatchEarliestTime"] = state ? state.dispatchEarliestTime : undefined;
|
|
154
|
+
resourceInputs["dispatchIndexEarliest"] = state ? state.dispatchIndexEarliest : undefined;
|
|
155
|
+
resourceInputs["dispatchIndexLatest"] = state ? state.dispatchIndexLatest : undefined;
|
|
156
|
+
resourceInputs["dispatchIndexedRealtime"] = state ? state.dispatchIndexedRealtime : undefined;
|
|
157
|
+
resourceInputs["dispatchIndexedRealtimeMinspan"] = state ? state.dispatchIndexedRealtimeMinspan : undefined;
|
|
158
|
+
resourceInputs["dispatchIndexedRealtimeOffset"] = state ? state.dispatchIndexedRealtimeOffset : undefined;
|
|
159
|
+
resourceInputs["dispatchLatestTime"] = state ? state.dispatchLatestTime : undefined;
|
|
160
|
+
resourceInputs["dispatchLookups"] = state ? state.dispatchLookups : undefined;
|
|
161
|
+
resourceInputs["dispatchMaxCount"] = state ? state.dispatchMaxCount : undefined;
|
|
162
|
+
resourceInputs["dispatchMaxTime"] = state ? state.dispatchMaxTime : undefined;
|
|
163
|
+
resourceInputs["dispatchReduceFreq"] = state ? state.dispatchReduceFreq : undefined;
|
|
164
|
+
resourceInputs["dispatchRtBackfill"] = state ? state.dispatchRtBackfill : undefined;
|
|
165
|
+
resourceInputs["dispatchRtMaximumSpan"] = state ? state.dispatchRtMaximumSpan : undefined;
|
|
166
|
+
resourceInputs["dispatchSpawnProcess"] = state ? state.dispatchSpawnProcess : undefined;
|
|
167
|
+
resourceInputs["dispatchTimeFormat"] = state ? state.dispatchTimeFormat : undefined;
|
|
168
|
+
resourceInputs["dispatchTtl"] = state ? state.dispatchTtl : undefined;
|
|
169
|
+
resourceInputs["displayView"] = state ? state.displayView : undefined;
|
|
170
|
+
resourceInputs["isScheduled"] = state ? state.isScheduled : undefined;
|
|
171
|
+
resourceInputs["isVisible"] = state ? state.isVisible : undefined;
|
|
172
|
+
resourceInputs["maxConcurrent"] = state ? state.maxConcurrent : undefined;
|
|
173
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
174
|
+
resourceInputs["realtimeSchedule"] = state ? state.realtimeSchedule : undefined;
|
|
175
|
+
resourceInputs["requestUiDispatchApp"] = state ? state.requestUiDispatchApp : undefined;
|
|
176
|
+
resourceInputs["requestUiDispatchView"] = state ? state.requestUiDispatchView : undefined;
|
|
177
|
+
resourceInputs["restartOnSearchpeerAdd"] = state ? state.restartOnSearchpeerAdd : undefined;
|
|
178
|
+
resourceInputs["runOnStartup"] = state ? state.runOnStartup : undefined;
|
|
179
|
+
resourceInputs["schedulePriority"] = state ? state.schedulePriority : undefined;
|
|
180
|
+
resourceInputs["scheduleWindow"] = state ? state.scheduleWindow : undefined;
|
|
181
|
+
resourceInputs["search"] = state ? state.search : undefined;
|
|
182
|
+
resourceInputs["vsid"] = state ? state.vsid : undefined;
|
|
183
|
+
resourceInputs["workloadPool"] = state ? state.workloadPool : undefined;
|
|
183
184
|
}
|
|
184
185
|
else {
|
|
185
186
|
const args = argsOrState;
|
|
186
187
|
if ((!args || args.search === undefined) && !opts.urn) {
|
|
187
188
|
throw new Error("Missing required property 'search'");
|
|
188
189
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
190
|
+
resourceInputs["acl"] = args ? args.acl : undefined;
|
|
191
|
+
resourceInputs["actionEmailAuthPassword"] = args ? args.actionEmailAuthPassword : undefined;
|
|
192
|
+
resourceInputs["actionEmailAuthUsername"] = args ? args.actionEmailAuthUsername : undefined;
|
|
193
|
+
resourceInputs["actionEmailBcc"] = args ? args.actionEmailBcc : undefined;
|
|
194
|
+
resourceInputs["actionEmailCc"] = args ? args.actionEmailCc : undefined;
|
|
195
|
+
resourceInputs["actionEmailCommand"] = args ? args.actionEmailCommand : undefined;
|
|
196
|
+
resourceInputs["actionEmailFormat"] = args ? args.actionEmailFormat : undefined;
|
|
197
|
+
resourceInputs["actionEmailFrom"] = args ? args.actionEmailFrom : undefined;
|
|
198
|
+
resourceInputs["actionEmailHostname"] = args ? args.actionEmailHostname : undefined;
|
|
199
|
+
resourceInputs["actionEmailIncludeResultsLink"] = args ? args.actionEmailIncludeResultsLink : undefined;
|
|
200
|
+
resourceInputs["actionEmailIncludeSearch"] = args ? args.actionEmailIncludeSearch : undefined;
|
|
201
|
+
resourceInputs["actionEmailIncludeTrigger"] = args ? args.actionEmailIncludeTrigger : undefined;
|
|
202
|
+
resourceInputs["actionEmailIncludeTriggerTime"] = args ? args.actionEmailIncludeTriggerTime : undefined;
|
|
203
|
+
resourceInputs["actionEmailIncludeViewLink"] = args ? args.actionEmailIncludeViewLink : undefined;
|
|
204
|
+
resourceInputs["actionEmailInline"] = args ? args.actionEmailInline : undefined;
|
|
205
|
+
resourceInputs["actionEmailMailserver"] = args ? args.actionEmailMailserver : undefined;
|
|
206
|
+
resourceInputs["actionEmailMaxResults"] = args ? args.actionEmailMaxResults : undefined;
|
|
207
|
+
resourceInputs["actionEmailMaxTime"] = args ? args.actionEmailMaxTime : undefined;
|
|
208
|
+
resourceInputs["actionEmailMessageAlert"] = args ? args.actionEmailMessageAlert : undefined;
|
|
209
|
+
resourceInputs["actionEmailMessageReport"] = args ? args.actionEmailMessageReport : undefined;
|
|
210
|
+
resourceInputs["actionEmailPdfview"] = args ? args.actionEmailPdfview : undefined;
|
|
211
|
+
resourceInputs["actionEmailPreprocessResults"] = args ? args.actionEmailPreprocessResults : undefined;
|
|
212
|
+
resourceInputs["actionEmailReportCidFontList"] = args ? args.actionEmailReportCidFontList : undefined;
|
|
213
|
+
resourceInputs["actionEmailReportIncludeSplunkLogo"] = args ? args.actionEmailReportIncludeSplunkLogo : undefined;
|
|
214
|
+
resourceInputs["actionEmailReportPaperOrientation"] = args ? args.actionEmailReportPaperOrientation : undefined;
|
|
215
|
+
resourceInputs["actionEmailReportPaperSize"] = args ? args.actionEmailReportPaperSize : undefined;
|
|
216
|
+
resourceInputs["actionEmailReportServerEnabled"] = args ? args.actionEmailReportServerEnabled : undefined;
|
|
217
|
+
resourceInputs["actionEmailReportServerUrl"] = args ? args.actionEmailReportServerUrl : undefined;
|
|
218
|
+
resourceInputs["actionEmailSendCsv"] = args ? args.actionEmailSendCsv : undefined;
|
|
219
|
+
resourceInputs["actionEmailSendPdf"] = args ? args.actionEmailSendPdf : undefined;
|
|
220
|
+
resourceInputs["actionEmailSendResults"] = args ? args.actionEmailSendResults : undefined;
|
|
221
|
+
resourceInputs["actionEmailSubject"] = args ? args.actionEmailSubject : undefined;
|
|
222
|
+
resourceInputs["actionEmailTo"] = args ? args.actionEmailTo : undefined;
|
|
223
|
+
resourceInputs["actionEmailTrackAlert"] = args ? args.actionEmailTrackAlert : undefined;
|
|
224
|
+
resourceInputs["actionEmailTtl"] = args ? args.actionEmailTtl : undefined;
|
|
225
|
+
resourceInputs["actionEmailUseSsl"] = args ? args.actionEmailUseSsl : undefined;
|
|
226
|
+
resourceInputs["actionEmailUseTls"] = args ? args.actionEmailUseTls : undefined;
|
|
227
|
+
resourceInputs["actionEmailWidthSortColumns"] = args ? args.actionEmailWidthSortColumns : undefined;
|
|
228
|
+
resourceInputs["actionPopulateLookupCommand"] = args ? args.actionPopulateLookupCommand : undefined;
|
|
229
|
+
resourceInputs["actionPopulateLookupDest"] = args ? args.actionPopulateLookupDest : undefined;
|
|
230
|
+
resourceInputs["actionPopulateLookupHostname"] = args ? args.actionPopulateLookupHostname : undefined;
|
|
231
|
+
resourceInputs["actionPopulateLookupMaxResults"] = args ? args.actionPopulateLookupMaxResults : undefined;
|
|
232
|
+
resourceInputs["actionPopulateLookupMaxTime"] = args ? args.actionPopulateLookupMaxTime : undefined;
|
|
233
|
+
resourceInputs["actionPopulateLookupTrackAlert"] = args ? args.actionPopulateLookupTrackAlert : undefined;
|
|
234
|
+
resourceInputs["actionPopulateLookupTtl"] = args ? args.actionPopulateLookupTtl : undefined;
|
|
235
|
+
resourceInputs["actionRssCommand"] = args ? args.actionRssCommand : undefined;
|
|
236
|
+
resourceInputs["actionRssHostname"] = args ? args.actionRssHostname : undefined;
|
|
237
|
+
resourceInputs["actionRssMaxResults"] = args ? args.actionRssMaxResults : undefined;
|
|
238
|
+
resourceInputs["actionRssMaxTime"] = args ? args.actionRssMaxTime : undefined;
|
|
239
|
+
resourceInputs["actionRssTrackAlert"] = args ? args.actionRssTrackAlert : undefined;
|
|
240
|
+
resourceInputs["actionRssTtl"] = args ? args.actionRssTtl : undefined;
|
|
241
|
+
resourceInputs["actionScriptCommand"] = args ? args.actionScriptCommand : undefined;
|
|
242
|
+
resourceInputs["actionScriptFilename"] = args ? args.actionScriptFilename : undefined;
|
|
243
|
+
resourceInputs["actionScriptHostname"] = args ? args.actionScriptHostname : undefined;
|
|
244
|
+
resourceInputs["actionScriptMaxResults"] = args ? args.actionScriptMaxResults : undefined;
|
|
245
|
+
resourceInputs["actionScriptMaxTime"] = args ? args.actionScriptMaxTime : undefined;
|
|
246
|
+
resourceInputs["actionScriptTrackAlert"] = args ? args.actionScriptTrackAlert : undefined;
|
|
247
|
+
resourceInputs["actionScriptTtl"] = args ? args.actionScriptTtl : undefined;
|
|
248
|
+
resourceInputs["actionSlackParamAttachment"] = args ? args.actionSlackParamAttachment : undefined;
|
|
249
|
+
resourceInputs["actionSlackParamChannel"] = args ? args.actionSlackParamChannel : undefined;
|
|
250
|
+
resourceInputs["actionSlackParamFields"] = args ? args.actionSlackParamFields : undefined;
|
|
251
|
+
resourceInputs["actionSlackParamMessage"] = args ? args.actionSlackParamMessage : undefined;
|
|
252
|
+
resourceInputs["actionSlackParamWebhookUrlOverride"] = args ? args.actionSlackParamWebhookUrlOverride : undefined;
|
|
253
|
+
resourceInputs["actionSummaryIndexCommand"] = args ? args.actionSummaryIndexCommand : undefined;
|
|
254
|
+
resourceInputs["actionSummaryIndexHostname"] = args ? args.actionSummaryIndexHostname : undefined;
|
|
255
|
+
resourceInputs["actionSummaryIndexInline"] = args ? args.actionSummaryIndexInline : undefined;
|
|
256
|
+
resourceInputs["actionSummaryIndexMaxResults"] = args ? args.actionSummaryIndexMaxResults : undefined;
|
|
257
|
+
resourceInputs["actionSummaryIndexMaxTime"] = args ? args.actionSummaryIndexMaxTime : undefined;
|
|
258
|
+
resourceInputs["actionSummaryIndexName"] = args ? args.actionSummaryIndexName : undefined;
|
|
259
|
+
resourceInputs["actionSummaryIndexTrackAlert"] = args ? args.actionSummaryIndexTrackAlert : undefined;
|
|
260
|
+
resourceInputs["actionSummaryIndexTtl"] = args ? args.actionSummaryIndexTtl : undefined;
|
|
261
|
+
resourceInputs["actionWebhookParamUrl"] = args ? args.actionWebhookParamUrl : undefined;
|
|
262
|
+
resourceInputs["actions"] = args ? args.actions : undefined;
|
|
263
|
+
resourceInputs["alertComparator"] = args ? args.alertComparator : undefined;
|
|
264
|
+
resourceInputs["alertCondition"] = args ? args.alertCondition : undefined;
|
|
265
|
+
resourceInputs["alertDigestMode"] = args ? args.alertDigestMode : undefined;
|
|
266
|
+
resourceInputs["alertExpires"] = args ? args.alertExpires : undefined;
|
|
267
|
+
resourceInputs["alertSeverity"] = args ? args.alertSeverity : undefined;
|
|
268
|
+
resourceInputs["alertSuppress"] = args ? args.alertSuppress : undefined;
|
|
269
|
+
resourceInputs["alertSuppressFields"] = args ? args.alertSuppressFields : undefined;
|
|
270
|
+
resourceInputs["alertSuppressPeriod"] = args ? args.alertSuppressPeriod : undefined;
|
|
271
|
+
resourceInputs["alertThreshold"] = args ? args.alertThreshold : undefined;
|
|
272
|
+
resourceInputs["alertTrack"] = args ? args.alertTrack : undefined;
|
|
273
|
+
resourceInputs["alertType"] = args ? args.alertType : undefined;
|
|
274
|
+
resourceInputs["allowSkew"] = args ? args.allowSkew : undefined;
|
|
275
|
+
resourceInputs["autoSummarize"] = args ? args.autoSummarize : undefined;
|
|
276
|
+
resourceInputs["autoSummarizeCommand"] = args ? args.autoSummarizeCommand : undefined;
|
|
277
|
+
resourceInputs["autoSummarizeCronSchedule"] = args ? args.autoSummarizeCronSchedule : undefined;
|
|
278
|
+
resourceInputs["autoSummarizeDispatchEarliestTime"] = args ? args.autoSummarizeDispatchEarliestTime : undefined;
|
|
279
|
+
resourceInputs["autoSummarizeDispatchLatestTime"] = args ? args.autoSummarizeDispatchLatestTime : undefined;
|
|
280
|
+
resourceInputs["autoSummarizeDispatchTimeFormat"] = args ? args.autoSummarizeDispatchTimeFormat : undefined;
|
|
281
|
+
resourceInputs["autoSummarizeDispatchTtl"] = args ? args.autoSummarizeDispatchTtl : undefined;
|
|
282
|
+
resourceInputs["autoSummarizeMaxDisabledBuckets"] = args ? args.autoSummarizeMaxDisabledBuckets : undefined;
|
|
283
|
+
resourceInputs["autoSummarizeMaxSummaryRatio"] = args ? args.autoSummarizeMaxSummaryRatio : undefined;
|
|
284
|
+
resourceInputs["autoSummarizeMaxSummarySize"] = args ? args.autoSummarizeMaxSummarySize : undefined;
|
|
285
|
+
resourceInputs["autoSummarizeMaxTime"] = args ? args.autoSummarizeMaxTime : undefined;
|
|
286
|
+
resourceInputs["autoSummarizeSuspendPeriod"] = args ? args.autoSummarizeSuspendPeriod : undefined;
|
|
287
|
+
resourceInputs["autoSummarizeTimespan"] = args ? args.autoSummarizeTimespan : undefined;
|
|
288
|
+
resourceInputs["cronSchedule"] = args ? args.cronSchedule : undefined;
|
|
289
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
290
|
+
resourceInputs["disabled"] = args ? args.disabled : undefined;
|
|
291
|
+
resourceInputs["dispatchBuckets"] = args ? args.dispatchBuckets : undefined;
|
|
292
|
+
resourceInputs["dispatchEarliestTime"] = args ? args.dispatchEarliestTime : undefined;
|
|
293
|
+
resourceInputs["dispatchIndexEarliest"] = args ? args.dispatchIndexEarliest : undefined;
|
|
294
|
+
resourceInputs["dispatchIndexLatest"] = args ? args.dispatchIndexLatest : undefined;
|
|
295
|
+
resourceInputs["dispatchIndexedRealtime"] = args ? args.dispatchIndexedRealtime : undefined;
|
|
296
|
+
resourceInputs["dispatchIndexedRealtimeMinspan"] = args ? args.dispatchIndexedRealtimeMinspan : undefined;
|
|
297
|
+
resourceInputs["dispatchIndexedRealtimeOffset"] = args ? args.dispatchIndexedRealtimeOffset : undefined;
|
|
298
|
+
resourceInputs["dispatchLatestTime"] = args ? args.dispatchLatestTime : undefined;
|
|
299
|
+
resourceInputs["dispatchLookups"] = args ? args.dispatchLookups : undefined;
|
|
300
|
+
resourceInputs["dispatchMaxCount"] = args ? args.dispatchMaxCount : undefined;
|
|
301
|
+
resourceInputs["dispatchMaxTime"] = args ? args.dispatchMaxTime : undefined;
|
|
302
|
+
resourceInputs["dispatchReduceFreq"] = args ? args.dispatchReduceFreq : undefined;
|
|
303
|
+
resourceInputs["dispatchRtBackfill"] = args ? args.dispatchRtBackfill : undefined;
|
|
304
|
+
resourceInputs["dispatchRtMaximumSpan"] = args ? args.dispatchRtMaximumSpan : undefined;
|
|
305
|
+
resourceInputs["dispatchSpawnProcess"] = args ? args.dispatchSpawnProcess : undefined;
|
|
306
|
+
resourceInputs["dispatchTimeFormat"] = args ? args.dispatchTimeFormat : undefined;
|
|
307
|
+
resourceInputs["dispatchTtl"] = args ? args.dispatchTtl : undefined;
|
|
308
|
+
resourceInputs["displayView"] = args ? args.displayView : undefined;
|
|
309
|
+
resourceInputs["isScheduled"] = args ? args.isScheduled : undefined;
|
|
310
|
+
resourceInputs["isVisible"] = args ? args.isVisible : undefined;
|
|
311
|
+
resourceInputs["maxConcurrent"] = args ? args.maxConcurrent : undefined;
|
|
312
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
313
|
+
resourceInputs["realtimeSchedule"] = args ? args.realtimeSchedule : undefined;
|
|
314
|
+
resourceInputs["requestUiDispatchApp"] = args ? args.requestUiDispatchApp : undefined;
|
|
315
|
+
resourceInputs["requestUiDispatchView"] = args ? args.requestUiDispatchView : undefined;
|
|
316
|
+
resourceInputs["restartOnSearchpeerAdd"] = args ? args.restartOnSearchpeerAdd : undefined;
|
|
317
|
+
resourceInputs["runOnStartup"] = args ? args.runOnStartup : undefined;
|
|
318
|
+
resourceInputs["schedulePriority"] = args ? args.schedulePriority : undefined;
|
|
319
|
+
resourceInputs["scheduleWindow"] = args ? args.scheduleWindow : undefined;
|
|
320
|
+
resourceInputs["search"] = args ? args.search : undefined;
|
|
321
|
+
resourceInputs["vsid"] = args ? args.vsid : undefined;
|
|
322
|
+
resourceInputs["workloadPool"] = args ? args.workloadPool : undefined;
|
|
323
|
+
resourceInputs["actionEmail"] = undefined /*out*/;
|
|
324
|
+
resourceInputs["actionPopulateLookup"] = undefined /*out*/;
|
|
325
|
+
resourceInputs["actionRss"] = undefined /*out*/;
|
|
326
|
+
resourceInputs["actionScript"] = undefined /*out*/;
|
|
327
|
+
resourceInputs["actionSummaryIndex"] = undefined /*out*/;
|
|
326
328
|
}
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
}
|
|
330
|
-
super(SavedSearches.__pulumiType, name, inputs, opts);
|
|
329
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
330
|
+
super(SavedSearches.__pulumiType, name, resourceInputs, opts);
|
|
331
331
|
}
|
|
332
332
|
/**
|
|
333
333
|
* Get an existing SavedSearches resource's state with the given name, ID, and optional extra
|