@pulumi/splunk 1.0.0 → 1.1.1
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 +7 -6
- package/adminSamlGroups.js.map +1 -1
- package/appsLocal.d.ts +26 -26
- package/appsLocal.js +29 -28
- package/appsLocal.js.map +1 -1
- package/authenticationUsers.d.ts +18 -18
- package/authenticationUsers.js +21 -20
- package/authenticationUsers.js.map +1 -1
- package/authorizationRoles.d.ts +32 -32
- package/authorizationRoles.js +29 -28
- 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 +9 -8
- package/configsConf.js.map +1 -1
- package/dataUiViews.d.ts +6 -6
- package/dataUiViews.js +9 -8
- package/dataUiViews.js.map +1 -1
- package/globalHttpEventCollector.d.ts +14 -14
- package/globalHttpEventCollector.js +17 -16
- 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 +81 -80
- package/indexes.js.map +1 -1
- package/inputsHttpEventCollector.d.ts +20 -20
- package/inputsHttpEventCollector.js +23 -22
- package/inputsHttpEventCollector.js.map +1 -1
- package/inputsMonitor.d.ts +32 -32
- package/inputsMonitor.js +35 -34
- package/inputsMonitor.js.map +1 -1
- package/inputsScript.d.ts +20 -20
- package/inputsScript.js +23 -22
- package/inputsScript.js.map +1 -1
- package/inputsTcpCooked.d.ts +12 -12
- package/inputsTcpCooked.js +15 -14
- package/inputsTcpCooked.js.map +1 -1
- package/inputsTcpRaw.d.ts +22 -22
- package/inputsTcpRaw.js +25 -24
- package/inputsTcpRaw.js.map +1 -1
- package/inputsTcpSplunkTcpToken.d.ts +6 -6
- package/inputsTcpSplunkTcpToken.js +9 -8
- package/inputsTcpSplunkTcpToken.js.map +1 -1
- package/inputsTcpSsl.d.ts +10 -10
- package/inputsTcpSsl.js +13 -12
- package/inputsTcpSsl.js.map +1 -1
- package/inputsUdp.d.ts +24 -24
- package/inputsUdp.js +27 -26
- package/inputsUdp.js.map +1 -1
- package/outputsTcpDefault.d.ts +18 -18
- package/outputsTcpDefault.js +21 -20
- package/outputsTcpDefault.js.map +1 -1
- package/outputsTcpGroup.d.ts +22 -22
- package/outputsTcpGroup.js +25 -24
- package/outputsTcpGroup.js.map +1 -1
- package/outputsTcpServer.d.ts +22 -22
- package/outputsTcpServer.js +25 -24
- package/outputsTcpServer.js.map +1 -1
- package/outputsTcpSyslog.d.ts +16 -16
- package/outputsTcpSyslog.js +19 -18
- 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 +9 -8
- package/provider.js.map +1 -1
- package/savedSearches.d.ts +281 -269
- package/savedSearches.js +279 -276
- package/savedSearches.js.map +1 -1
- package/shIndexesManager.d.ts +10 -10
- package/shIndexesManager.js +13 -12
- 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/authorizationRoles.d.ts
CHANGED
|
@@ -57,11 +57,11 @@ export declare class AuthorizationRoles extends pulumi.CustomResource {
|
|
|
57
57
|
/**
|
|
58
58
|
* Maximum number of concurrently running real-time searches that all members of this role can have.
|
|
59
59
|
*/
|
|
60
|
-
readonly cumulativeRealtimeSearchJobsQuota: pulumi.Output<number>;
|
|
60
|
+
readonly cumulativeRealtimeSearchJobsQuota: pulumi.Output<number | undefined>;
|
|
61
61
|
/**
|
|
62
62
|
* Maximum number of concurrently running searches for all role members. Warning message logged when limit is reached.
|
|
63
63
|
*/
|
|
64
|
-
readonly cumulativeSearchJobsQuota: pulumi.Output<number>;
|
|
64
|
+
readonly cumulativeSearchJobsQuota: pulumi.Output<number | undefined>;
|
|
65
65
|
/**
|
|
66
66
|
* Specify the folder name of the default app to use for this role. A user-specific default app overrides this.
|
|
67
67
|
*/
|
|
@@ -77,11 +77,11 @@ export declare class AuthorizationRoles extends pulumi.CustomResource {
|
|
|
77
77
|
/**
|
|
78
78
|
* Specify the maximum number of concurrent real-time search jobs for this role. This count is independent from the normal search jobs limit.
|
|
79
79
|
*/
|
|
80
|
-
readonly realtimeSearchJobsQuota: pulumi.Output<number>;
|
|
80
|
+
readonly realtimeSearchJobsQuota: pulumi.Output<number | undefined>;
|
|
81
81
|
/**
|
|
82
82
|
* 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.
|
|
83
83
|
*/
|
|
84
|
-
readonly searchDiskQuota: pulumi.Output<number>;
|
|
84
|
+
readonly searchDiskQuota: pulumi.Output<number | undefined>;
|
|
85
85
|
/**
|
|
86
86
|
* 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.
|
|
87
87
|
*/
|
|
@@ -97,11 +97,11 @@ export declare class AuthorizationRoles extends pulumi.CustomResource {
|
|
|
97
97
|
/**
|
|
98
98
|
* 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.
|
|
99
99
|
*/
|
|
100
|
-
readonly searchJobsQuota: pulumi.Output<number>;
|
|
100
|
+
readonly searchJobsQuota: pulumi.Output<number | undefined>;
|
|
101
101
|
/**
|
|
102
102
|
* 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.
|
|
103
103
|
*/
|
|
104
|
-
readonly searchTimeWin: pulumi.Output<number>;
|
|
104
|
+
readonly searchTimeWin: pulumi.Output<number | undefined>;
|
|
105
105
|
/**
|
|
106
106
|
* Create a AuthorizationRoles resource with the given unique name, arguments, and options.
|
|
107
107
|
*
|
|
@@ -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
|
/**
|
|
@@ -41,44 +42,44 @@ const utilities = require("./utilities");
|
|
|
41
42
|
*/
|
|
42
43
|
class AuthorizationRoles extends pulumi.CustomResource {
|
|
43
44
|
constructor(name, argsOrState, opts) {
|
|
44
|
-
let
|
|
45
|
+
let resourceInputs = {};
|
|
45
46
|
opts = opts || {};
|
|
46
47
|
if (opts.id) {
|
|
47
48
|
const state = argsOrState;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
49
|
+
resourceInputs["capabilities"] = state ? state.capabilities : undefined;
|
|
50
|
+
resourceInputs["cumulativeRealtimeSearchJobsQuota"] = state ? state.cumulativeRealtimeSearchJobsQuota : undefined;
|
|
51
|
+
resourceInputs["cumulativeSearchJobsQuota"] = state ? state.cumulativeSearchJobsQuota : undefined;
|
|
52
|
+
resourceInputs["defaultApp"] = state ? state.defaultApp : undefined;
|
|
53
|
+
resourceInputs["importedRoles"] = state ? state.importedRoles : undefined;
|
|
54
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
55
|
+
resourceInputs["realtimeSearchJobsQuota"] = state ? state.realtimeSearchJobsQuota : undefined;
|
|
56
|
+
resourceInputs["searchDiskQuota"] = state ? state.searchDiskQuota : undefined;
|
|
57
|
+
resourceInputs["searchFilter"] = state ? state.searchFilter : undefined;
|
|
58
|
+
resourceInputs["searchIndexesAlloweds"] = state ? state.searchIndexesAlloweds : undefined;
|
|
59
|
+
resourceInputs["searchIndexesDefaults"] = state ? state.searchIndexesDefaults : undefined;
|
|
60
|
+
resourceInputs["searchJobsQuota"] = state ? state.searchJobsQuota : undefined;
|
|
61
|
+
resourceInputs["searchTimeWin"] = state ? state.searchTimeWin : undefined;
|
|
61
62
|
}
|
|
62
63
|
else {
|
|
63
64
|
const args = argsOrState;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
65
|
+
resourceInputs["capabilities"] = args ? args.capabilities : undefined;
|
|
66
|
+
resourceInputs["cumulativeRealtimeSearchJobsQuota"] = args ? args.cumulativeRealtimeSearchJobsQuota : undefined;
|
|
67
|
+
resourceInputs["cumulativeSearchJobsQuota"] = args ? args.cumulativeSearchJobsQuota : undefined;
|
|
68
|
+
resourceInputs["defaultApp"] = args ? args.defaultApp : undefined;
|
|
69
|
+
resourceInputs["importedRoles"] = args ? args.importedRoles : undefined;
|
|
70
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
71
|
+
resourceInputs["realtimeSearchJobsQuota"] = args ? args.realtimeSearchJobsQuota : undefined;
|
|
72
|
+
resourceInputs["searchDiskQuota"] = args ? args.searchDiskQuota : undefined;
|
|
73
|
+
resourceInputs["searchFilter"] = args ? args.searchFilter : undefined;
|
|
74
|
+
resourceInputs["searchIndexesAlloweds"] = args ? args.searchIndexesAlloweds : undefined;
|
|
75
|
+
resourceInputs["searchIndexesDefaults"] = args ? args.searchIndexesDefaults : undefined;
|
|
76
|
+
resourceInputs["searchJobsQuota"] = args ? args.searchJobsQuota : undefined;
|
|
77
|
+
resourceInputs["searchTimeWin"] = args ? args.searchTimeWin : undefined;
|
|
77
78
|
}
|
|
78
79
|
if (!opts.version) {
|
|
79
80
|
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
80
81
|
}
|
|
81
|
-
super(AuthorizationRoles.__pulumiType, name,
|
|
82
|
+
super(AuthorizationRoles.__pulumiType, name, resourceInputs, opts);
|
|
82
83
|
}
|
|
83
84
|
/**
|
|
84
85
|
* Get an existing AuthorizationRoles resource's state with the given name, ID, and optional extra
|
|
@@ -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":"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"}
|
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;
|
package/config/vars.js
CHANGED
|
@@ -3,30 +3,41 @@
|
|
|
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
5
|
const pulumi = require("@pulumi/pulumi");
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
exports
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
exports
|
|
6
|
+
const __config = new pulumi.Config("splunk");
|
|
7
|
+
Object.defineProperty(exports, "authToken", {
|
|
8
|
+
get() {
|
|
9
|
+
return __config.get("authToken");
|
|
10
|
+
},
|
|
11
|
+
enumerable: true,
|
|
12
|
+
});
|
|
13
|
+
Object.defineProperty(exports, "insecureSkipVerify", {
|
|
14
|
+
get() {
|
|
15
|
+
return __config.getObject("insecureSkipVerify");
|
|
16
|
+
},
|
|
17
|
+
enumerable: true,
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "password", {
|
|
20
|
+
get() {
|
|
21
|
+
return __config.get("password");
|
|
22
|
+
},
|
|
23
|
+
enumerable: true,
|
|
24
|
+
});
|
|
25
|
+
Object.defineProperty(exports, "timeout", {
|
|
26
|
+
get() {
|
|
27
|
+
return __config.getObject("timeout");
|
|
28
|
+
},
|
|
29
|
+
enumerable: true,
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, "url", {
|
|
32
|
+
get() {
|
|
33
|
+
return __config.get("url");
|
|
34
|
+
},
|
|
35
|
+
enumerable: true,
|
|
36
|
+
});
|
|
37
|
+
Object.defineProperty(exports, "username", {
|
|
38
|
+
get() {
|
|
39
|
+
return __config.get("username");
|
|
40
|
+
},
|
|
41
|
+
enumerable: true,
|
|
42
|
+
});
|
|
32
43
|
//# sourceMappingURL=vars.js.map
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;AAIzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;AAO7C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,oBAAoB,EAAE;IACjD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,oBAAoB,CAAC,CAAC;IAC7D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,SAAS,CAAC,CAAC;IACjD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,EAAE;IAClC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC/B,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
package/configsConf.d.ts
CHANGED
|
@@ -63,15 +63,15 @@ export interface ConfigsConfState {
|
|
|
63
63
|
/**
|
|
64
64
|
* The app/user context that is the namespace for the resource
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
acl?: pulumi.Input<inputs.ConfigsConfAcl>;
|
|
67
67
|
/**
|
|
68
68
|
* A '/' separated string consisting of {conf_file_name}/{stanza_name} ex. props/custom_stanza
|
|
69
69
|
*/
|
|
70
|
-
|
|
70
|
+
name?: pulumi.Input<string>;
|
|
71
71
|
/**
|
|
72
72
|
* A map of key value pairs for a stanza.
|
|
73
73
|
*/
|
|
74
|
-
|
|
74
|
+
variables?: pulumi.Input<{
|
|
75
75
|
[key: string]: pulumi.Input<string>;
|
|
76
76
|
}>;
|
|
77
77
|
}
|
|
@@ -82,15 +82,15 @@ export interface ConfigsConfArgs {
|
|
|
82
82
|
/**
|
|
83
83
|
* The app/user context that is the namespace for the resource
|
|
84
84
|
*/
|
|
85
|
-
|
|
85
|
+
acl?: pulumi.Input<inputs.ConfigsConfAcl>;
|
|
86
86
|
/**
|
|
87
87
|
* A '/' separated string consisting of {conf_file_name}/{stanza_name} ex. props/custom_stanza
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
name?: pulumi.Input<string>;
|
|
90
90
|
/**
|
|
91
91
|
* A map of key value pairs for a stanza.
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
variables?: pulumi.Input<{
|
|
94
94
|
[key: string]: pulumi.Input<string>;
|
|
95
95
|
}>;
|
|
96
96
|
}
|
package/configsConf.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.ConfigsConf = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
|
@@ -23,24 +24,24 @@ const utilities = require("./utilities");
|
|
|
23
24
|
*/
|
|
24
25
|
class ConfigsConf extends pulumi.CustomResource {
|
|
25
26
|
constructor(name, argsOrState, opts) {
|
|
26
|
-
let
|
|
27
|
+
let resourceInputs = {};
|
|
27
28
|
opts = opts || {};
|
|
28
29
|
if (opts.id) {
|
|
29
30
|
const state = argsOrState;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
resourceInputs["acl"] = state ? state.acl : undefined;
|
|
32
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
33
|
+
resourceInputs["variables"] = state ? state.variables : undefined;
|
|
33
34
|
}
|
|
34
35
|
else {
|
|
35
36
|
const args = argsOrState;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
resourceInputs["acl"] = args ? args.acl : undefined;
|
|
38
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
39
|
+
resourceInputs["variables"] = args ? args.variables : undefined;
|
|
39
40
|
}
|
|
40
41
|
if (!opts.version) {
|
|
41
42
|
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
42
43
|
}
|
|
43
|
-
super(ConfigsConf.__pulumiType, name,
|
|
44
|
+
super(ConfigsConf.__pulumiType, name, resourceInputs, opts);
|
|
44
45
|
}
|
|
45
46
|
/**
|
|
46
47
|
* Get an existing ConfigsConf resource's state with the given name, ID, and optional extra
|
package/configsConf.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configsConf.js","sourceRoot":"","sources":["../configsConf.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"configsConf.js","sourceRoot":"","sources":["../configsConf.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAiDlD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,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,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;IAlED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;;AA1BL,kCAoEC;AAtDG,gBAAgB;AACO,wBAAY,GAAG,sCAAsC,CAAC"}
|
package/dataUiViews.d.ts
CHANGED
|
@@ -63,29 +63,29 @@ export declare class DataUiViews extends pulumi.CustomResource {
|
|
|
63
63
|
* Input properties used for looking up and filtering DataUiViews resources.
|
|
64
64
|
*/
|
|
65
65
|
export interface DataUiViewsState {
|
|
66
|
-
|
|
66
|
+
acl?: pulumi.Input<inputs.DataUiViewsAcl>;
|
|
67
67
|
/**
|
|
68
68
|
* Dashboard XML definition.
|
|
69
69
|
*/
|
|
70
|
-
|
|
70
|
+
eaiData?: pulumi.Input<string>;
|
|
71
71
|
/**
|
|
72
72
|
* Dashboard name.
|
|
73
73
|
* * `eai:data` - (Required) Dashboard XML definition.
|
|
74
74
|
*/
|
|
75
|
-
|
|
75
|
+
name?: pulumi.Input<string>;
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* The set of arguments for constructing a DataUiViews resource.
|
|
79
79
|
*/
|
|
80
80
|
export interface DataUiViewsArgs {
|
|
81
|
-
|
|
81
|
+
acl?: pulumi.Input<inputs.DataUiViewsAcl>;
|
|
82
82
|
/**
|
|
83
83
|
* Dashboard XML definition.
|
|
84
84
|
*/
|
|
85
|
-
|
|
85
|
+
eaiData: pulumi.Input<string>;
|
|
86
86
|
/**
|
|
87
87
|
* Dashboard name.
|
|
88
88
|
* * `eai:data` - (Required) Dashboard XML definition.
|
|
89
89
|
*/
|
|
90
|
-
|
|
90
|
+
name?: pulumi.Input<string>;
|
|
91
91
|
}
|
package/dataUiViews.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.DataUiViews = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
|
@@ -30,27 +31,27 @@ const utilities = require("./utilities");
|
|
|
30
31
|
*/
|
|
31
32
|
class DataUiViews extends pulumi.CustomResource {
|
|
32
33
|
constructor(name, argsOrState, opts) {
|
|
33
|
-
let
|
|
34
|
+
let resourceInputs = {};
|
|
34
35
|
opts = opts || {};
|
|
35
36
|
if (opts.id) {
|
|
36
37
|
const state = argsOrState;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
resourceInputs["acl"] = state ? state.acl : undefined;
|
|
39
|
+
resourceInputs["eaiData"] = state ? state.eaiData : undefined;
|
|
40
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
40
41
|
}
|
|
41
42
|
else {
|
|
42
43
|
const args = argsOrState;
|
|
43
44
|
if ((!args || args.eaiData === undefined) && !opts.urn) {
|
|
44
45
|
throw new Error("Missing required property 'eaiData'");
|
|
45
46
|
}
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
resourceInputs["acl"] = args ? args.acl : undefined;
|
|
48
|
+
resourceInputs["eaiData"] = args ? args.eaiData : undefined;
|
|
49
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
49
50
|
}
|
|
50
51
|
if (!opts.version) {
|
|
51
52
|
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
52
53
|
}
|
|
53
|
-
super(DataUiViews.__pulumiType, name,
|
|
54
|
+
super(DataUiViews.__pulumiType, name, resourceInputs, opts);
|
|
54
55
|
}
|
|
55
56
|
/**
|
|
56
57
|
* Get an existing DataUiViews resource's state with the given name, ID, and optional extra
|
package/dataUiViews.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataUiViews.js","sourceRoot":"","sources":["../dataUiViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"dataUiViews.js","sourceRoot":"","sources":["../dataUiViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IA+ClD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;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,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;IAnED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;;AA1BL,kCAqEC;AAvDG,gBAAgB;AACO,wBAAY,GAAG,sCAAsC,CAAC"}
|