@pulumi/splunk 1.1.2 → 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/config/index.js +5 -1
- package/config/index.js.map +1 -1
- package/genericAcl.d.ts +110 -0
- package/genericAcl.js +94 -0
- package/genericAcl.js.map +1 -0
- package/index.d.ts +1 -0
- package/index.js +10 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +13 -0
- package/types/output.d.ts +13 -0
package/config/index.js
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
5
|
if (k2 === undefined) k2 = k;
|
|
6
|
-
Object.
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
7
11
|
}) : (function(o, m, k, k2) {
|
|
8
12
|
if (k2 === undefined) k2 = k;
|
|
9
13
|
o[k2] = m[k];
|
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/genericAcl.d.ts
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* ## Example Usage
|
|
5
|
+
*
|
|
6
|
+
* ```typescript
|
|
7
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
+
* import * as splunk from "@pulumi/splunk";
|
|
9
|
+
*
|
|
10
|
+
* const myApp = new splunk.GenericAcl("my_app", {
|
|
11
|
+
* acl: {
|
|
12
|
+
* // use app=system, owner=nobody when managing apps, as they have no owner or app context
|
|
13
|
+
* app: "system",
|
|
14
|
+
* owner: "nobody",
|
|
15
|
+
* reads: ["*"],
|
|
16
|
+
* writes: [
|
|
17
|
+
* "admin",
|
|
18
|
+
* "power",
|
|
19
|
+
* ],
|
|
20
|
+
* },
|
|
21
|
+
* // apps are managed via the apps/local/<app> endpoint
|
|
22
|
+
* path: "apps/local/my_app",
|
|
23
|
+
* });
|
|
24
|
+
* const myDashboard = new splunk.GenericAcl("my_dashboard", {
|
|
25
|
+
* acl: {
|
|
26
|
+
* app: "my_app",
|
|
27
|
+
* owner: "joe_user",
|
|
28
|
+
* reads: ["team_joe"],
|
|
29
|
+
* writes: ["team_joe"],
|
|
30
|
+
* },
|
|
31
|
+
* path: "data/ui/views/my_dashboard",
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* ## Import
|
|
36
|
+
*
|
|
37
|
+
* Generic ACL resources can be imported by specifying their owner, app, and path with a colon-delimited string as the ID
|
|
38
|
+
*
|
|
39
|
+
* ```sh
|
|
40
|
+
* $ pulumi import splunk:index/genericAcl:GenericAcl splunk_generic_acl <owner>:<app>:<path>
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
export declare class GenericAcl extends pulumi.CustomResource {
|
|
44
|
+
/**
|
|
45
|
+
* Get an existing GenericAcl resource's state with the given name, ID, and optional extra
|
|
46
|
+
* properties used to qualify the lookup.
|
|
47
|
+
*
|
|
48
|
+
* @param name The _unique_ name of the resulting resource.
|
|
49
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
50
|
+
* @param state Any extra arguments used during the lookup.
|
|
51
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
52
|
+
*/
|
|
53
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GenericAclState, opts?: pulumi.CustomResourceOptions): GenericAcl;
|
|
54
|
+
/**
|
|
55
|
+
* Returns true if the given object is an instance of GenericAcl. This is designed to work even
|
|
56
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
57
|
+
*/
|
|
58
|
+
static isInstance(obj: any): obj is GenericAcl;
|
|
59
|
+
/**
|
|
60
|
+
* The ACL to apply to the object, including app/owner to properly identify the object.
|
|
61
|
+
* Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
|
|
62
|
+
* apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
|
|
63
|
+
* app and owner for objects that don't fit in the normal namespace.
|
|
64
|
+
*/
|
|
65
|
+
readonly acl: pulumi.Output<outputs.GenericAclAcl>;
|
|
66
|
+
/**
|
|
67
|
+
* REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
|
|
68
|
+
*/
|
|
69
|
+
readonly path: pulumi.Output<string>;
|
|
70
|
+
/**
|
|
71
|
+
* Create a GenericAcl resource with the given unique name, arguments, and options.
|
|
72
|
+
*
|
|
73
|
+
* @param name The _unique_ name of the resource.
|
|
74
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
75
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
76
|
+
*/
|
|
77
|
+
constructor(name: string, args: GenericAclArgs, opts?: pulumi.CustomResourceOptions);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Input properties used for looking up and filtering GenericAcl resources.
|
|
81
|
+
*/
|
|
82
|
+
export interface GenericAclState {
|
|
83
|
+
/**
|
|
84
|
+
* The ACL to apply to the object, including app/owner to properly identify the object.
|
|
85
|
+
* Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
|
|
86
|
+
* apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
|
|
87
|
+
* app and owner for objects that don't fit in the normal namespace.
|
|
88
|
+
*/
|
|
89
|
+
acl?: pulumi.Input<inputs.GenericAclAcl>;
|
|
90
|
+
/**
|
|
91
|
+
* REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
|
|
92
|
+
*/
|
|
93
|
+
path?: pulumi.Input<string>;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* The set of arguments for constructing a GenericAcl resource.
|
|
97
|
+
*/
|
|
98
|
+
export interface GenericAclArgs {
|
|
99
|
+
/**
|
|
100
|
+
* The ACL to apply to the object, including app/owner to properly identify the object.
|
|
101
|
+
* Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
|
|
102
|
+
* apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
|
|
103
|
+
* app and owner for objects that don't fit in the normal namespace.
|
|
104
|
+
*/
|
|
105
|
+
acl?: pulumi.Input<inputs.GenericAclAcl>;
|
|
106
|
+
/**
|
|
107
|
+
* REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
|
|
108
|
+
*/
|
|
109
|
+
path: pulumi.Input<string>;
|
|
110
|
+
}
|
package/genericAcl.js
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.GenericAcl = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as splunk from "@pulumi/splunk";
|
|
14
|
+
*
|
|
15
|
+
* const myApp = new splunk.GenericAcl("my_app", {
|
|
16
|
+
* acl: {
|
|
17
|
+
* // use app=system, owner=nobody when managing apps, as they have no owner or app context
|
|
18
|
+
* app: "system",
|
|
19
|
+
* owner: "nobody",
|
|
20
|
+
* reads: ["*"],
|
|
21
|
+
* writes: [
|
|
22
|
+
* "admin",
|
|
23
|
+
* "power",
|
|
24
|
+
* ],
|
|
25
|
+
* },
|
|
26
|
+
* // apps are managed via the apps/local/<app> endpoint
|
|
27
|
+
* path: "apps/local/my_app",
|
|
28
|
+
* });
|
|
29
|
+
* const myDashboard = new splunk.GenericAcl("my_dashboard", {
|
|
30
|
+
* acl: {
|
|
31
|
+
* app: "my_app",
|
|
32
|
+
* owner: "joe_user",
|
|
33
|
+
* reads: ["team_joe"],
|
|
34
|
+
* writes: ["team_joe"],
|
|
35
|
+
* },
|
|
36
|
+
* path: "data/ui/views/my_dashboard",
|
|
37
|
+
* });
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* ## Import
|
|
41
|
+
*
|
|
42
|
+
* Generic ACL resources can be imported by specifying their owner, app, and path with a colon-delimited string as the ID
|
|
43
|
+
*
|
|
44
|
+
* ```sh
|
|
45
|
+
* $ pulumi import splunk:index/genericAcl:GenericAcl splunk_generic_acl <owner>:<app>:<path>
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
class GenericAcl extends pulumi.CustomResource {
|
|
49
|
+
constructor(name, argsOrState, opts) {
|
|
50
|
+
let resourceInputs = {};
|
|
51
|
+
opts = opts || {};
|
|
52
|
+
if (opts.id) {
|
|
53
|
+
const state = argsOrState;
|
|
54
|
+
resourceInputs["acl"] = state ? state.acl : undefined;
|
|
55
|
+
resourceInputs["path"] = state ? state.path : undefined;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
const args = argsOrState;
|
|
59
|
+
if ((!args || args.path === undefined) && !opts.urn) {
|
|
60
|
+
throw new Error("Missing required property 'path'");
|
|
61
|
+
}
|
|
62
|
+
resourceInputs["acl"] = args ? args.acl : undefined;
|
|
63
|
+
resourceInputs["path"] = args ? args.path : undefined;
|
|
64
|
+
}
|
|
65
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
66
|
+
super(GenericAcl.__pulumiType, name, resourceInputs, opts);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Get an existing GenericAcl resource's state with the given name, ID, and optional extra
|
|
70
|
+
* properties used to qualify the lookup.
|
|
71
|
+
*
|
|
72
|
+
* @param name The _unique_ name of the resulting resource.
|
|
73
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
74
|
+
* @param state Any extra arguments used during the lookup.
|
|
75
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
76
|
+
*/
|
|
77
|
+
static get(name, id, state, opts) {
|
|
78
|
+
return new GenericAcl(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Returns true if the given object is an instance of GenericAcl. This is designed to work even
|
|
82
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
83
|
+
*/
|
|
84
|
+
static isInstance(obj) {
|
|
85
|
+
if (obj === undefined || obj === null) {
|
|
86
|
+
return false;
|
|
87
|
+
}
|
|
88
|
+
return obj['__pulumiType'] === GenericAcl.__pulumiType;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.GenericAcl = GenericAcl;
|
|
92
|
+
/** @internal */
|
|
93
|
+
GenericAcl.__pulumiType = 'splunk:index/genericAcl:GenericAcl';
|
|
94
|
+
//# sourceMappingURL=genericAcl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"genericAcl.js","sourceRoot":"","sources":["../genericAcl.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IAgDjD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,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;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,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;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IAhED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,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,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AA1BL,gCAkEC;AApDG,gBAAgB;AACO,uBAAY,GAAG,oCAAoC,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from "./authenticationUsers";
|
|
|
4
4
|
export * from "./authorizationRoles";
|
|
5
5
|
export * from "./configsConf";
|
|
6
6
|
export * from "./dataUiViews";
|
|
7
|
+
export * from "./genericAcl";
|
|
7
8
|
export * from "./globalHttpEventCollector";
|
|
8
9
|
export * from "./indexes";
|
|
9
10
|
export * from "./inputsHttpEventCollector";
|
package/index.js
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
5
|
if (k2 === undefined) k2 = k;
|
|
6
|
-
Object.
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
7
11
|
}) : (function(o, m, k, k2) {
|
|
8
12
|
if (k2 === undefined) k2 = k;
|
|
9
13
|
o[k2] = m[k];
|
|
@@ -22,6 +26,7 @@ __exportStar(require("./authenticationUsers"), exports);
|
|
|
22
26
|
__exportStar(require("./authorizationRoles"), exports);
|
|
23
27
|
__exportStar(require("./configsConf"), exports);
|
|
24
28
|
__exportStar(require("./dataUiViews"), exports);
|
|
29
|
+
__exportStar(require("./genericAcl"), exports);
|
|
25
30
|
__exportStar(require("./globalHttpEventCollector"), exports);
|
|
26
31
|
__exportStar(require("./indexes"), exports);
|
|
27
32
|
__exportStar(require("./inputsHttpEventCollector"), exports);
|
|
@@ -51,6 +56,7 @@ const authenticationUsers_1 = require("./authenticationUsers");
|
|
|
51
56
|
const authorizationRoles_1 = require("./authorizationRoles");
|
|
52
57
|
const configsConf_1 = require("./configsConf");
|
|
53
58
|
const dataUiViews_1 = require("./dataUiViews");
|
|
59
|
+
const genericAcl_1 = require("./genericAcl");
|
|
54
60
|
const globalHttpEventCollector_1 = require("./globalHttpEventCollector");
|
|
55
61
|
const indexes_1 = require("./indexes");
|
|
56
62
|
const inputsHttpEventCollector_1 = require("./inputsHttpEventCollector");
|
|
@@ -83,6 +89,8 @@ const _module = {
|
|
|
83
89
|
return new configsConf_1.ConfigsConf(name, undefined, { urn });
|
|
84
90
|
case "splunk:index/dataUiViews:DataUiViews":
|
|
85
91
|
return new dataUiViews_1.DataUiViews(name, undefined, { urn });
|
|
92
|
+
case "splunk:index/genericAcl:GenericAcl":
|
|
93
|
+
return new genericAcl_1.GenericAcl(name, undefined, { urn });
|
|
86
94
|
case "splunk:index/globalHttpEventCollector:GlobalHttpEventCollector":
|
|
87
95
|
return new globalHttpEventCollector_1.GlobalHttpEventCollector(name, undefined, { urn });
|
|
88
96
|
case "splunk:index/indexes:Indexes":
|
|
@@ -126,6 +134,7 @@ pulumi.runtime.registerResourceModule("splunk", "index/authenticationUsers", _mo
|
|
|
126
134
|
pulumi.runtime.registerResourceModule("splunk", "index/authorizationRoles", _module);
|
|
127
135
|
pulumi.runtime.registerResourceModule("splunk", "index/configsConf", _module);
|
|
128
136
|
pulumi.runtime.registerResourceModule("splunk", "index/dataUiViews", _module);
|
|
137
|
+
pulumi.runtime.registerResourceModule("splunk", "index/genericAcl", _module);
|
|
129
138
|
pulumi.runtime.registerResourceModule("splunk", "index/globalHttpEventCollector", _module);
|
|
130
139
|
pulumi.runtime.registerResourceModule("splunk", "index/indexes", _module);
|
|
131
140
|
pulumi.runtime.registerResourceModule("splunk", "index/inputsHttpEventCollector", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/splunk",
|
|
3
|
-
"version": "v1.1.
|
|
3
|
+
"version": "v1.1.3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing splunk cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource splunk v1.1.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource splunk v1.1.3"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0-alpha.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/splunk",
|
|
3
|
-
"version": "v1.1.
|
|
3
|
+
"version": "v1.1.3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing splunk cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource splunk v1.1.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource splunk v1.1.3"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0-alpha.0"
|
package/types/input.d.ts
CHANGED
|
@@ -38,6 +38,19 @@ export interface DataUiViewsAcl {
|
|
|
38
38
|
sharing?: pulumi.Input<string>;
|
|
39
39
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
40
40
|
}
|
|
41
|
+
export interface GenericAclAcl {
|
|
42
|
+
app?: pulumi.Input<string>;
|
|
43
|
+
canChangePerms?: pulumi.Input<boolean>;
|
|
44
|
+
canShareApp?: pulumi.Input<boolean>;
|
|
45
|
+
canShareGlobal?: pulumi.Input<boolean>;
|
|
46
|
+
canShareUser?: pulumi.Input<boolean>;
|
|
47
|
+
canWrite?: pulumi.Input<boolean>;
|
|
48
|
+
owner?: pulumi.Input<string>;
|
|
49
|
+
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
50
|
+
removable?: pulumi.Input<boolean>;
|
|
51
|
+
sharing?: pulumi.Input<string>;
|
|
52
|
+
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
53
|
+
}
|
|
41
54
|
export interface IndexesAcl {
|
|
42
55
|
app?: pulumi.Input<string>;
|
|
43
56
|
canChangePerms?: pulumi.Input<boolean>;
|
package/types/output.d.ts
CHANGED
|
@@ -37,6 +37,19 @@ export interface DataUiViewsAcl {
|
|
|
37
37
|
sharing: string;
|
|
38
38
|
writes: string[];
|
|
39
39
|
}
|
|
40
|
+
export interface GenericAclAcl {
|
|
41
|
+
app: string;
|
|
42
|
+
canChangePerms: boolean;
|
|
43
|
+
canShareApp: boolean;
|
|
44
|
+
canShareGlobal: boolean;
|
|
45
|
+
canShareUser: boolean;
|
|
46
|
+
canWrite: boolean;
|
|
47
|
+
owner: string;
|
|
48
|
+
reads: string[];
|
|
49
|
+
removable: boolean;
|
|
50
|
+
sharing: string;
|
|
51
|
+
writes: string[];
|
|
52
|
+
}
|
|
40
53
|
export interface IndexesAcl {
|
|
41
54
|
app: string;
|
|
42
55
|
canChangePerms: boolean;
|