1. Packages
  2. Cyral Provider
  3. API Docs
  4. IntegrationSplunk
cyral 4.16.3 published on Monday, Apr 14, 2025 by cyralinc

cyral.IntegrationSplunk

Explore with Pulumi AI

cyral logo
cyral 4.16.3 published on Monday, Apr 14, 2025 by cyralinc

    DEPRECATED Use resource cyral.IntegrationLogging instead.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cyral from "@pulumi/cyral";
    
    const someResourceName = new cyral.IntegrationSplunk("someResourceName", {
        accessToken: "",
        host: "",
        index: "",
        port: 0,
        useTls: true,
    });
    
    import pulumi
    import pulumi_cyral as cyral
    
    some_resource_name = cyral.IntegrationSplunk("someResourceName",
        access_token="",
        host="",
        index="",
        port=0,
        use_tls=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/cyral/v4/cyral"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cyral.NewIntegrationSplunk(ctx, "someResourceName", &cyral.IntegrationSplunkArgs{
    			AccessToken: pulumi.String(""),
    			Host:        pulumi.String(""),
    			Index:       pulumi.String(""),
    			Port:        pulumi.Float64(0),
    			UseTls:      pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cyral = Pulumi.Cyral;
    
    return await Deployment.RunAsync(() => 
    {
        var someResourceName = new Cyral.IntegrationSplunk("someResourceName", new()
        {
            AccessToken = "",
            Host = "",
            Index = "",
            Port = 0,
            UseTls = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cyral.IntegrationSplunk;
    import com.pulumi.cyral.IntegrationSplunkArgs;
    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 someResourceName = new IntegrationSplunk("someResourceName", IntegrationSplunkArgs.builder()
                .accessToken("")
                .host("")
                .index("")
                .port(0)
                .useTls(true)
                .build());
    
        }
    }
    
    resources:
      someResourceName:
        type: cyral:IntegrationSplunk
        properties:
          accessToken: ""
          host: ""
          index: ""
          port: 0
          useTls: true
    

    Create IntegrationSplunk Resource

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

    Constructor syntax

    new IntegrationSplunk(name: string, args: IntegrationSplunkArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationSplunk(resource_name: str,
                          args: IntegrationSplunkArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationSplunk(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          access_token: Optional[str] = None,
                          host: Optional[str] = None,
                          index: Optional[str] = None,
                          port: Optional[float] = None,
                          use_tls: Optional[bool] = None,
                          name: Optional[str] = None)
    func NewIntegrationSplunk(ctx *Context, name string, args IntegrationSplunkArgs, opts ...ResourceOption) (*IntegrationSplunk, error)
    public IntegrationSplunk(string name, IntegrationSplunkArgs args, CustomResourceOptions? opts = null)
    public IntegrationSplunk(String name, IntegrationSplunkArgs args)
    public IntegrationSplunk(String name, IntegrationSplunkArgs args, CustomResourceOptions options)
    
    type: cyral:IntegrationSplunk
    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 IntegrationSplunkArgs
    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 IntegrationSplunkArgs
    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 IntegrationSplunkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationSplunkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationSplunkArgs
    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 integrationSplunkResource = new Cyral.IntegrationSplunk("integrationSplunkResource", new()
    {
        AccessToken = "string",
        Host = "string",
        Index = "string",
        Port = 0,
        UseTls = false,
        Name = "string",
    });
    
    example, err := cyral.NewIntegrationSplunk(ctx, "integrationSplunkResource", &cyral.IntegrationSplunkArgs{
    	AccessToken: pulumi.String("string"),
    	Host:        pulumi.String("string"),
    	Index:       pulumi.String("string"),
    	Port:        pulumi.Float64(0),
    	UseTls:      pulumi.Bool(false),
    	Name:        pulumi.String("string"),
    })
    
    var integrationSplunkResource = new IntegrationSplunk("integrationSplunkResource", IntegrationSplunkArgs.builder()
        .accessToken("string")
        .host("string")
        .index("string")
        .port(0)
        .useTls(false)
        .name("string")
        .build());
    
    integration_splunk_resource = cyral.IntegrationSplunk("integrationSplunkResource",
        access_token="string",
        host="string",
        index="string",
        port=0,
        use_tls=False,
        name="string")
    
    const integrationSplunkResource = new cyral.IntegrationSplunk("integrationSplunkResource", {
        accessToken: "string",
        host: "string",
        index: "string",
        port: 0,
        useTls: false,
        name: "string",
    });
    
    type: cyral:IntegrationSplunk
    properties:
        accessToken: string
        host: string
        index: string
        name: string
        port: 0
        useTls: false
    

    IntegrationSplunk 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 IntegrationSplunk resource accepts the following input properties:

    AccessToken string
    Splunk access token.
    Host string
    Splunk host.
    Index string
    Splunk data index name.
    Port double
    Splunk host port.
    UseTls bool
    Should the communication with Splunk use TLS encryption?
    Name string
    Integration name that will be used internally in the control plane.
    AccessToken string
    Splunk access token.
    Host string
    Splunk host.
    Index string
    Splunk data index name.
    Port float64
    Splunk host port.
    UseTls bool
    Should the communication with Splunk use TLS encryption?
    Name string
    Integration name that will be used internally in the control plane.
    accessToken String
    Splunk access token.
    host String
    Splunk host.
    index String
    Splunk data index name.
    port Double
    Splunk host port.
    useTls Boolean
    Should the communication with Splunk use TLS encryption?
    name String
    Integration name that will be used internally in the control plane.
    accessToken string
    Splunk access token.
    host string
    Splunk host.
    index string
    Splunk data index name.
    port number
    Splunk host port.
    useTls boolean
    Should the communication with Splunk use TLS encryption?
    name string
    Integration name that will be used internally in the control plane.
    access_token str
    Splunk access token.
    host str
    Splunk host.
    index str
    Splunk data index name.
    port float
    Splunk host port.
    use_tls bool
    Should the communication with Splunk use TLS encryption?
    name str
    Integration name that will be used internally in the control plane.
    accessToken String
    Splunk access token.
    host String
    Splunk host.
    index String
    Splunk data index name.
    port Number
    Splunk host port.
    useTls Boolean
    Should the communication with Splunk use TLS encryption?
    name String
    Integration name that will be used internally in the control plane.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IntegrationSplunk 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 IntegrationSplunk Resource

    Get an existing IntegrationSplunk 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?: IntegrationSplunkState, opts?: CustomResourceOptions): IntegrationSplunk
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_token: Optional[str] = None,
            host: Optional[str] = None,
            index: Optional[str] = None,
            name: Optional[str] = None,
            port: Optional[float] = None,
            use_tls: Optional[bool] = None) -> IntegrationSplunk
    func GetIntegrationSplunk(ctx *Context, name string, id IDInput, state *IntegrationSplunkState, opts ...ResourceOption) (*IntegrationSplunk, error)
    public static IntegrationSplunk Get(string name, Input<string> id, IntegrationSplunkState? state, CustomResourceOptions? opts = null)
    public static IntegrationSplunk get(String name, Output<String> id, IntegrationSplunkState state, CustomResourceOptions options)
    resources:  _:    type: cyral:IntegrationSplunk    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:
    AccessToken string
    Splunk access token.
    Host string
    Splunk host.
    Index string
    Splunk data index name.
    Name string
    Integration name that will be used internally in the control plane.
    Port double
    Splunk host port.
    UseTls bool
    Should the communication with Splunk use TLS encryption?
    AccessToken string
    Splunk access token.
    Host string
    Splunk host.
    Index string
    Splunk data index name.
    Name string
    Integration name that will be used internally in the control plane.
    Port float64
    Splunk host port.
    UseTls bool
    Should the communication with Splunk use TLS encryption?
    accessToken String
    Splunk access token.
    host String
    Splunk host.
    index String
    Splunk data index name.
    name String
    Integration name that will be used internally in the control plane.
    port Double
    Splunk host port.
    useTls Boolean
    Should the communication with Splunk use TLS encryption?
    accessToken string
    Splunk access token.
    host string
    Splunk host.
    index string
    Splunk data index name.
    name string
    Integration name that will be used internally in the control plane.
    port number
    Splunk host port.
    useTls boolean
    Should the communication with Splunk use TLS encryption?
    access_token str
    Splunk access token.
    host str
    Splunk host.
    index str
    Splunk data index name.
    name str
    Integration name that will be used internally in the control plane.
    port float
    Splunk host port.
    use_tls bool
    Should the communication with Splunk use TLS encryption?
    accessToken String
    Splunk access token.
    host String
    Splunk host.
    index String
    Splunk data index name.
    name String
    Integration name that will be used internally in the control plane.
    port Number
    Splunk host port.
    useTls Boolean
    Should the communication with Splunk use TLS encryption?

    Package Details

    Repository
    cyral cyralinc/terraform-provider-cyral
    License
    Notes
    This Pulumi package is based on the cyral Terraform Provider.
    cyral logo
    cyral 4.16.3 published on Monday, Apr 14, 2025 by cyralinc