1. Packages
  2. Sumologic Provider
  3. API Docs
  4. AzureEventHubLogSource
Sumo Logic v1.0.7 published on Friday, Apr 11, 2025 by Pulumi

sumologic.AzureEventHubLogSource

Explore with Pulumi AI

Provides a Sumologic Azure Event Hub Log Source.

IMPORTANT: The Azure Event Hub credentials are stored in plain-text in the state. This is a potential security issue.

Example Usage

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

const collector = new sumologic.Collector("collector", {
    name: "my-collector",
    description: "Just testing this",
});
const terraformAzureEventHubLogSource = new sumologic.AzureEventHubLogSource("terraform_azure_event_hub_log_source", {
    name: "Azure Event Hub Log Source",
    description: "My description",
    category: "azure/eventhub",
    contentType: "AzureEventHubLog",
    collectorId: collector.id,
    authentication: {
        type: "AzureEventHubAuthentication",
        sharedAccessPolicyName: "%s",
        sharedAccessPolicyKey: "%s",
    },
    path: {
        type: "AzureEventHubPath",
        namespace: "%s",
        eventHubName: "%s",
        consumerGroup: "%s",
        region: "%s",
    },
});
Copy
import pulumi
import pulumi_sumologic as sumologic

collector = sumologic.Collector("collector",
    name="my-collector",
    description="Just testing this")
