@pulumi/splunk 1.3.0-alpha.1756363339 → 1.3.0-alpha.1757054620
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 +5 -5
- package/adminSamlGroups.js.map +1 -1
- package/appsLocal.js +27 -27
- package/appsLocal.js.map +1 -1
- package/authenticationUsers.js +19 -19
- package/authenticationUsers.js.map +1 -1
- package/authorizationRoles.js +27 -27
- package/authorizationRoles.js.map +1 -1
- package/config/vars.d.ts +1 -2
- package/config/vars.js.map +1 -1
- package/configsConf.js +7 -7
- package/configsConf.js.map +1 -1
- package/dataUiViews.js +8 -8
- package/dataUiViews.js.map +1 -1
- package/genericAcl.js +6 -6
- package/genericAcl.js.map +1 -1
- package/globalHttpEventCollector.js +15 -15
- package/globalHttpEventCollector.js.map +1 -1
- package/indexes.js +79 -79
- package/indexes.js.map +1 -1
- package/inputsHttpEventCollector.js +21 -21
- package/inputsHttpEventCollector.js.map +1 -1
- package/inputsMonitor.js +33 -33
- package/inputsMonitor.js.map +1 -1
- package/inputsScript.js +22 -22
- package/inputsScript.js.map +1 -1
- package/inputsTcpCooked.js +13 -13
- package/inputsTcpCooked.js.map +1 -1
- package/inputsTcpRaw.js +23 -23
- package/inputsTcpRaw.js.map +1 -1
- package/inputsTcpSplunkTcpToken.js +7 -7
- package/inputsTcpSplunkTcpToken.js.map +1 -1
- package/inputsTcpSsl.js +11 -11
- package/inputsTcpSsl.js.map +1 -1
- package/inputsUdp.js +25 -25
- package/inputsUdp.js.map +1 -1
- package/lookupDefinition.js +9 -9
- package/lookupDefinition.js.map +1 -1
- package/lookupTableFile.js +13 -13
- package/lookupTableFile.js.map +1 -1
- package/outputsTcpDefault.js +19 -19
- package/outputsTcpDefault.js.map +1 -1
- package/outputsTcpGroup.js +24 -24
- package/outputsTcpGroup.js.map +1 -1
- package/outputsTcpServer.js +23 -23
- package/outputsTcpServer.js.map +1 -1
- package/outputsTcpSyslog.js +17 -17
- package/outputsTcpSyslog.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +2 -4
- package/provider.js +6 -6
- package/provider.js.map +1 -1
- package/savedSearches.d.ts +12 -42
- package/savedSearches.js +333 -333
- package/savedSearches.js.map +1 -1
- package/shIndexesManager.js +11 -11
- package/shIndexesManager.js.map +1 -1
- package/utilities.js +18 -29
- package/utilities.js.map +1 -1
package/outputsTcpServer.js
CHANGED
|
@@ -33,7 +33,7 @@ class OutputsTcpServer extends pulumi.CustomResource {
|
|
|
33
33
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
34
34
|
*/
|
|
35
35
|
static get(name, id, state, opts) {
|
|
36
|
-
return new OutputsTcpServer(name, state,
|
|
36
|
+
return new OutputsTcpServer(name, state, { ...opts, id: id });
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* Returns true if the given object is an instance of OutputsTcpServer. This is designed to work even
|
|
@@ -50,31 +50,31 @@ class OutputsTcpServer extends pulumi.CustomResource {
|
|
|
50
50
|
opts = opts || {};
|
|
51
51
|
if (opts.id) {
|
|
52
52
|
const state = argsOrState;
|
|
53
|
-
resourceInputs["acl"] = state
|
|
54
|
-
resourceInputs["disabled"] = state
|
|
55
|
-
resourceInputs["method"] = state
|
|
56
|
-
resourceInputs["name"] = state
|
|
57
|
-
resourceInputs["sslAltNameToCheck"] = state
|
|
58
|
-
resourceInputs["sslCertPath"] = state
|
|
59
|
-
resourceInputs["sslCipher"] = state
|
|
60
|
-
resourceInputs["sslCommonNameToCheck"] = state
|
|
61
|
-
resourceInputs["sslPassword"] = state
|
|
62
|
-
resourceInputs["sslRootCaPath"] = state
|
|
63
|
-
resourceInputs["sslVerifyServerCert"] = state
|
|
53
|
+
resourceInputs["acl"] = state?.acl;
|
|
54
|
+
resourceInputs["disabled"] = state?.disabled;
|
|
55
|
+
resourceInputs["method"] = state?.method;
|
|
56
|
+
resourceInputs["name"] = state?.name;
|
|
57
|
+
resourceInputs["sslAltNameToCheck"] = state?.sslAltNameToCheck;
|
|
58
|
+
resourceInputs["sslCertPath"] = state?.sslCertPath;
|
|
59
|
+
resourceInputs["sslCipher"] = state?.sslCipher;
|
|
60
|
+
resourceInputs["sslCommonNameToCheck"] = state?.sslCommonNameToCheck;
|
|
61
|
+
resourceInputs["sslPassword"] = state?.sslPassword;
|
|
62
|
+
resourceInputs["sslRootCaPath"] = state?.sslRootCaPath;
|
|
63
|
+
resourceInputs["sslVerifyServerCert"] = state?.sslVerifyServerCert;
|
|
64
64
|
}
|
|
65
65
|
else {
|
|
66
66
|
const args = argsOrState;
|
|
67
|
-
resourceInputs["acl"] = args
|
|
68
|
-
resourceInputs["disabled"] = args
|
|
69
|
-
resourceInputs["method"] = args
|
|
70
|
-
resourceInputs["name"] = args
|
|
71
|
-
resourceInputs["sslAltNameToCheck"] = args
|
|
72
|
-
resourceInputs["sslCertPath"] = args
|
|
73
|
-
resourceInputs["sslCipher"] = args
|
|
74
|
-
resourceInputs["sslCommonNameToCheck"] = args
|
|
75
|
-
resourceInputs["sslPassword"] =
|
|
76
|
-
resourceInputs["sslRootCaPath"] = args
|
|
77
|
-
resourceInputs["sslVerifyServerCert"] = args
|
|
67
|
+
resourceInputs["acl"] = args?.acl;
|
|
68
|
+
resourceInputs["disabled"] = args?.disabled;
|
|
69
|
+
resourceInputs["method"] = args?.method;
|
|
70
|
+
resourceInputs["name"] = args?.name;
|
|
71
|
+
resourceInputs["sslAltNameToCheck"] = args?.sslAltNameToCheck;
|
|
72
|
+
resourceInputs["sslCertPath"] = args?.sslCertPath;
|
|
73
|
+
resourceInputs["sslCipher"] = args?.sslCipher;
|
|
74
|
+
resourceInputs["sslCommonNameToCheck"] = args?.sslCommonNameToCheck;
|
|
75
|
+
resourceInputs["sslPassword"] = args?.sslPassword ? pulumi.secret(args.sslPassword) : undefined;
|
|
76
|
+
resourceInputs["sslRootCaPath"] = args?.sslRootCaPath;
|
|
77
|
+
resourceInputs["sslVerifyServerCert"] = args?.sslVerifyServerCert;
|
|
78
78
|
}
|
|
79
79
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
80
80
|
const secretOpts = { additionalSecretOutputs: ["sslPassword"] };
|
package/outputsTcpServer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"outputsTcpServer.js","sourceRoot":"","sources":["../outputsTcpServer.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"outputsTcpServer.js","sourceRoot":"","sources":["../outputsTcpServer.ts"],"names":[],"mappings":"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"}
|
package/outputsTcpSyslog.js
CHANGED
|
@@ -34,7 +34,7 @@ class OutputsTcpSyslog extends pulumi.CustomResource {
|
|
|
34
34
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
35
|
*/
|
|
36
36
|
static get(name, id, state, opts) {
|
|
37
|
-
return new OutputsTcpSyslog(name, state,
|
|
37
|
+
return new OutputsTcpSyslog(name, state, { ...opts, id: id });
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
40
|
* Returns true if the given object is an instance of OutputsTcpSyslog. This is designed to work even
|
|
@@ -51,25 +51,25 @@ class OutputsTcpSyslog extends pulumi.CustomResource {
|
|
|
51
51
|
opts = opts || {};
|
|
52
52
|
if (opts.id) {
|
|
53
53
|
const state = argsOrState;
|
|
54
|
-
resourceInputs["acl"] = state
|
|
55
|
-
resourceInputs["disabled"] = state
|
|
56
|
-
resourceInputs["name"] = state
|
|
57
|
-
resourceInputs["priority"] = state
|
|
58
|
-
resourceInputs["server"] = state
|
|
59
|
-
resourceInputs["syslogSourcetype"] = state
|
|
60
|
-
resourceInputs["timestampFormat"] = state
|
|
61
|
-
resourceInputs["type"] = state
|
|
54
|
+
resourceInputs["acl"] = state?.acl;
|
|
55
|
+
resourceInputs["disabled"] = state?.disabled;
|
|
56
|
+
resourceInputs["name"] = state?.name;
|
|
57
|
+
resourceInputs["priority"] = state?.priority;
|
|
58
|
+
resourceInputs["server"] = state?.server;
|
|
59
|
+
resourceInputs["syslogSourcetype"] = state?.syslogSourcetype;
|
|
60
|
+
resourceInputs["timestampFormat"] = state?.timestampFormat;
|
|
61
|
+
resourceInputs["type"] = state?.type;
|
|
62
62
|
}
|
|
63
63
|
else {
|
|
64
64
|
const args = argsOrState;
|
|
65
|
-
resourceInputs["acl"] = args
|
|
66
|
-
resourceInputs["disabled"] = args
|
|
67
|
-
resourceInputs["name"] = args
|
|
68
|
-
resourceInputs["priority"] = args
|
|
69
|
-
resourceInputs["server"] = args
|
|
70
|
-
resourceInputs["syslogSourcetype"] = args
|
|
71
|
-
resourceInputs["timestampFormat"] = args
|
|
72
|
-
resourceInputs["type"] = args
|
|
65
|
+
resourceInputs["acl"] = args?.acl;
|
|
66
|
+
resourceInputs["disabled"] = args?.disabled;
|
|
67
|
+
resourceInputs["name"] = args?.name;
|
|
68
|
+
resourceInputs["priority"] = args?.priority;
|
|
69
|
+
resourceInputs["server"] = args?.server;
|
|
70
|
+
resourceInputs["syslogSourcetype"] = args?.syslogSourcetype;
|
|
71
|
+
resourceInputs["timestampFormat"] = args?.timestampFormat;
|
|
72
|
+
resourceInputs["type"] = args?.type;
|
|
73
73
|
}
|
|
74
74
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
75
75
|
super(OutputsTcpSyslog.__pulumiType, name, resourceInputs, opts);
|
package/outputsTcpSyslog.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"outputsTcpSyslog.js","sourceRoot":"","sources":["../outputsTcpSyslog.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"outputsTcpSyslog.js","sourceRoot":"","sources":["../outputsTcpSyslog.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACvE,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,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;IAiDD,YAAY,IAAY,EAAE,WAA0D,EAAE,IAAmC;QACrH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAgD,CAAC;YAC/D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;;AArGL,4CAsGC;AAxFG,gBAAgB;AACO,6BAAY,GAAG,gDAAgD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/splunk",
|
|
3
|
-
"version": "1.3.0-alpha.
|
|
3
|
+
"version": "1.3.0-alpha.1757054620",
|
|
4
4
|
"description": "A Pulumi package for creating and managing splunk cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "splunk",
|
|
26
|
-
"version": "1.3.0-alpha.
|
|
26
|
+
"version": "1.3.0-alpha.1757054620"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/provider.d.ts
CHANGED
|
@@ -12,8 +12,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
12
12
|
*/
|
|
13
13
|
static isInstance(obj: any): obj is Provider;
|
|
14
14
|
/**
|
|
15
|
-
* Authentication tokens, also known as JSON Web Tokens (JWT), are a method for authenticating Splunk platform users into
|
|
16
|
-
* the Splunk platform
|
|
15
|
+
* Authentication tokens, also known as JSON Web Tokens (JWT), are a method for authenticating Splunk platform users into the Splunk platform
|
|
17
16
|
*/
|
|
18
17
|
readonly authToken: pulumi.Output<string | undefined>;
|
|
19
18
|
/**
|
|
@@ -46,8 +45,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
46
45
|
*/
|
|
47
46
|
export interface ProviderArgs {
|
|
48
47
|
/**
|
|
49
|
-
* Authentication tokens, also known as JSON Web Tokens (JWT), are a method for authenticating Splunk platform users into
|
|
50
|
-
* the Splunk platform
|
|
48
|
+
* Authentication tokens, also known as JSON Web Tokens (JWT), are a method for authenticating Splunk platform users into the Splunk platform
|
|
51
49
|
*/
|
|
52
50
|
authToken?: pulumi.Input<string>;
|
|
53
51
|
/**
|
package/provider.js
CHANGED
|
@@ -33,12 +33,12 @@ class Provider extends pulumi.ProviderResource {
|
|
|
33
33
|
let resourceInputs = {};
|
|
34
34
|
opts = opts || {};
|
|
35
35
|
{
|
|
36
|
-
resourceInputs["authToken"] = args
|
|
37
|
-
resourceInputs["insecureSkipVerify"] = pulumi.output(args
|
|
38
|
-
resourceInputs["password"] = args
|
|
39
|
-
resourceInputs["timeout"] = pulumi.output(args
|
|
40
|
-
resourceInputs["url"] = args
|
|
41
|
-
resourceInputs["username"] = args
|
|
36
|
+
resourceInputs["authToken"] = args?.authToken;
|
|
37
|
+
resourceInputs["insecureSkipVerify"] = pulumi.output(args?.insecureSkipVerify).apply(JSON.stringify);
|
|
38
|
+
resourceInputs["password"] = args?.password;
|
|
39
|
+
resourceInputs["timeout"] = pulumi.output(args?.timeout).apply(JSON.stringify);
|
|
40
|
+
resourceInputs["url"] = args?.url;
|
|
41
|
+
resourceInputs["username"] = args?.username;
|
|
42
42
|
}
|
|
43
43
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
44
44
|
super(Provider.__pulumiType, name, resourceInputs, opts);
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;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,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;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,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;IAmBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,oBAAoB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,kBAAkB,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACrG,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,SAAS,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YAC/E,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;IAED;;OAEG;IACH,eAAe;QACX,OAAO,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,yCAAyC,EAAE;YAClE,UAAU,EAAE,IAAI;SACnB,EAAE,IAAI,CAAC,CAAC;IACb,CAAC;;AA7DL,4BA8DC;AA7DG,gBAAgB;AACO,qBAAY,GAAG,QAAQ,CAAC"}
|
package/savedSearches.d.ts
CHANGED
|
@@ -407,24 +407,15 @@ export declare class SavedSearches extends pulumi.CustomResource {
|
|
|
407
407
|
*/
|
|
408
408
|
readonly actionSnowEventParamAccount: pulumi.Output<string>;
|
|
409
409
|
/**
|
|
410
|
-
* You can pass additional information that might be of use to the user. This field can also be used to supply the URL of
|
|
411
|
-
* your Splunk search head. When you use the snow_event.py alert-triggered script, the Splunk platform uses the URL to
|
|
412
|
-
* create a deep link that allows a ServiceNow user to navigate back to this Splunk platform search. You can find the
|
|
413
|
-
* resulting full URL for navigation from ServiceNow to the Splunk platform search by clicking Splunk Drilldown in the
|
|
414
|
-
* event page in ServiceNow. See an example below. Note that if you create events using the commands snowevent or
|
|
415
|
-
* snoweventstream, you must supply the URL in this field.You can pass the URL of Splunk as url=<value>. You can also pass
|
|
416
|
-
* other fields and their values by || separated key-value format. For example, url=<value>||k1=v1||k2=v2||....
|
|
410
|
+
* You can pass additional information that might be of use to the user. This field can also be used to supply the URL of your Splunk search head. When you use the snow_event.py alert-triggered script, the Splunk platform uses the URL to create a deep link that allows a ServiceNow user to navigate back to this Splunk platform search. You can find the resulting full URL for navigation from ServiceNow to the Splunk platform search by clicking Splunk Drilldown in the event page in ServiceNow. See an example below. Note that if you create events using the commands snowevent or snoweventstream, you must supply the URL in this field.You can pass the URL of Splunk as url=<value>. You can also pass other fields and their values by || separated key-value format. For example, url=<value>||k1=v1||k2=v2||....
|
|
417
411
|
*/
|
|
418
412
|
readonly actionSnowEventParamAdditionalInfo: pulumi.Output<string>;
|
|
419
413
|
/**
|
|
420
|
-
* String that represents a configuration item in your network. You can pass value as || separated key-value format. For
|
|
421
|
-
* example, k1=v1||k2=v2.
|
|
414
|
+
* String that represents a configuration item in your network. You can pass value as || separated key-value format. For example, k1=v1||k2=v2.
|
|
422
415
|
*/
|
|
423
416
|
readonly actionSnowEventParamCiIdentifier: pulumi.Output<string>;
|
|
424
417
|
/**
|
|
425
|
-
* The custom fields which are configured at the ServiceNow Instance. You can pass the custom fields and their values in
|
|
426
|
-
* the || separated format. For example, custom_field1=value1||custom_field2=value2||...custom_fields used must be present
|
|
427
|
-
* in the emEvent table of ServiceNow.
|
|
418
|
+
* The custom fields which are configured at the ServiceNow Instance. You can pass the custom fields and their values in the || separated format. For example, custom_field1=value1||custom_field2=value2||...custom_fields used must be present in the emEvent table of ServiceNow.
|
|
428
419
|
*/
|
|
429
420
|
readonly actionSnowEventParamCustomFields: pulumi.Output<string>;
|
|
430
421
|
/**
|
|
@@ -432,8 +423,7 @@ export declare class SavedSearches extends pulumi.CustomResource {
|
|
|
432
423
|
*/
|
|
433
424
|
readonly actionSnowEventParamDescription: pulumi.Output<string>;
|
|
434
425
|
/**
|
|
435
|
-
* The node, formatted to follow your organization's ITIL standards and mapping. If the node value matches a CI with the
|
|
436
|
-
* same host name, the event is automatically assigned to the matching CI.
|
|
426
|
+
* The node, formatted to follow your organization's ITIL standards and mapping. If the node value matches a CI with the same host name, the event is automatically assigned to the matching CI.
|
|
437
427
|
*/
|
|
438
428
|
readonly actionSnowEventParamNode: pulumi.Output<string>;
|
|
439
429
|
/**
|
|
@@ -1102,24 +1092,15 @@ export interface SavedSearchesState {
|
|
|
1102
1092
|
*/
|
|
1103
1093
|
actionSnowEventParamAccount?: pulumi.Input<string>;
|
|
1104
1094
|
/**
|
|
1105
|
-
* You can pass additional information that might be of use to the user. This field can also be used to supply the URL of
|
|
1106
|
-
* your Splunk search head. When you use the snow_event.py alert-triggered script, the Splunk platform uses the URL to
|
|
1107
|
-
* create a deep link that allows a ServiceNow user to navigate back to this Splunk platform search. You can find the
|
|
1108
|
-
* resulting full URL for navigation from ServiceNow to the Splunk platform search by clicking Splunk Drilldown in the
|
|
1109
|
-
* event page in ServiceNow. See an example below. Note that if you create events using the commands snowevent or
|
|
1110
|
-
* snoweventstream, you must supply the URL in this field.You can pass the URL of Splunk as url=<value>. You can also pass
|
|
1111
|
-
* other fields and their values by || separated key-value format. For example, url=<value>||k1=v1||k2=v2||....
|
|
1095
|
+
* You can pass additional information that might be of use to the user. This field can also be used to supply the URL of your Splunk search head. When you use the snow_event.py alert-triggered script, the Splunk platform uses the URL to create a deep link that allows a ServiceNow user to navigate back to this Splunk platform search. You can find the resulting full URL for navigation from ServiceNow to the Splunk platform search by clicking Splunk Drilldown in the event page in ServiceNow. See an example below. Note that if you create events using the commands snowevent or snoweventstream, you must supply the URL in this field.You can pass the URL of Splunk as url=<value>. You can also pass other fields and their values by || separated key-value format. For example, url=<value>||k1=v1||k2=v2||....
|
|
1112
1096
|
*/
|
|
1113
1097
|
actionSnowEventParamAdditionalInfo?: pulumi.Input<string>;
|
|
1114
1098
|
/**
|
|
1115
|
-
* String that represents a configuration item in your network. You can pass value as || separated key-value format. For
|
|
1116
|
-
* example, k1=v1||k2=v2.
|
|
1099
|
+
* String that represents a configuration item in your network. You can pass value as || separated key-value format. For example, k1=v1||k2=v2.
|
|
1117
1100
|
*/
|
|
1118
1101
|
actionSnowEventParamCiIdentifier?: pulumi.Input<string>;
|
|
1119
1102
|
/**
|
|
1120
|
-
* The custom fields which are configured at the ServiceNow Instance. You can pass the custom fields and their values in
|
|
1121
|
-
* the || separated format. For example, custom_field1=value1||custom_field2=value2||...custom_fields used must be present
|
|
1122
|
-
* in the emEvent table of ServiceNow.
|
|
1103
|
+
* The custom fields which are configured at the ServiceNow Instance. You can pass the custom fields and their values in the || separated format. For example, custom_field1=value1||custom_field2=value2||...custom_fields used must be present in the emEvent table of ServiceNow.
|
|
1123
1104
|
*/
|
|
1124
1105
|
actionSnowEventParamCustomFields?: pulumi.Input<string>;
|
|
1125
1106
|
/**
|
|
@@ -1127,8 +1108,7 @@ export interface SavedSearchesState {
|
|
|
1127
1108
|
*/
|
|
1128
1109
|
actionSnowEventParamDescription?: pulumi.Input<string>;
|
|
1129
1110
|
/**
|
|
1130
|
-
* The node, formatted to follow your organization's ITIL standards and mapping. If the node value matches a CI with the
|
|
1131
|
-
* same host name, the event is automatically assigned to the matching CI.
|
|
1111
|
+
* The node, formatted to follow your organization's ITIL standards and mapping. If the node value matches a CI with the same host name, the event is automatically assigned to the matching CI.
|
|
1132
1112
|
*/
|
|
1133
1113
|
actionSnowEventParamNode?: pulumi.Input<string>;
|
|
1134
1114
|
/**
|
|
@@ -1773,24 +1753,15 @@ export interface SavedSearchesArgs {
|
|
|
1773
1753
|
*/
|
|
1774
1754
|
actionSnowEventParamAccount?: pulumi.Input<string>;
|
|
1775
1755
|
/**
|
|
1776
|
-
* You can pass additional information that might be of use to the user. This field can also be used to supply the URL of
|
|
1777
|
-
* your Splunk search head. When you use the snow_event.py alert-triggered script, the Splunk platform uses the URL to
|
|
1778
|
-
* create a deep link that allows a ServiceNow user to navigate back to this Splunk platform search. You can find the
|
|
1779
|
-
* resulting full URL for navigation from ServiceNow to the Splunk platform search by clicking Splunk Drilldown in the
|
|
1780
|
-
* event page in ServiceNow. See an example below. Note that if you create events using the commands snowevent or
|
|
1781
|
-
* snoweventstream, you must supply the URL in this field.You can pass the URL of Splunk as url=<value>. You can also pass
|
|
1782
|
-
* other fields and their values by || separated key-value format. For example, url=<value>||k1=v1||k2=v2||....
|
|
1756
|
+
* You can pass additional information that might be of use to the user. This field can also be used to supply the URL of your Splunk search head. When you use the snow_event.py alert-triggered script, the Splunk platform uses the URL to create a deep link that allows a ServiceNow user to navigate back to this Splunk platform search. You can find the resulting full URL for navigation from ServiceNow to the Splunk platform search by clicking Splunk Drilldown in the event page in ServiceNow. See an example below. Note that if you create events using the commands snowevent or snoweventstream, you must supply the URL in this field.You can pass the URL of Splunk as url=<value>. You can also pass other fields and their values by || separated key-value format. For example, url=<value>||k1=v1||k2=v2||....
|
|
1783
1757
|
*/
|
|
1784
1758
|
actionSnowEventParamAdditionalInfo?: pulumi.Input<string>;
|
|
1785
1759
|
/**
|
|
1786
|
-
* String that represents a configuration item in your network. You can pass value as || separated key-value format. For
|
|
1787
|
-
* example, k1=v1||k2=v2.
|
|
1760
|
+
* String that represents a configuration item in your network. You can pass value as || separated key-value format. For example, k1=v1||k2=v2.
|
|
1788
1761
|
*/
|
|
1789
1762
|
actionSnowEventParamCiIdentifier?: pulumi.Input<string>;
|
|
1790
1763
|
/**
|
|
1791
|
-
* The custom fields which are configured at the ServiceNow Instance. You can pass the custom fields and their values in
|
|
1792
|
-
* the || separated format. For example, custom_field1=value1||custom_field2=value2||...custom_fields used must be present
|
|
1793
|
-
* in the emEvent table of ServiceNow.
|
|
1764
|
+
* The custom fields which are configured at the ServiceNow Instance. You can pass the custom fields and their values in the || separated format. For example, custom_field1=value1||custom_field2=value2||...custom_fields used must be present in the emEvent table of ServiceNow.
|
|
1794
1765
|
*/
|
|
1795
1766
|
actionSnowEventParamCustomFields?: pulumi.Input<string>;
|
|
1796
1767
|
/**
|
|
@@ -1798,8 +1769,7 @@ export interface SavedSearchesArgs {
|
|
|
1798
1769
|
*/
|
|
1799
1770
|
actionSnowEventParamDescription?: pulumi.Input<string>;
|
|
1800
1771
|
/**
|
|
1801
|
-
* The node, formatted to follow your organization's ITIL standards and mapping. If the node value matches a CI with the
|
|
1802
|
-
* same host name, the event is automatically assigned to the matching CI.
|
|
1772
|
+
* The node, formatted to follow your organization's ITIL standards and mapping. If the node value matches a CI with the same host name, the event is automatically assigned to the matching CI.
|
|
1803
1773
|
*/
|
|
1804
1774
|
actionSnowEventParamNode?: pulumi.Input<string>;
|
|
1805
1775
|
/**
|