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

cyral.IntegrationSumoLogic

Explore with Pulumi AI

DEPRECATED Use resource cyral.IntegrationLogging instead.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cyral from "@pulumi/cyral";

const someResourceName = new cyral.IntegrationSumoLogic("someResourceName", {address: ""});
Copy
import pulumi
import pulumi_cyral as cyral

some_resource_name = cyral.IntegrationSumoLogic("someResourceName", address="")
Copy
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.NewIntegrationSumoLogic(ctx, "someResourceName", &cyral.IntegrationSumoLogicArgs{
			Address: pulumi.String(""),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cyral = Pulumi.Cyral;

return await Deployment.RunAsync(() => 
{
    var someResourceName = new Cyral.IntegrationSumoLogic("someResourceName", new()
    {
        Address = "",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cyral.IntegrationSumoLogic;
import com.pulumi.cyral.IntegrationSumoLogicArgs;
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 IntegrationSumoLogic("someResourceName", IntegrationSumoLogicArgs.builder()
            .address("")
            .build());

    }
}
Copy
resources:
  someResourceName:
    type: cyral:IntegrationSumoLogic
    properties:
      address: ""
Copy

Create IntegrationSumoLogic Resource

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

Constructor syntax

new IntegrationSumoLogic(name: string, args: IntegrationSumoLogicArgs, opts?: CustomResourceOptions);
@overload
def IntegrationSumoLogic(resource_name: str,
                         args: IntegrationSumoLogicArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def IntegrationSumoLogic(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         address: Optional[str] = None,
                         name: Optional[str] = None)
func NewIntegrationSumoLogic(ctx *Context, name string, args IntegrationSumoLogicArgs, opts ...ResourceOption) (*IntegrationSumoLogic, error)
public IntegrationSumoLogic(string name, IntegrationSumoLogicArgs args, CustomResourceOptions? opts = null)
public IntegrationSumoLogic(String name, IntegrationSumoLogicArgs args)
public IntegrationSumoLogic(String name, IntegrationSumoLogicArgs args, CustomResourceOptions options)
type: cyral:IntegrationSumoLogic
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IntegrationSumoLogicArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IntegrationSumoLogicArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationSumoLogicArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationSumoLogicArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IntegrationSumoLogicArgs
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 integrationSumoLogicResource = new Cyral.IntegrationSumoLogic("integrationSumoLogicResource", new()
{
    Address = "string",
    Name = "string",
});
Copy
example, err := cyral.NewIntegrationSumoLogic(ctx, "integrationSumoLogicResource", &cyral.IntegrationSumoLogicArgs{
Address: pulumi.String("string"),
Name: pulumi.String("string"),
})
Copy
var integrationSumoLogicResource = new IntegrationSumoLogic("integrationSumoLogicResource", IntegrationSumoLogicArgs.builder()
    .address("string")
    .name("string")
    .build());
Copy
integration_sumo_logic_resource = cyral.IntegrationSumoLogic("integrationSumoLogicResource",
    address="string",
    name="string")
Copy
const integrationSumoLogicResource = new cyral.IntegrationSumoLogic("integrationSumoLogicResource", {
    address: "string",
    name: "string",
});
Copy
type: cyral:IntegrationSumoLogic
properties:
    address: string
    name: string
Copy

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

Address This property is required. string
Sumo Logic address.
Name string
Integration name that will be used internally in the control plane.
Address This property is required. string
Sumo Logic address.
Name string
Integration name that will be used internally in the control plane.
address This property is required. String
Sumo Logic address.
name String
Integration name that will be used internally in the control plane.
address This property is required. string
Sumo Logic address.
name string
Integration name that will be used internally in the control plane.
address This property is required. str
Sumo Logic address.
name str
Integration name that will be used internally in the control plane.
address This property is required. String
Sumo Logic address.
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 IntegrationSumoLogic 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 IntegrationSumoLogic Resource

Get an existing IntegrationSumoLogic 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?: IntegrationSumoLogicState, opts?: CustomResourceOptions): IntegrationSumoLogic
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address: Optional[str] = None,
        name: Optional[str] = None) -> IntegrationSumoLogic
func GetIntegrationSumoLogic(ctx *Context, name string, id IDInput, state *IntegrationSumoLogicState, opts ...ResourceOption) (*IntegrationSumoLogic, error)
public static IntegrationSumoLogic Get(string name, Input<string> id, IntegrationSumoLogicState? state, CustomResourceOptions? opts = null)
public static IntegrationSumoLogic get(String name, Output<String> id, IntegrationSumoLogicState state, CustomResourceOptions options)
resources:  _:    type: cyral:IntegrationSumoLogic    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Address string
Sumo Logic address.
Name string
Integration name that will be used internally in the control plane.
Address string
Sumo Logic address.
Name string
Integration name that will be used internally in the control plane.
address String
Sumo Logic address.
name String
Integration name that will be used internally in the control plane.
address string
Sumo Logic address.
name string
Integration name that will be used internally in the control plane.
address str
Sumo Logic address.
name str
Integration name that will be used internally in the control plane.
address String
Sumo Logic address.
name String
Integration name that will be used internally in the control plane.

Package Details

Repository
cyral cyralinc/terraform-provider-cyral
License
Notes
This Pulumi package is based on the cyral Terraform Provider.