terraform_azure_event_hub_log_source = sumologic.AzureEventHubLogSource("terraform_azure_event_hub_log_source",
    name="Azure Event Hub Log Source",
    description="My description",
    category="azure/eventhub",
    content_type="AzureEventHubLog",
    collector_id=collector.id,
    authentication={
        "type": "AzureEventHubAuthentication",
        "shared_access_policy_name": "%s",
        "shared_access_policy_key": "%s",
    },
    path={
        "type": "AzureEventHubPath",
        "namespace": "%s",
        "event_hub_name": "%s",
        "consumer_group": "%s",
        "region": "%s",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-sumologic/sdk/go/sumologic"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		collector, err := sumologic.NewCollector(ctx, "collector", &sumologic.CollectorArgs{
			Name:        pulumi.String("my-collector"),
			Description: pulumi.String("Just testing this"),
		})
		if err != nil {
			return err
		}
		_, err = sumologic.NewAzureEventHubLogSource(ctx, "terraform_azure_event_hub_log_source", &sumologic.AzureEventHubLogSourceArgs{
			Name:        pulumi.String("Azure Event Hub Log Source"),
			Description: pulumi.String("My description"),
			Category:    pulumi.String("azure/eventhub"),
			ContentType: pulumi.String("AzureEventHubLog"),
			CollectorId: collector.ID(),
			Authentication: &sumologic.AzureEventHubLogSourceAuthenticationArgs{
				Type:                   pulumi.String("AzureEventHubAuthentication"),
				SharedAccessPolicyName: pulumi.String("%s"),
				SharedAccessPolicyKey:  pulumi.String("%s"),
			},
			Path: &sumologic.AzureEventHubLogSourcePathArgs{
				Type:          pulumi.String("AzureEventHubPath"),
				Namespace:     pulumi.String("%s"),
				EventHubName:  pulumi.String("%s"),
				ConsumerGroup: pulumi.String("%s"),
				Region:        pulumi.String("%s"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using SumoLogic = Pulumi.SumoLogic;

return await Deployment.RunAsync(() => 
{
    var collector = new SumoLogic.Collector("collector", new()
    {
        Name = "my-collector",
        Description = "Just testing this",
    });

    var terraformAzureEventHubLogSource = new SumoLogic.AzureEventHubLogSource("terraform_azure_event_hub_log_source", new()
    {
        Name = "Azure Event Hub Log Source",
        Description = "My description",
        Category = "azure/eventhub",
        ContentType = "AzureEventHubLog",
        CollectorId = collector.Id,
        Authentication = new SumoLogic.Inputs.AzureEventHubLogSourceAuthenticationArgs
        {
            Type = "AzureEventHubAuthentication",
            SharedAccessPolicyName = "%s",
            SharedAccessPolicyKey = "%s",
        },
        Path = new SumoLogic.Inputs.AzureEventHubLogSourcePathArgs
        {
            Type = "AzureEventHubPath",
            Namespace = "%s",
            EventHubName = "%s",
            ConsumerGroup = "%s",
            Region = "%s",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sumologic.Collector;
import com.pulumi.sumologic.CollectorArgs;
import com.pulumi.sumologic.AzureEventHubLogSource;
import com.pulumi.sumologic.AzureEventHubLogSourceArgs;
import com.pulumi.sumologic.inputs.AzureEventHubLogSourceAuthenticationArgs;
import com.pulumi.sumologic.inputs.AzureEventHubLogSourcePathArgs;
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 collector = new Collector("collector", CollectorArgs.builder()
            .name("my-collector")
            .description("Just testing this")
            .build());

        var terraformAzureEventHubLogSource = new AzureEventHubLogSource("terraformAzureEventHubLogSource", AzureEventHubLogSourceArgs.builder()
            .name("Azure Event Hub Log Source")
            .description("My description")
            .category("azure/eventhub")
            .contentType("AzureEventHubLog")
            .collectorId(collector.id())
            .authentication(AzureEventHubLogSourceAuthenticationArgs.builder()
                .type("AzureEventHubAuthentication")
                .sharedAccessPolicyName("%s")
                .sharedAccessPolicyKey("%s")
                .build())
            .path(AzureEventHubLogSourcePathArgs.builder()
                .type("AzureEventHubPath")
                .namespace("%s")
                .eventHubName("%s")
                .consumerGroup("%s")
                .region("%s")
                .build())
            .build());

    }
}
Copy
resources:
  terraformAzureEventHubLogSource:
    type: sumologic:AzureEventHubLogSource
    name: terraform_azure_event_hub_log_source
    properties:
      name: Azure Event Hub Log Source
      description: My description
      category: azure/eventhub
      contentType: AzureEventHubLog
      collectorId: ${collector.id}
      authentication:
        type: AzureEventHubAuthentication
        sharedAccessPolicyName: '%s'
        sharedAccessPolicyKey: '%s'
      path:
        type: AzureEventHubPath
        namespace: '%s'
        eventHubName: '%s'
        consumerGroup: '%s'
        region: '%s'
  collector:
    type: sumologic:Collector
    properties:
      name: my-collector
      description: Just testing this
Copy

Create AzureEventHubLogSource Resource

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

Constructor syntax

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

@overload
def AzureEventHubLogSource(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           content_type: Optional[str] = None,
                           path: Optional[AzureEventHubLogSourcePathArgs] = None,
                           authentication: Optional[AzureEventHubLogSourceAuthenticationArgs] = None,
                           collector_id: Optional[int] = None,
                           filters: Optional[Sequence[AzureEventHubLogSourceFilterArgs]] = None,
                           host_name: Optional[str] = None,
                           cutoff_timestamp: Optional[int] = None,
                           default_date_formats: Optional[Sequence[AzureEventHubLogSourceDefaultDateFormatArgs]] = None,
                           description: Optional[str] = None,
                           fields: Optional[Mapping[str, str]] = None,
                           category: Optional[str] = None,
                           force_timezone: Optional[bool] = None,
                           hash_algorithm: Optional[str] = None,
                           cutoff_relative_time: Optional[str] = None,
                           manual_prefix_regexp: Optional[str] = None,
                           multiline_processing_enabled: Optional[bool] = None,
                           name: Optional[str] = None,
                           automatic_date_parsing: Optional[bool] = None,
                           paused: Optional[bool] = None,
                           scan_interval: Optional[int] = None,
                           timezone: Optional[str] = None,
                           use_autoline_matching: Optional[bool] = None)
func NewAzureEventHubLogSource(ctx *Context, name string, args AzureEventHubLogSourceArgs, opts ...ResourceOption) (*AzureEventHubLogSource, error)
public AzureEventHubLogSource(string name, AzureEventHubLogSourceArgs args, CustomResourceOptions? opts = null)
public AzureEventHubLogSource(String name, AzureEventHubLogSourceArgs args)
public AzureEventHubLogSource(String name, AzureEventHubLogSourceArgs args, CustomResourceOptions options)
type: sumologic:AzureEventHubLogSource
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. AzureEventHubLogSourceArgs
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. AzureEventHubLogSourceArgs
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. AzureEventHubLogSourceArgs
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. AzureEventHubLogSourceArgs
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. AzureEventHubLogSourceArgs
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 azureEventHubLogSourceResource = new SumoLogic.AzureEventHubLogSource("azureEventHubLogSourceResource", new()
{
    ContentType = "string",
    Path = new SumoLogic.Inputs.AzureEventHubLogSourcePathArgs
    {
        Type = "string",
        LimitToServices = new[]
        {
            "string",
        },
        Region = "string",
        CustomServices = new[]
        {
            new SumoLogic.Inputs.AzureEventHubLogSourcePathCustomServiceArgs
            {
                Prefixes = new[]
                {
                    "string",
                },
                ServiceName = "string",
            },
        },
        Environment = "string",
        EventHubName = "string",
        LimitToNamespaces = new[]
        {
            "string",
        },
        ConsumerGroup = "string",
        Namespace = "string",
        LimitToRegions = new[]
        {
            "string",
        },
        PathExpression = "string",
        AzureTagFilters = new[]
        {
            new SumoLogic.Inputs.AzureEventHubLogSourcePathAzureTagFilterArgs
            {
                Type = "string",
                Namespace = "string",
                Tags = new[]
                {
                    new SumoLogic.Inputs.AzureEventHubLogSourcePathAzureTagFilterTagArgs
                    {
                        Name = "string",
                        Values = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        SnsTopicOrSubscriptionArns = new[]
        {
            new SumoLogic.Inputs.AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs
            {
                Arn = "string",
                IsSuccess = false,
            },
        },
        TagFilters = new[]
        {
            new SumoLogic.Inputs.AzureEventHubLogSourcePathTagFilterArgs
            {
                Namespace = "string",
                Tags = new[]
                {
                    "string",
                },
                Type = "string",
            },
        },
        BucketName = "string",
        UseVersionedApi = false,
    },
    Authentication = new SumoLogic.Inputs.AzureEventHubLogSourceAuthenticationArgs
    {
        Type = "string",
        PrivateKeyId = "string",
        Region = "string",
        ClientEmail = "string",
        ClientId = "string",
        ClientSecret = "string",
        ClientX509CertUrl = "string",
        PrivateKey = "string",
        AccessKey = "string",
        AuthUri = "string",
        RoleArn = "string",
        ProjectId = "string",
        SecretKey = "string",
        SharedAccessPolicyKey = "string",
        SharedAccessPolicyName = "string",
        TenantId = "string",
        TokenUri = "string",
        AuthProviderX509CertUrl = "string",
    },
    CollectorId = 0,
    Filters = new[]
    {
        new SumoLogic.Inputs.AzureEventHubLogSourceFilterArgs
        {
            FilterType = "string",
            Name = "string",
            Regexp = "string",
            Mask = "string",
        },
    },
    HostName = "string",
    CutoffTimestamp = 0,
    DefaultDateFormats = new[]
    {
        new SumoLogic.Inputs.AzureEventHubLogSourceDefaultDateFormatArgs
        {
            Format = "string",
            Locator = "string",
        },
    },
    Description = "string",
    Fields = 
    {
        { "string", "string" },
    },
    Category = "string",
    ForceTimezone = false,
    HashAlgorithm = "string",
    CutoffRelativeTime = "string",
    ManualPrefixRegexp = "string",
    MultilineProcessingEnabled = false,
    Name = "string",
    AutomaticDateParsing = false,
    Paused = false,
    ScanInterval = 0,
    Timezone = "string",
    UseAutolineMatching = false,
});
Copy
example, err := sumologic.NewAzureEventHubLogSource(ctx, "azureEventHubLogSourceResource", &sumologic.AzureEventHubLogSourceArgs{
	ContentType: pulumi.String("string"),
	Path: &sumologic.AzureEventHubLogSourcePathArgs{
		Type: pulumi.String("string"),
		LimitToServices: pulumi.StringArray{
			pulumi.String("string"),
		},
		Region: pulumi.String("string"),
		CustomServices: sumologic.AzureEventHubLogSourcePathCustomServiceArray{
			&sumologic.AzureEventHubLogSourcePathCustomServiceArgs{
				Prefixes: pulumi.StringArray{
					pulumi.String("string"),
				},
				ServiceName: pulumi.String("string"),
			},
		},
		Environment:  pulumi.String("string"),
		EventHubName: pulumi.String("string"),
		LimitToNamespaces: pulumi.StringArray{
			pulumi.String("string"),
		},
		ConsumerGroup: pulumi.String("string"),
		Namespace:     pulumi.String("string"),
		LimitToRegions: pulumi.StringArray{
			pulumi.String("string"),
		},
		PathExpression: pulumi.String("string"),
		AzureTagFilters: sumologic.AzureEventHubLogSourcePathAzureTagFilterArray{
			&sumologic.AzureEventHubLogSourcePathAzureTagFilterArgs{
				Type:      pulumi.String("string"),
				Namespace: pulumi.String("string"),
				Tags: sumologic.AzureEventHubLogSourcePathAzureTagFilterTagArray{
					&sumologic.AzureEventHubLogSourcePathAzureTagFilterTagArgs{
						Name: pulumi.String("string"),
						Values: pulumi.StringArray{
							pulumi.String("string"),
						},
					},
				},
			},
		},
		SnsTopicOrSubscriptionArns: sumologic.AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArray{
			&sumologic.AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs{
				Arn:       pulumi.String("string"),
				IsSuccess: pulumi.Bool(false),
			},
		},
		TagFilters: sumologic.AzureEventHubLogSourcePathTagFilterArray{
			&sumologic.AzureEventHubLogSourcePathTagFilterArgs{
				Namespace: pulumi.String("string"),
				Tags: pulumi.StringArray{
					pulumi.String("string"),
				},
				Type: pulumi.String("string"),
			},
		},
		BucketName:      pulumi.String("string"),
		UseVersionedApi: pulumi.Bool(false),
	},
	Authentication: &sumologic.AzureEventHubLogSourceAuthenticationArgs{
		Type:                    pulumi.String("string"),
		PrivateKeyId:            pulumi.String("string"),
		Region:                  pulumi.String("string"),
		ClientEmail:             pulumi.String("string"),
		ClientId:                pulumi.String("string"),
		ClientSecret:            pulumi.String("string"),
		ClientX509CertUrl:       pulumi.String("string"),
		PrivateKey:              pulumi.String("string"),
		AccessKey:               pulumi.String("string"),
		AuthUri:                 pulumi.String("string"),
		RoleArn:                 pulumi.String("string"),
		ProjectId:               pulumi.String("string"),
		SecretKey:               pulumi.String("string"),
		SharedAccessPolicyKey:   pulumi.String("string"),
		SharedAccessPolicyName:  pulumi.String("string"),
		TenantId:                pulumi.String("string"),
		TokenUri:                pulumi.String("string"),
		AuthProviderX509CertUrl: pulumi.String("string"),
	},
	CollectorId: pulumi.Int(0),
	Filters: sumologic.AzureEventHubLogSourceFilterArray{
		&sumologic.AzureEventHubLogSourceFilterArgs{
			FilterType: pulumi.String("string"),
			Name:       pulumi.String("string"),
			Regexp:     pulumi.String("string"),
			Mask:       pulumi.String("string"),
		},
	},
	HostName:        pulumi.String("string"),
	CutoffTimestamp: pulumi.Int(0),
	DefaultDateFormats: sumologic.AzureEventHubLogSourceDefaultDateFormatArray{
		&sumologic.AzureEventHubLogSourceDefaultDateFormatArgs{
			Format:  pulumi.String("string"),
			Locator: pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	Fields: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Category:                   pulumi.String("string"),
	ForceTimezone:              pulumi.Bool(false),
	HashAlgorithm:              pulumi.String("string"),
	CutoffRelativeTime:         pulumi.String("string"),
	ManualPrefixRegexp:         pulumi.String("string"),
	MultilineProcessingEnabled: pulumi.Bool(false),
	Name:                       pulumi.String("string"),
	AutomaticDateParsing:       pulumi.Bool(false),
	Paused:                     pulumi.Bool(false),
	ScanInterval:               pulumi.Int(0),
	Timezone:                   pulumi.String("string"),
	UseAutolineMatching:        pulumi.Bool(false),
})
Copy
var azureEventHubLogSourceResource = new AzureEventHubLogSource("azureEventHubLogSourceResource", AzureEventHubLogSourceArgs.builder()
    .contentType("string")
    .path(AzureEventHubLogSourcePathArgs.builder()
        .type("string")
        .limitToServices("string")
        .region("string")
        .customServices(AzureEventHubLogSourcePathCustomServiceArgs.builder()
            .prefixes("string")
            .serviceName("string")
            .build())
        .environment("string")
        .eventHubName("string")
        .limitToNamespaces("string")
        .consumerGroup("string")
        .namespace("string")
        .limitToRegions("string")
        .pathExpression("string")
        .azureTagFilters(AzureEventHubLogSourcePathAzureTagFilterArgs.builder()
            .type("string")
            .namespace("string")
            .tags(AzureEventHubLogSourcePathAzureTagFilterTagArgs.builder()
                .name("string")
                .values("string")
                .build())
            .build())
        .snsTopicOrSubscriptionArns(AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs.builder()
            .arn("string")
            .isSuccess(false)
            .build())
        .tagFilters(AzureEventHubLogSourcePathTagFilterArgs.builder()
            .namespace("string")
            .tags("string")
            .type("string")
            .build())
        .bucketName("string")
        .useVersionedApi(false)
        .build())
    .authentication(AzureEventHubLogSourceAuthenticationArgs.builder()
        .type("string")
        .privateKeyId("string")
        .region("string")
        .clientEmail("string")
        .clientId("string")
        .clientSecret("string")
        .clientX509CertUrl("string")
        .privateKey("string")
        .accessKey("string")
        .authUri("string")
        .roleArn("string")
        .projectId("string")
        .secretKey("string")
        .sharedAccessPolicyKey("string")
        .sharedAccessPolicyName("string")
        .tenantId("string")
        .tokenUri("string")
        .authProviderX509CertUrl("string")
        .build())
    .collectorId(0)
    .filters(AzureEventHubLogSourceFilterArgs.builder()
        .filterType("string")
        .name("string")
        .regexp("string")
        .mask("string")
        .build())
    .hostName("string")
    .cutoffTimestamp(0)
    .defaultDateFormats(AzureEventHubLogSourceDefaultDateFormatArgs.builder()
        .format("string")
        .locator("string")
        .build())
    .description("string")
    .fields(Map.of("string", "string"))
    .category("string")
    .forceTimezone(false)
    .hashAlgorithm("string")
    .cutoffRelativeTime("string")
    .manualPrefixRegexp("string")
    .multilineProcessingEnabled(false)
    .name("string")
    .automaticDateParsing(false)
    .paused(false)
    .scanInterval(0)
    .timezone("string")
    .useAutolineMatching(false)
    .build());
Copy
azure_event_hub_log_source_resource = sumologic.AzureEventHubLogSource("azureEventHubLogSourceResource",
    content_type="string",
    path={
        "type": "string",
        "limit_to_services": ["string"],
        "region": "string",
        "custom_services": [{
            "prefixes": ["string"],
            "service_name": "string",
        }],
        "environment": "string",
        "event_hub_name": "string",
        "limit_to_namespaces": ["string"],
        "consumer_group": "string",
        "namespace": "string",
        "limit_to_regions": ["string"],
        "path_expression": "string",
        "azure_tag_filters": [{
            "type": "string",
            "namespace": "string",
            "tags": [{
                "name": "string",
                "values": ["string"],
            }],
        }],
        "sns_topic_or_subscription_arns": [{
            "arn": "string",
            "is_success": False,
        }],
        "tag_filters": [{
            "namespace": "string",
            "tags": ["string"],
            "type": "string",
        }],
        "bucket_name": "string",
        "use_versioned_api": False,
    },
    authentication={
        "type": "string",
        "private_key_id": "string",
        "region": "string",
        "client_email": "string",
        "client_id": "string",
        "client_secret": "string",
        "client_x509_cert_url": "string",
        "private_key": "string",
        "access_key": "string",
        "auth_uri": "string",
        "role_arn": "string",
        "project_id": "string",
        "secret_key": "string",
        "shared_access_policy_key": "string",
        "shared_access_policy_name": "string",
        "tenant_id": "string",
        "token_uri": "string",
        "auth_provider_x509_cert_url": "string",
    },
    collector_id=0,
    filters=[{
        "filter_type": "string",
        "name": "string",
        "regexp": "string",
        "mask": "string",
    }],
    host_name="string",
    cutoff_timestamp=0,
    default_date_formats=[{
        "format": "string",
        "locator": "string",
    }],
    description="string",
    fields={
        "string": "string",
    },
    category="string",
    force_timezone=False,
    hash_algorithm="string",
    cutoff_relative_time="string",
    manual_prefix_regexp="string",
    multiline_processing_enabled=False,
    name="string",
    automatic_date_parsing=False,
    paused=False,
    scan_interval=0,
    timezone="string",
    use_autoline_matching=False)
Copy
const azureEventHubLogSourceResource = new sumologic.AzureEventHubLogSource("azureEventHubLogSourceResource", {
    contentType: "string",
    path: {
        type: "string",
        limitToServices: ["string"],
        region: "string",
        customServices: [{
            prefixes: ["string"],
            serviceName: "string",
        }],
        environment: "string",
        eventHubName: "string",
        limitToNamespaces: ["string"],
        consumerGroup: "string",
        namespace: "string",
        limitToRegions: ["string"],
        pathExpression: "string",
        azureTagFilters: [{
            type: "string",
            namespace: "string",
            tags: [{
                name: "string",
                values: ["string"],
            }],
        }],
        snsTopicOrSubscriptionArns: [{
            arn: "string",
            isSuccess: false,
        }],
        tagFilters: [{
            namespace: "string",
            tags: ["string"],
            type: "string",
        }],
        bucketName: "string",
        useVersionedApi: false,
    },
    authentication: {
        type: "string",
        privateKeyId: "string",
        region: "string",
        clientEmail: "string",
        clientId: "string",
        clientSecret: "string",
        clientX509CertUrl: "string",
        privateKey: "string",
        accessKey: "string",
        authUri: "string",
        roleArn: "string",
        projectId: "string",
        secretKey: "string",
        sharedAccessPolicyKey: "string",
        sharedAccessPolicyName: "string",
        tenantId: "string",
        tokenUri: "string",
        authProviderX509CertUrl: "string",
    },
    collectorId: 0,
    filters: [{
        filterType: "string",
        name: "string",
        regexp: "string",
        mask: "string",
    }],
    hostName: "string",
    cutoffTimestamp: 0,
    defaultDateFormats: [{
        format: "string",
        locator: "string",
    }],
    description: "string",
    fields: {
        string: "string",
    },
    category: "string",
    forceTimezone: false,
    hashAlgorithm: "string",
    cutoffRelativeTime: "string",
    manualPrefixRegexp: "string",
    multilineProcessingEnabled: false,
    name: "string",
    automaticDateParsing: false,
    paused: false,
    scanInterval: 0,
    timezone: "string",
    useAutolineMatching: false,
});
Copy
type: sumologic:AzureEventHubLogSource
properties:
    authentication:
        accessKey: string
        authProviderX509CertUrl: string
        authUri: string
        clientEmail: string
        clientId: string
        clientSecret: string
        clientX509CertUrl: string
        privateKey: string
        privateKeyId: string
        projectId: string
        region: string
        roleArn: string
        secretKey: string
        sharedAccessPolicyKey: string
        sharedAccessPolicyName: string
        tenantId: string
        tokenUri: string
        type: string
    automaticDateParsing: false
    category: string
    collectorId: 0
    contentType: string
    cutoffRelativeTime: string
    cutoffTimestamp: 0
    defaultDateFormats:
        - format: string
          locator: string
    description: string
    fields:
        string: string
    filters:
        - filterType: string
          mask: string
          name: string
          regexp: string
    forceTimezone: false
    hashAlgorithm: string
    hostName: string
    manualPrefixRegexp: string
    multilineProcessingEnabled: false
    name: string
    path:
        azureTagFilters:
            - namespace: string
              tags:
                - name: string
                  values:
                    - string
              type: string
        bucketName: string
        consumerGroup: string
        customServices:
            - prefixes:
                - string
              serviceName: string
        environment: string
        eventHubName: string
        limitToNamespaces:
            - string
        limitToRegions:
            - string
        limitToServices:
            - string
        namespace: string
        pathExpression: string
        region: string
        snsTopicOrSubscriptionArns:
            - arn: string
              isSuccess: false
        tagFilters:
            - namespace: string
              tags:
                - string
              type: string
        type: string
        useVersionedApi: false
    paused: false
    scanInterval: 0
    timezone: string
    useAutolineMatching: false
Copy

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

Authentication
This property is required.
Changes to this property will trigger replacement.
Pulumi.SumoLogic.Inputs.AzureEventHubLogSourceAuthentication
Authentication details for connecting to Azure Event Hub.
CollectorId
This property is required.
Changes to this property will trigger replacement.
int
ContentType
This property is required.
Changes to this property will trigger replacement.
string
Must be AzureEventHubLog.
Path
This property is required.
Changes to this property will trigger replacement.
Pulumi.SumoLogic.Inputs.AzureEventHubLogSourcePath
The location to scan for new data.
AutomaticDateParsing bool
Category string
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourceDefaultDateFormat>
Description string
Fields Dictionary<string, string>
Filters List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourceFilter>
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
Name string
Paused bool
ScanInterval int
Timezone string
UseAutolineMatching bool
Authentication
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourceAuthenticationArgs
Authentication details for connecting to Azure Event Hub.
CollectorId
This property is required.
Changes to this property will trigger replacement.
int
ContentType
This property is required.
Changes to this property will trigger replacement.
string
Must be AzureEventHubLog.
Path
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourcePathArgs
The location to scan for new data.
AutomaticDateParsing bool
Category string
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats []AzureEventHubLogSourceDefaultDateFormatArgs
Description string
Fields map[string]string
Filters []AzureEventHubLogSourceFilterArgs
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
Name string
Paused bool
ScanInterval int
Timezone string
UseAutolineMatching bool
authentication
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourceAuthentication
Authentication details for connecting to Azure Event Hub.
collectorId
This property is required.
Changes to this property will trigger replacement.
Integer
contentType
This property is required.
Changes to this property will trigger replacement.
String
Must be AzureEventHubLog.
path
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourcePath
The location to scan for new data.
automaticDateParsing Boolean
category String
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Integer
defaultDateFormats List<AzureEventHubLogSourceDefaultDateFormat>
description String
fields Map<String,String>
filters List<AzureEventHubLogSourceFilter>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
name String
paused Boolean
scanInterval Integer
timezone String
useAutolineMatching Boolean
authentication
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourceAuthentication
Authentication details for connecting to Azure Event Hub.
collectorId
This property is required.
Changes to this property will trigger replacement.
number
contentType
This property is required.
Changes to this property will trigger replacement.
string
Must be AzureEventHubLog.
path
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourcePath
The location to scan for new data.
automaticDateParsing boolean
category string
cutoffRelativeTime Changes to this property will trigger replacement. string
cutoffTimestamp number
defaultDateFormats AzureEventHubLogSourceDefaultDateFormat[]
description string
fields {[key: string]: string}
filters AzureEventHubLogSourceFilter[]
forceTimezone boolean
hashAlgorithm string
hostName string
manualPrefixRegexp string
multilineProcessingEnabled boolean
name string
paused boolean
scanInterval number
timezone string
useAutolineMatching boolean
authentication
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourceAuthenticationArgs
Authentication details for connecting to Azure Event Hub.
collector_id
This property is required.
Changes to this property will trigger replacement.
int
content_type
This property is required.
Changes to this property will trigger replacement.
str
Must be AzureEventHubLog.
path
This property is required.
Changes to this property will trigger replacement.
AzureEventHubLogSourcePathArgs
The location to scan for new data.
automatic_date_parsing bool
category str
cutoff_relative_time Changes to this property will trigger replacement. str
cutoff_timestamp int
default_date_formats Sequence[AzureEventHubLogSourceDefaultDateFormatArgs]
description str
fields Mapping[str, str]
filters Sequence[AzureEventHubLogSourceFilterArgs]
force_timezone bool
hash_algorithm str
host_name str
manual_prefix_regexp str
multiline_processing_enabled bool
name str
paused bool
scan_interval int
timezone str
use_autoline_matching bool
authentication
This property is required.
Changes to this property will trigger replacement.
Property Map
Authentication details for connecting to Azure Event Hub.
collectorId
This property is required.
Changes to this property will trigger replacement.
Number
contentType
This property is required.
Changes to this property will trigger replacement.
String
Must be AzureEventHubLog.
path
This property is required.
Changes to this property will trigger replacement.
Property Map
The location to scan for new data.
automaticDateParsing Boolean
category String
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Number
defaultDateFormats List<Property Map>
description String
fields Map<String>
filters List<Property Map>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
name String
paused Boolean
scanInterval Number
timezone String
useAutolineMatching Boolean

Outputs

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

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

Look up Existing AzureEventHubLogSource Resource

Get an existing AzureEventHubLogSource 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?: AzureEventHubLogSourceState, opts?: CustomResourceOptions): AzureEventHubLogSource
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication: Optional[AzureEventHubLogSourceAuthenticationArgs] = None,
        automatic_date_parsing: Optional[bool] = None,
        category: Optional[str] = None,
        collector_id: Optional[int] = None,
        content_type: Optional[str] = None,
        cutoff_relative_time: Optional[str] = None,
        cutoff_timestamp: Optional[int] = None,
        default_date_formats: Optional[Sequence[AzureEventHubLogSourceDefaultDateFormatArgs]] = None,
        description: Optional[str] = None,
        fields: Optional[Mapping[str, str]] = None,
        filters: Optional[Sequence[AzureEventHubLogSourceFilterArgs]] = None,
        force_timezone: Optional[bool] = None,
        hash_algorithm: Optional[str] = None,
        host_name: Optional[str] = None,
        manual_prefix_regexp: Optional[str] = None,
        multiline_processing_enabled: Optional[bool] = None,
        name: Optional[str] = None,
        path: Optional[AzureEventHubLogSourcePathArgs] = None,
        paused: Optional[bool] = None,
        scan_interval: Optional[int] = None,
        timezone: Optional[str] = None,
        url: Optional[str] = None,
        use_autoline_matching: Optional[bool] = None) -> AzureEventHubLogSource
func GetAzureEventHubLogSource(ctx *Context, name string, id IDInput, state *AzureEventHubLogSourceState, opts ...ResourceOption) (*AzureEventHubLogSource, error)
public static AzureEventHubLogSource Get(string name, Input<string> id, AzureEventHubLogSourceState? state, CustomResourceOptions? opts = null)
public static AzureEventHubLogSource get(String name, Output<String> id, AzureEventHubLogSourceState state, CustomResourceOptions options)
resources:  _:    type: sumologic:AzureEventHubLogSource    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:
Authentication Changes to this property will trigger replacement. Pulumi.SumoLogic.Inputs.AzureEventHubLogSourceAuthentication
Authentication details for connecting to Azure Event Hub.
AutomaticDateParsing bool
Category string
CollectorId Changes to this property will trigger replacement. int
ContentType Changes to this property will trigger replacement. string
Must be AzureEventHubLog.
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourceDefaultDateFormat>
Description string
Fields Dictionary<string, string>
Filters List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourceFilter>
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
Name string
Path Changes to this property will trigger replacement. Pulumi.SumoLogic.Inputs.AzureEventHubLogSourcePath
The location to scan for new data.
Paused bool
ScanInterval int
Timezone string
Url string
UseAutolineMatching bool
Authentication Changes to this property will trigger replacement. AzureEventHubLogSourceAuthenticationArgs
Authentication details for connecting to Azure Event Hub.
AutomaticDateParsing bool
Category string
CollectorId Changes to this property will trigger replacement. int
ContentType Changes to this property will trigger replacement. string
Must be AzureEventHubLog.
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats []AzureEventHubLogSourceDefaultDateFormatArgs
Description string
Fields map[string]string
Filters []AzureEventHubLogSourceFilterArgs
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
Name string
Path Changes to this property will trigger replacement. AzureEventHubLogSourcePathArgs
The location to scan for new data.
Paused bool
ScanInterval int
Timezone string
Url string
UseAutolineMatching bool
authentication Changes to this property will trigger replacement. AzureEventHubLogSourceAuthentication
Authentication details for connecting to Azure Event Hub.
automaticDateParsing Boolean
category String
collectorId Changes to this property will trigger replacement. Integer
contentType Changes to this property will trigger replacement. String
Must be AzureEventHubLog.
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Integer
defaultDateFormats List<AzureEventHubLogSourceDefaultDateFormat>
description String
fields Map<String,String>
filters List<AzureEventHubLogSourceFilter>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
name String
path Changes to this property will trigger replacement. AzureEventHubLogSourcePath
The location to scan for new data.
paused Boolean
scanInterval Integer
timezone String
url String
useAutolineMatching Boolean
authentication Changes to this property will trigger replacement. AzureEventHubLogSourceAuthentication
Authentication details for connecting to Azure Event Hub.
automaticDateParsing boolean
category string
collectorId Changes to this property will trigger replacement. number
contentType Changes to this property will trigger replacement. string
Must be AzureEventHubLog.
cutoffRelativeTime Changes to this property will trigger replacement. string
cutoffTimestamp number
defaultDateFormats AzureEventHubLogSourceDefaultDateFormat[]
description string
fields {[key: string]: string}
filters AzureEventHubLogSourceFilter[]
forceTimezone boolean
hashAlgorithm string
hostName string
manualPrefixRegexp string
multilineProcessingEnabled boolean
name string
path Changes to this property will trigger replacement. AzureEventHubLogSourcePath
The location to scan for new data.
paused boolean
scanInterval number
timezone string
url string
useAutolineMatching boolean
authentication Changes to this property will trigger replacement. AzureEventHubLogSourceAuthenticationArgs
Authentication details for connecting to Azure Event Hub.
automatic_date_parsing bool
category str
collector_id Changes to this property will trigger replacement. int
content_type Changes to this property will trigger replacement. str
Must be AzureEventHubLog.
cutoff_relative_time Changes to this property will trigger replacement. str
cutoff_timestamp int
default_date_formats Sequence[AzureEventHubLogSourceDefaultDateFormatArgs]
description str
fields Mapping[str, str]
filters Sequence[AzureEventHubLogSourceFilterArgs]
force_timezone bool
hash_algorithm str
host_name str
manual_prefix_regexp str
multiline_processing_enabled bool
name str
path Changes to this property will trigger replacement. AzureEventHubLogSourcePathArgs
The location to scan for new data.
paused bool
scan_interval int
timezone str
url str
use_autoline_matching bool
authentication Changes to this property will trigger replacement. Property Map
Authentication details for connecting to Azure Event Hub.
automaticDateParsing Boolean
category String
collectorId Changes to this property will trigger replacement. Number
contentType Changes to this property will trigger replacement. String
Must be AzureEventHubLog.
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Number
defaultDateFormats List<Property Map>
description String
fields Map<String>
filters List<Property Map>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
name String
path Changes to this property will trigger replacement. Property Map
The location to scan for new data.
paused Boolean
scanInterval Number
timezone String
url String
useAutolineMatching Boolean

Supporting Types

AzureEventHubLogSourceAuthentication
, AzureEventHubLogSourceAuthenticationArgs

Type This property is required. string
Must be AzureEventHubAuthentication.
AccessKey string
AuthProviderX509CertUrl string
AuthUri string
ClientEmail string
ClientId string
ClientSecret string
ClientX509CertUrl string
PrivateKey string
PrivateKeyId string
ProjectId string
Region string
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
RoleArn string
SecretKey string
SharedAccessPolicyKey string
Your shared access policy key.
SharedAccessPolicyName string
Your shared access policy name.
TenantId string
TokenUri string
Type This property is required. string
Must be AzureEventHubAuthentication.
AccessKey string
AuthProviderX509CertUrl string
AuthUri string
ClientEmail string
ClientId string
ClientSecret string
ClientX509CertUrl string
PrivateKey string
PrivateKeyId string
ProjectId string
Region string
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
RoleArn string
SecretKey string
SharedAccessPolicyKey string
Your shared access policy key.
SharedAccessPolicyName string
Your shared access policy name.
TenantId string
TokenUri string
type This property is required. String
Must be AzureEventHubAuthentication.
accessKey String
authProviderX509CertUrl String
authUri String
clientEmail String
clientId String
clientSecret String
clientX509CertUrl String
privateKey String
privateKeyId String
projectId String
region String
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
roleArn String
secretKey String
sharedAccessPolicyKey String
Your shared access policy key.
sharedAccessPolicyName String
Your shared access policy name.
tenantId String
tokenUri String
type This property is required. string
Must be AzureEventHubAuthentication.
accessKey string
authProviderX509CertUrl string
authUri string
clientEmail string
clientId string
clientSecret string
clientX509CertUrl string
privateKey string
privateKeyId string
projectId string
region string
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
roleArn string
secretKey string
sharedAccessPolicyKey string
Your shared access policy key.
sharedAccessPolicyName string
Your shared access policy name.
tenantId string
tokenUri string
type This property is required. str
Must be AzureEventHubAuthentication.
access_key str
auth_provider_x509_cert_url str
auth_uri str
client_email str
client_id str
client_secret str
client_x509_cert_url str
private_key str
private_key_id str
project_id str
region str
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
role_arn str
secret_key str
shared_access_policy_key str
Your shared access policy key.
shared_access_policy_name str
Your shared access policy name.
tenant_id str
token_uri str
type This property is required. String
Must be AzureEventHubAuthentication.
accessKey String
authProviderX509CertUrl String
authUri String
clientEmail String
clientId String
clientSecret String
clientX509CertUrl String
privateKey String
privateKeyId String
projectId String
region String
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
roleArn String
secretKey String
sharedAccessPolicyKey String
Your shared access policy key.
sharedAccessPolicyName String
Your shared access policy name.
tenantId String
tokenUri String

AzureEventHubLogSourceDefaultDateFormat
, AzureEventHubLogSourceDefaultDateFormatArgs

Format This property is required. string
Locator string
Format This property is required. string
Locator string
format This property is required. String
locator String
format This property is required. string
locator string
format This property is required. str
locator str
format This property is required. String
locator String

AzureEventHubLogSourceFilter
, AzureEventHubLogSourceFilterArgs

FilterType This property is required. string
Name This property is required. string
Regexp This property is required. string
Mask string
FilterType This property is required. string
Name This property is required. string
Regexp This property is required. string
Mask string
filterType This property is required. String
name This property is required. String
regexp This property is required. String
mask String
filterType This property is required. string
name This property is required. string
regexp This property is required. string
mask string
filter_type This property is required. str
name This property is required. str
regexp This property is required. str
mask str
filterType This property is required. String
name This property is required. String
regexp This property is required. String
mask String

AzureEventHubLogSourcePath
, AzureEventHubLogSourcePathArgs

Type This property is required. string
Must be AzureEventHubPath.
AzureTagFilters List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourcePathAzureTagFilter>
BucketName string
ConsumerGroup string
The consumer group of the event hub.
CustomServices List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourcePathCustomService>
Environment string
EventHubName string
The name of the event hub.
LimitToNamespaces List<string>
LimitToRegions List<string>
LimitToServices List<string>
Namespace string
The namespace of the event hub.
PathExpression string
Region string
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
SnsTopicOrSubscriptionArns List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourcePathSnsTopicOrSubscriptionArn>
TagFilters List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourcePathTagFilter>
UseVersionedApi bool
Type This property is required. string
Must be AzureEventHubPath.
AzureTagFilters []AzureEventHubLogSourcePathAzureTagFilter
BucketName string
ConsumerGroup string
The consumer group of the event hub.
CustomServices []AzureEventHubLogSourcePathCustomService
Environment string
EventHubName string
The name of the event hub.
LimitToNamespaces []string
LimitToRegions []string
LimitToServices []string
Namespace string
The namespace of the event hub.
PathExpression string
Region string
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
SnsTopicOrSubscriptionArns []AzureEventHubLogSourcePathSnsTopicOrSubscriptionArn
TagFilters []AzureEventHubLogSourcePathTagFilter
UseVersionedApi bool
type This property is required. String
Must be AzureEventHubPath.
azureTagFilters List<AzureEventHubLogSourcePathAzureTagFilter>
bucketName String
consumerGroup String
The consumer group of the event hub.
customServices List<AzureEventHubLogSourcePathCustomService>
environment String
eventHubName String
The name of the event hub.
limitToNamespaces List<String>
limitToRegions List<String>
limitToServices List<String>
namespace String
The namespace of the event hub.
pathExpression String
region String
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
snsTopicOrSubscriptionArns List<AzureEventHubLogSourcePathSnsTopicOrSubscriptionArn>
tagFilters List<AzureEventHubLogSourcePathTagFilter>
useVersionedApi Boolean
type This property is required. string
Must be AzureEventHubPath.
azureTagFilters AzureEventHubLogSourcePathAzureTagFilter[]
bucketName string
consumerGroup string
The consumer group of the event hub.
customServices AzureEventHubLogSourcePathCustomService[]
environment string
eventHubName string
The name of the event hub.
limitToNamespaces string[]
limitToRegions string[]
limitToServices string[]
namespace string
The namespace of the event hub.
pathExpression string
region string
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
snsTopicOrSubscriptionArns AzureEventHubLogSourcePathSnsTopicOrSubscriptionArn[]
tagFilters AzureEventHubLogSourcePathTagFilter[]
useVersionedApi boolean
type This property is required. str
Must be AzureEventHubPath.
azure_tag_filters Sequence[AzureEventHubLogSourcePathAzureTagFilter]
bucket_name str
consumer_group str
The consumer group of the event hub.
custom_services Sequence[AzureEventHubLogSourcePathCustomService]
environment str
event_hub_name str
The name of the event hub.
limit_to_namespaces Sequence[str]
limit_to_regions Sequence[str]
limit_to_services Sequence[str]
namespace str
The namespace of the event hub.
path_expression str
region str
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
sns_topic_or_subscription_arns Sequence[AzureEventHubLogSourcePathSnsTopicOrSubscriptionArn]
tag_filters Sequence[AzureEventHubLogSourcePathTagFilter]
use_versioned_api bool
type This property is required. String
Must be AzureEventHubPath.
azureTagFilters List<Property Map>
bucketName String
consumerGroup String
The consumer group of the event hub.
customServices List<Property Map>
environment String
eventHubName String
The name of the event hub.
limitToNamespaces List<String>
limitToRegions List<String>
limitToServices List<String>
namespace String
The namespace of the event hub.
pathExpression String
region String
The region of the event hub. The value can be either Commercial for Azure, or US Gov for Azure Government. Defaults to Commercial.
snsTopicOrSubscriptionArns List<Property Map>
tagFilters List<Property Map>
useVersionedApi Boolean

AzureEventHubLogSourcePathAzureTagFilter
, AzureEventHubLogSourcePathAzureTagFilterArgs

Type This property is required. string
Namespace string
The namespace of the event hub.
Tags List<Pulumi.SumoLogic.Inputs.AzureEventHubLogSourcePathAzureTagFilterTag>
Type This property is required. string
Namespace string
The namespace of the event hub.
Tags []AzureEventHubLogSourcePathAzureTagFilterTag
type This property is required. String
namespace String
The namespace of the event hub.
tags List<AzureEventHubLogSourcePathAzureTagFilterTag>
type This property is required. string
namespace string
The namespace of the event hub.
tags AzureEventHubLogSourcePathAzureTagFilterTag[]
type This property is required. str
namespace str
The namespace of the event hub.
tags Sequence[AzureEventHubLogSourcePathAzureTagFilterTag]
type This property is required. String
namespace String
The namespace of the event hub.
tags List<Property Map>

AzureEventHubLogSourcePathAzureTagFilterTag
, AzureEventHubLogSourcePathAzureTagFilterTagArgs

Name This property is required. string
Values List<string>
Name This property is required. string
Values []string
name This property is required. String
values List<String>
name This property is required. string
values string[]
name This property is required. str
values Sequence[str]
name This property is required. String
values List<String>

AzureEventHubLogSourcePathCustomService
, AzureEventHubLogSourcePathCustomServiceArgs

Prefixes List<string>
ServiceName string
Prefixes []string
ServiceName string
prefixes List<String>
serviceName String
prefixes string[]
serviceName string
prefixes Sequence[str]
service_name str
prefixes List<String>
serviceName String

AzureEventHubLogSourcePathSnsTopicOrSubscriptionArn
, AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs

Arn string
IsSuccess bool
Arn string
IsSuccess bool
arn String
isSuccess Boolean
arn string
isSuccess boolean
arn str
is_success bool
arn String
isSuccess Boolean

AzureEventHubLogSourcePathTagFilter
, AzureEventHubLogSourcePathTagFilterArgs

Namespace string
The namespace of the event hub.
Tags List<string>
Type string
Namespace string
The namespace of the event hub.
Tags []string
Type string
namespace String
The namespace of the event hub.
tags List<String>
type String
namespace string
The namespace of the event hub.
tags string[]
type string
namespace str
The namespace of the event hub.
tags Sequence[str]
type str
namespace String
The namespace of the event hub.
tags List<String>
type String

Package Details

Repository
Sumo Logic pulumi/pulumi-sumologic
License
Apache-2.0
Notes
This Pulumi package is based on the sumologic Terraform Provider.