1. Packages
  2. Splunk Provider
  3. API Docs
  4. SavedEventTypes
Viewing docs for Splunk v1.3.0
published on Tuesday, Mar 24, 2026 by Pulumi
splunk logo
Viewing docs for Splunk v1.3.0
published on Tuesday, Mar 24, 2026 by Pulumi

    # Resource: splunk.SavedEventTypes

    Create and manage saved event types (knowledge objects).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as splunk from "@pulumi/splunk";
    
    const test = new splunk.SavedEventTypes("test", {
        name: "test",
        description: "Test New event description",
        disabled: false,
        priority: 1,
        search: "index=main",
        color: "et_blue",
        tags: ["tag"],
        acl: {
            owner: "admin",
            sharing: "app",
            app: "launcher",
        },
    });
    
    import pulumi
    import pulumi_splunk as splunk
    
    test = splunk.SavedEventTypes("test",
        name="test",
        description="Test New event description",
        disabled=False,
        priority=1,
        search="index=main",
        color="et_blue",
        tags=["tag"],
        acl={
            "owner": "admin",
            "sharing": "app",
            "app": "launcher",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-splunk/sdk/go/splunk"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := splunk.NewSavedEventTypes(ctx, "test", &splunk.SavedEventTypesArgs{
    			Name:        pulumi.String("test"),
    			Description: pulumi.String("Test New event description"),
    			Disabled:    pulumi.Bool(false),
    			Priority:    pulumi.Int(1),
    			Search:      pulumi.String("index=main"),
    			Color:       pulumi.String("et_blue"),
    			Tags: pulumi.StringArray{
    				pulumi.String("tag"),
    			},
    			Acl: &splunk.SavedEventTypesAclArgs{
    				Owner:   pulumi.String("admin"),
    				Sharing: pulumi.String("app"),
    				App:     pulumi.String("launcher"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Splunk = Pulumi.Splunk;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Splunk.SavedEventTypes("test", new()
        {
            Name = "test",
            Description = "Test New event description",
            Disabled = false,
            Priority = 1,
            Search = "index=main",
            Color = "et_blue",
            Tags = new[]
            {
                "tag",
            },
            Acl = new Splunk.Inputs.SavedEventTypesAclArgs
            {
                Owner = "admin",
                Sharing = "app",
                App = "launcher",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.splunk.SavedEventTypes;
    import com.pulumi.splunk.SavedEventTypesArgs;
    import com.pulumi.splunk.inputs.SavedEventTypesAclArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var test = new SavedEventTypes("test", SavedEventTypesArgs.builder()
                .name("test")
                .description("Test New event description")
                .disabled(false)
                .priority(1)
                .search("index=main")
                .color("et_blue")
                .tags("tag")
                .acl(SavedEventTypesAclArgs.builder()
                    .owner("admin")
                    .sharing("app")
                    .app("launcher")
                    .build())
                .build());
    
        }
    }
    
    resources:
      test:
        type: splunk:SavedEventTypes
        properties:
          name: test
          description: Test New event description
          disabled: false
          priority: 1
          search: index=main
          color: et_blue
          tags:
            - tag
          acl:
            owner: admin
            sharing: app
            app: launcher
    

    Create SavedEventTypes Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SavedEventTypes(name: string, args: SavedEventTypesArgs, opts?: CustomResourceOptions);
    @overload
    def SavedEventTypes(resource_name: str,
                        args: SavedEventTypesArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def SavedEventTypes(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        name: Optional[str] = None,
                        search: Optional[str] = None,
                        acl: Optional[SavedEventTypesAclArgs] = None,
                        color: Optional[str] = None,
                        description: Optional[str] = None,
                        disabled: Optional[bool] = None,
                        priority: Optional[int] = None,
                        tags: Optional[Sequence[str]] = None)
    func NewSavedEventTypes(ctx *Context, name string, args SavedEventTypesArgs, opts ...ResourceOption) (*SavedEventTypes, error)
    public SavedEventTypes(string name, SavedEventTypesArgs args, CustomResourceOptions? opts = null)
    public SavedEventTypes(String name, SavedEventTypesArgs args)
    public SavedEventTypes(String name, SavedEventTypesArgs args, CustomResourceOptions options)
    
    type: splunk:SavedEventTypes
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SavedEventTypesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SavedEventTypesArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SavedEventTypesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SavedEventTypesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SavedEventTypesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var savedEventTypesResource = new Splunk.Index.SavedEventTypes("savedEventTypesResource", new()
    {
        Name = "string",
        Search = "string",
        Acl = new Splunk.Inputs.SavedEventTypesAclArgs
        {
            App = "string",
            CanChangePerms = false,
            CanShareApp = false,
            CanShareGlobal = false,
            CanShareUser = false,
            CanWrite = false,
            Owner = "string",
            Reads = new[]
            {
                "string",
            },
            Removable = false,
            Sharing = "string",
            Writes = new[]
            {
                "string",
            },
        },
        Color = "string",
        Description = "string",
        Disabled = false,
        Priority = 0,
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := splunk.NewSavedEventTypes(ctx, "savedEventTypesResource", &splunk.SavedEventTypesArgs{
    	Name:   pulumi.String("string"),
    	Search: pulumi.String("string"),
    	Acl: &splunk.SavedEventTypesAclArgs{
    		App:            pulumi.String("string"),
    		CanChangePerms: pulumi.Bool(false),
    		CanShareApp:    pulumi.Bool(false),
    		CanShareGlobal: pulumi.Bool(false),
    		CanShareUser:   pulumi.Bool(false),
    		CanWrite:       pulumi.Bool(false),
    		Owner:          pulumi.String("string"),
    		Reads: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Removable: pulumi.Bool(false),
    		Sharing:   pulumi.String("string"),
    		Writes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Color:       pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Disabled:    pulumi.Bool(false),
    	Priority:    pulumi.Int(0),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var savedEventTypesResource = new SavedEventTypes("savedEventTypesResource", SavedEventTypesArgs.builder()
        .name("string")
        .search("string")
        .acl(SavedEventTypesAclArgs.builder()
            .app("string")
            .canChangePerms(false)
            .canShareApp(false)
            .canShareGlobal(false)
            .canShareUser(false)
            .canWrite(false)
            .owner("string")
            .reads("string")
            .removable(false)
            .sharing("string")
            .writes("string")
            .build())
        .color("string")
        .description("string")
        .disabled(false)
        .priority(0)
        .tags("string")
        .build());
    
    saved_event_types_resource = splunk.SavedEventTypes("savedEventTypesResource",
        name="string",
        search="string",
        acl={
            "app": "string",
            "can_change_perms": False,
            "can_share_app": False,
            "can_share_global": False,
            "can_share_user": False,
            "can_write": False,
            "owner": "string",
            "reads": ["string"],
            "removable": False,
            "sharing": "string",
            "writes": ["string"],
        },
        color="string",
        description="string",
        disabled=False,
        priority=0,
        tags=["string"])
    
    const savedEventTypesResource = new splunk.SavedEventTypes("savedEventTypesResource", {
        name: "string",
        search: "string",
        acl: {
            app: "string",
            canChangePerms: false,
            canShareApp: false,
            canShareGlobal: false,
            canShareUser: false,
            canWrite: false,
            owner: "string",
            reads: ["string"],
            removable: false,
            sharing: "string",
            writes: ["string"],
        },
        color: "string",
        description: "string",
        disabled: false,
        priority: 0,
        tags: ["string"],
    });
    
    type: splunk:SavedEventTypes
    properties:
        acl:
            app: string
            canChangePerms: false
            canShareApp: false
            canShareGlobal: false
            canShareUser: false
            canWrite: false
            owner: string
            reads:
                - string
            removable: false
            sharing: string
            writes:
                - string
        color: string
        description: string
        disabled: false
        name: string
        priority: 0
        search: string
        tags:
            - string
    

    SavedEventTypes Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SavedEventTypes resource accepts the following input properties:

    Name string
    A name for the event type.
    Search string
    Event type search string.
    Acl SavedEventTypesAcl
    The app/user context that is the namespace for the resource
    Color string
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    Description string
    Human-readable description of this event type.
    Disabled bool
    If True, disables the event type.
    Priority int
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    Tags List<string>
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    Name string
    A name for the event type.
    Search string
    Event type search string.
    Acl SavedEventTypesAclArgs
    The app/user context that is the namespace for the resource
    Color string
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    Description string
    Human-readable description of this event type.
    Disabled bool
    If True, disables the event type.
    Priority int
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    Tags []string
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    name String
    A name for the event type.
    search String
    Event type search string.
    acl SavedEventTypesAcl
    The app/user context that is the namespace for the resource
    color String
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description String
    Human-readable description of this event type.
    disabled Boolean
    If True, disables the event type.
    priority Integer
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    tags List<String>
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    name string
    A name for the event type.
    search string
    Event type search string.
    acl SavedEventTypesAcl
    The app/user context that is the namespace for the resource
    color string
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description string
    Human-readable description of this event type.
    disabled boolean
    If True, disables the event type.
    priority number
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    tags string[]
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    name str
    A name for the event type.
    search str
    Event type search string.
    acl SavedEventTypesAclArgs
    The app/user context that is the namespace for the resource
    color str
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description str
    Human-readable description of this event type.
    disabled bool
    If True, disables the event type.
    priority int
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    tags Sequence[str]
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    name String
    A name for the event type.
    search String
    Event type search string.
    acl Property Map
    The app/user context that is the namespace for the resource
    color String
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description String
    Human-readable description of this event type.
    disabled Boolean
    If True, disables the event type.
    priority Number
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    tags List<String>
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SavedEventTypes resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SavedEventTypes Resource

    Get an existing SavedEventTypes resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SavedEventTypesState, opts?: CustomResourceOptions): SavedEventTypes
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acl: Optional[SavedEventTypesAclArgs] = None,
            color: Optional[str] = None,
            description: Optional[str] = None,
            disabled: Optional[bool] = None,
            name: Optional[str] = None,
            priority: Optional[int] = None,
            search: Optional[str] = None,
            tags: Optional[Sequence[str]] = None) -> SavedEventTypes
    func GetSavedEventTypes(ctx *Context, name string, id IDInput, state *SavedEventTypesState, opts ...ResourceOption) (*SavedEventTypes, error)
    public static SavedEventTypes Get(string name, Input<string> id, SavedEventTypesState? state, CustomResourceOptions? opts = null)
    public static SavedEventTypes get(String name, Output<String> id, SavedEventTypesState state, CustomResourceOptions options)
    resources:  _:    type: splunk:SavedEventTypes    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Acl SavedEventTypesAcl
    The app/user context that is the namespace for the resource
    Color string
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    Description string
    Human-readable description of this event type.
    Disabled bool
    If True, disables the event type.
    Name string
    A name for the event type.
    Priority int
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    Search string
    Event type search string.
    Tags List<string>
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    Acl SavedEventTypesAclArgs
    The app/user context that is the namespace for the resource
    Color string
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    Description string
    Human-readable description of this event type.
    Disabled bool
    If True, disables the event type.
    Name string
    A name for the event type.
    Priority int
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    Search string
    Event type search string.
    Tags []string
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    acl SavedEventTypesAcl
    The app/user context that is the namespace for the resource
    color String
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description String
    Human-readable description of this event type.
    disabled Boolean
    If True, disables the event type.
    name String
    A name for the event type.
    priority Integer
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    search String
    Event type search string.
    tags List<String>
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    acl SavedEventTypesAcl
    The app/user context that is the namespace for the resource
    color string
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description string
    Human-readable description of this event type.
    disabled boolean
    If True, disables the event type.
    name string
    A name for the event type.
    priority number
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    search string
    Event type search string.
    tags string[]
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    acl SavedEventTypesAclArgs
    The app/user context that is the namespace for the resource
    color str
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description str
    Human-readable description of this event type.
    disabled bool
    If True, disables the event type.
    name str
    A name for the event type.
    priority int
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    search str
    Event type search string.
    tags Sequence[str]
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.
    acl Property Map
    The app/user context that is the namespace for the resource
    color String
    Color for this event type. The supported colors are: none, et_blue, et_green, et_magenta, et_orange, et_purple, et_red, et_sky, et_teal, et_yellow.
    description String
    Human-readable description of this event type.
    disabled Boolean
    If True, disables the event type.
    name String
    A name for the event type.
    priority Number
    Specify an integer from 1 to 10 for the value used to determine the order in which the matching event types of an event are displayed. 1 is the highest priority.
    search String
    Event type search string.
    tags List<String>
    [Deprecated] Use tags.conf.spec file to assign tags to groups of events with related field values.

    Supporting Types

    SavedEventTypesAcl, SavedEventTypesAclArgs

    App string
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    CanChangePerms bool
    Indicates if the active user can change permissions for this object. Defaults to true.
    CanShareApp bool
    Indicates if the active user can change sharing to app level. Defaults to true.
    CanShareGlobal bool
    Indicates if the active user can change sharing to system level. Defaults to true.
    CanShareUser bool
    Indicates if the active user can change sharing to user level. Defaults to true.
    CanWrite bool
    Indicates if the active user can edit this object. Defaults to true.
    Owner string
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    Reads List<string>
    Properties that indicate resource read permissions.
    Removable bool
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    Sharing string
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    Writes List<string>
    Properties that indicate resource write permissions.
    App string
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    CanChangePerms bool
    Indicates if the active user can change permissions for this object. Defaults to true.
    CanShareApp bool
    Indicates if the active user can change sharing to app level. Defaults to true.
    CanShareGlobal bool
    Indicates if the active user can change sharing to system level. Defaults to true.
    CanShareUser bool
    Indicates if the active user can change sharing to user level. Defaults to true.
    CanWrite bool
    Indicates if the active user can edit this object. Defaults to true.
    Owner string
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    Reads []string
    Properties that indicate resource read permissions.
    Removable bool
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    Sharing string
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    Writes []string
    Properties that indicate resource write permissions.
    app String
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    canChangePerms Boolean
    Indicates if the active user can change permissions for this object. Defaults to true.
    canShareApp Boolean
    Indicates if the active user can change sharing to app level. Defaults to true.
    canShareGlobal Boolean
    Indicates if the active user can change sharing to system level. Defaults to true.
    canShareUser Boolean
    Indicates if the active user can change sharing to user level. Defaults to true.
    canWrite Boolean
    Indicates if the active user can edit this object. Defaults to true.
    owner String
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads List<String>
    Properties that indicate resource read permissions.
    removable Boolean
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing String
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes List<String>
    Properties that indicate resource write permissions.
    app string
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    canChangePerms boolean
    Indicates if the active user can change permissions for this object. Defaults to true.
    canShareApp boolean
    Indicates if the active user can change sharing to app level. Defaults to true.
    canShareGlobal boolean
    Indicates if the active user can change sharing to system level. Defaults to true.
    canShareUser boolean
    Indicates if the active user can change sharing to user level. Defaults to true.
    canWrite boolean
    Indicates if the active user can edit this object. Defaults to true.
    owner string
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads string[]
    Properties that indicate resource read permissions.
    removable boolean
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing string
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes string[]
    Properties that indicate resource write permissions.
    app str
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    can_change_perms bool
    Indicates if the active user can change permissions for this object. Defaults to true.
    can_share_app bool
    Indicates if the active user can change sharing to app level. Defaults to true.
    can_share_global bool
    Indicates if the active user can change sharing to system level. Defaults to true.
    can_share_user bool
    Indicates if the active user can change sharing to user level. Defaults to true.
    can_write bool
    Indicates if the active user can edit this object. Defaults to true.
    owner str
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads Sequence[str]
    Properties that indicate resource read permissions.
    removable bool
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing str
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes Sequence[str]
    Properties that indicate resource write permissions.
    app String
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    canChangePerms Boolean
    Indicates if the active user can change permissions for this object. Defaults to true.
    canShareApp Boolean
    Indicates if the active user can change sharing to app level. Defaults to true.
    canShareGlobal Boolean
    Indicates if the active user can change sharing to system level. Defaults to true.
    canShareUser Boolean
    Indicates if the active user can change sharing to user level. Defaults to true.
    canWrite Boolean
    Indicates if the active user can edit this object. Defaults to true.
    owner String
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads List<String>
    Properties that indicate resource read permissions.
    removable Boolean
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing String
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes List<String>
    Properties that indicate resource write permissions.

    Package Details

    Repository
    Splunk pulumi/pulumi-splunk
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the splunk Terraform Provider.
    splunk logo
    Viewing docs for Splunk v1.3.0
    published on Tuesday, Mar 24, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.