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",
    },
});
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",
    })
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
	})
}
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",
        },
    });
});
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());
    }
}
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
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,
                           manual_prefix_regexp: 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,
                           host_name: Optional[str] = None,
                           cutoff_relative_time: 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 string
 - The unique name of the resource.
 - args AzureEventHubLogSourceArgs
 - 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 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 string
 - The unique name of the resource.
 - args AzureEventHubLogSourceArgs
 - The arguments to resource properties.
 - opts ResourceOption
 - Bag of options to control resource's behavior.
 
- name string
 - The unique name of the resource.
 - args AzureEventHubLogSourceArgs
 - The arguments to resource properties.
 - opts CustomResourceOptions
 - Bag of options to control resource's behavior.
 
- name String
 - The unique name of the resource.
 - args 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",
        },
        CustomServices = new[]
        {
            new SumoLogic.Inputs.AzureEventHubLogSourcePathCustomServiceArgs
            {
                Prefixes = new[]
                {
                    "string",
                },
                ServiceName = "string",
            },
        },
        EventHubName = "string",
        LimitToNamespaces = new[]
        {
            "string",
        },
        LimitToRegions = new[]
        {
            "string",
        },
        BucketName = "string",
        Namespace = "string",
        PathExpression = "string",
        Region = "string",
        SnsTopicOrSubscriptionArns = new[]
        {
            new SumoLogic.Inputs.AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs
            {
                Arn = "string",
                IsSuccess = false,
            },
        },
        TagFilters = new[]
        {
            new SumoLogic.Inputs.AzureEventHubLogSourcePathTagFilterArgs
            {
                Namespace = "string",
                Tags = new[]
                {
                    "string",
                },
                Type = "string",
            },
        },
        ConsumerGroup = "string",
        UseVersionedApi = false,
    },
    Authentication = new SumoLogic.Inputs.AzureEventHubLogSourceAuthenticationArgs
    {
        Type = "string",
        ProjectId = "string",
        Region = "string",
        ClientEmail = "string",
        ClientId = "string",
        ClientX509CertUrl = "string",
        PrivateKey = "string",
        AuthUri = "string",
        AccessKey = "string",
        PrivateKeyId = "string",
        RoleArn = "string",
        SecretKey = "string",
        SharedAccessPolicyKey = "string",
        SharedAccessPolicyName = "string",
        TokenUri = "string",
        AuthProviderX509CertUrl = "string",
    },
    CollectorId = 0,
    Filters = new[]
    {
        new SumoLogic.Inputs.AzureEventHubLogSourceFilterArgs
        {
            FilterType = "string",
            Name = "string",
            Regexp = "string",
            Mask = "string",
        },
    },
    ManualPrefixRegexp = "string",
    CutoffTimestamp = 0,
    DefaultDateFormats = new[]
    {
        new SumoLogic.Inputs.AzureEventHubLogSourceDefaultDateFormatArgs
        {
            Format = "string",
            Locator = "string",
        },
    },
    Description = "string",
    Fields = 
    {
        { "string", "string" },
    },
    Category = "string",
    ForceTimezone = false,
    HostName = "string",
    CutoffRelativeTime = "string",
    MultilineProcessingEnabled = false,
    Name = "string",
    AutomaticDateParsing = false,
    Paused = false,
    ScanInterval = 0,
    Timezone = "string",
    UseAutolineMatching = false,
});
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"),
		},
		CustomServices: sumologic.AzureEventHubLogSourcePathCustomServiceArray{
			&sumologic.AzureEventHubLogSourcePathCustomServiceArgs{
				Prefixes: pulumi.StringArray{
					pulumi.String("string"),
				},
				ServiceName: pulumi.String("string"),
			},
		},
		EventHubName: pulumi.String("string"),
		LimitToNamespaces: pulumi.StringArray{
			pulumi.String("string"),
		},
		LimitToRegions: pulumi.StringArray{
			pulumi.String("string"),
		},
		BucketName:     pulumi.String("string"),
		Namespace:      pulumi.String("string"),
		PathExpression: pulumi.String("string"),
		Region:         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"),
			},
		},
		ConsumerGroup:   pulumi.String("string"),
		UseVersionedApi: pulumi.Bool(false),
	},
	Authentication: &sumologic.AzureEventHubLogSourceAuthenticationArgs{
		Type:                    pulumi.String("string"),
		ProjectId:               pulumi.String("string"),
		Region:                  pulumi.String("string"),
		ClientEmail:             pulumi.String("string"),
		ClientId:                pulumi.String("string"),
		ClientX509CertUrl:       pulumi.String("string"),
		PrivateKey:              pulumi.String("string"),
		AuthUri:                 pulumi.String("string"),
		AccessKey:               pulumi.String("string"),
		PrivateKeyId:            pulumi.String("string"),
		RoleArn:                 pulumi.String("string"),
		SecretKey:               pulumi.String("string"),
		SharedAccessPolicyKey:   pulumi.String("string"),
		SharedAccessPolicyName:  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"),
		},
	},
	ManualPrefixRegexp: 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),
	HostName:                   pulumi.String("string"),
	CutoffRelativeTime:         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),
})
var azureEventHubLogSourceResource = new AzureEventHubLogSource("azureEventHubLogSourceResource", AzureEventHubLogSourceArgs.builder()
    .contentType("string")
    .path(AzureEventHubLogSourcePathArgs.builder()
        .type("string")
        .limitToServices("string")
        .customServices(AzureEventHubLogSourcePathCustomServiceArgs.builder()
            .prefixes("string")
            .serviceName("string")
            .build())
        .eventHubName("string")
        .limitToNamespaces("string")
        .limitToRegions("string")
        .bucketName("string")
        .namespace("string")
        .pathExpression("string")
        .region("string")
        .snsTopicOrSubscriptionArns(AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs.builder()
            .arn("string")
            .isSuccess(false)
            .build())
        .tagFilters(AzureEventHubLogSourcePathTagFilterArgs.builder()
            .namespace("string")
            .tags("string")
            .type("string")
            .build())
        .consumerGroup("string")
        .useVersionedApi(false)
        .build())
    .authentication(AzureEventHubLogSourceAuthenticationArgs.builder()
        .type("string")
        .projectId("string")
        .region("string")
        .clientEmail("string")
        .clientId("string")
        .clientX509CertUrl("string")
        .privateKey("string")
        .authUri("string")
        .accessKey("string")
        .privateKeyId("string")
        .roleArn("string")
        .secretKey("string")
        .sharedAccessPolicyKey("string")
        .sharedAccessPolicyName("string")
        .tokenUri("string")
        .authProviderX509CertUrl("string")
        .build())
    .collectorId(0)
    .filters(AzureEventHubLogSourceFilterArgs.builder()
        .filterType("string")
        .name("string")
        .regexp("string")
        .mask("string")
        .build())
    .manualPrefixRegexp("string")
    .cutoffTimestamp(0)
    .defaultDateFormats(AzureEventHubLogSourceDefaultDateFormatArgs.builder()
        .format("string")
        .locator("string")
        .build())
    .description("string")
    .fields(Map.of("string", "string"))
    .category("string")
    .forceTimezone(false)
    .hostName("string")
    .cutoffRelativeTime("string")
    .multilineProcessingEnabled(false)
    .name("string")
    .automaticDateParsing(false)
    .paused(false)
    .scanInterval(0)
    .timezone("string")
    .useAutolineMatching(false)
    .build());
azure_event_hub_log_source_resource = sumologic.AzureEventHubLogSource("azureEventHubLogSourceResource",
    content_type="string",
    path=sumologic.AzureEventHubLogSourcePathArgs(
        type="string",
        limit_to_services=["string"],
        custom_services=[sumologic.AzureEventHubLogSourcePathCustomServiceArgs(
            prefixes=["string"],
            service_name="string",
        )],
        event_hub_name="string",
        limit_to_namespaces=["string"],
        limit_to_regions=["string"],
        bucket_name="string",
        namespace="string",
        path_expression="string",
        region="string",
        sns_topic_or_subscription_arns=[sumologic.AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs(
            arn="string",
            is_success=False,
        )],
        tag_filters=[sumologic.AzureEventHubLogSourcePathTagFilterArgs(
            namespace="string",
            tags=["string"],
            type="string",
        )],
        consumer_group="string",
        use_versioned_api=False,
    ),
    authentication=sumologic.AzureEventHubLogSourceAuthenticationArgs(
        type="string",
        project_id="string",
        region="string",
        client_email="string",
        client_id="string",
        client_x509_cert_url="string",
        private_key="string",
        auth_uri="string",
        access_key="string",
        private_key_id="string",
        role_arn="string",
        secret_key="string",
        shared_access_policy_key="string",
        shared_access_policy_name="string",
        token_uri="string",
        auth_provider_x509_cert_url="string",
    ),
    collector_id=0,
    filters=[sumologic.AzureEventHubLogSourceFilterArgs(
        filter_type="string",
        name="string",
        regexp="string",
        mask="string",
    )],
    manual_prefix_regexp="string",
    cutoff_timestamp=0,
    default_date_formats=[sumologic.AzureEventHubLogSourceDefaultDateFormatArgs(
        format="string",
        locator="string",
    )],
    description="string",
    fields={
        "string": "string",
    },
    category="string",
    force_timezone=False,
    host_name="string",
    cutoff_relative_time="string",
    multiline_processing_enabled=False,
    name="string",
    automatic_date_parsing=False,
    paused=False,
    scan_interval=0,
    timezone="string",
    use_autoline_matching=False)
const azureEventHubLogSourceResource = new sumologic.AzureEventHubLogSource("azureEventHubLogSourceResource", {
    contentType: "string",
    path: {
        type: "string",
        limitToServices: ["string"],
        customServices: [{
            prefixes: ["string"],
            serviceName: "string",
        }],
        eventHubName: "string",
        limitToNamespaces: ["string"],
        limitToRegions: ["string"],
        bucketName: "string",
        namespace: "string",
        pathExpression: "string",
        region: "string",
        snsTopicOrSubscriptionArns: [{
            arn: "string",
            isSuccess: false,
        }],
        tagFilters: [{
            namespace: "string",
            tags: ["string"],
            type: "string",
        }],
        consumerGroup: "string",
        useVersionedApi: false,
    },
    authentication: {
        type: "string",
        projectId: "string",
        region: "string",
        clientEmail: "string",
        clientId: "string",
        clientX509CertUrl: "string",
        privateKey: "string",
        authUri: "string",
        accessKey: "string",
        privateKeyId: "string",
        roleArn: "string",
        secretKey: "string",
        sharedAccessPolicyKey: "string",
        sharedAccessPolicyName: "string",
        tokenUri: "string",
        authProviderX509CertUrl: "string",
    },
    collectorId: 0,
    filters: [{
        filterType: "string",
        name: "string",
        regexp: "string",
        mask: "string",
    }],
    manualPrefixRegexp: "string",
    cutoffTimestamp: 0,
    defaultDateFormats: [{
        format: "string",
        locator: "string",
    }],
    description: "string",
    fields: {
        string: "string",
    },
    category: "string",
    forceTimezone: false,
    hostName: "string",
    cutoffRelativeTime: "string",
    multilineProcessingEnabled: false,
    name: "string",
    automaticDateParsing: false,
    paused: false,
    scanInterval: 0,
    timezone: "string",
    useAutolineMatching: false,
});
type: sumologic:AzureEventHubLogSource
properties:
    authentication:
        accessKey: string
        authProviderX509CertUrl: string
        authUri: string
        clientEmail: string
        clientId: string
        clientX509CertUrl: string
        privateKey: string
        privateKeyId: string
        projectId: string
        region: string
        roleArn: string
        secretKey: string
        sharedAccessPolicyKey: string
        sharedAccessPolicyName: 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
    hostName: string
    manualPrefixRegexp: string
    multilineProcessingEnabled: false
    name: string
    path:
        bucketName: string
        consumerGroup: string
        customServices:
            - prefixes:
                - string
              serviceName: 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
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
The AzureEventHubLogSource resource accepts the following input properties:
- Authentication
Pulumi.
Sumo Logic. Inputs. Azure Event Hub Log Source Authentication  - Authentication details for connecting to Azure Event Hub.
 - Collector
Id int - Content
Type string - Must be 
AzureEventHubLog. - Path
Pulumi.
Sumo Logic. Inputs. Azure Event Hub Log Source Path  - The location to scan for new data.
 - Automatic
Date boolParsing  - Category string
 - Cutoff
Relative stringTime  - Cutoff
Timestamp int - Default
Date List<Pulumi.Formats Sumo Logic. Inputs. Azure Event Hub Log Source Default Date Format>  - Description string
 - Fields Dictionary<string, string>
 - Filters
List<Pulumi.
Sumo Logic. Inputs. Azure Event Hub Log Source Filter>  - Force
Timezone bool - Host
Name string - Manual
Prefix stringRegexp  - Multiline
Processing boolEnabled  - Name string
 - Paused bool
 - Scan
Interval int - Timezone string
 - Use
Autoline boolMatching  
- Authentication
Azure
Event Hub Log Source Authentication Args  - Authentication details for connecting to Azure Event Hub.
 - Collector
Id int - Content
Type string - Must be 
AzureEventHubLog. - Path
Azure
Event Hub Log Source Path Args  - The location to scan for new data.
 - Automatic
Date boolParsing  - Category string
 - Cutoff
Relative stringTime  - Cutoff
Timestamp int - Default
Date []AzureFormats Event Hub Log Source Default Date Format Args  - Description string
 - Fields map[string]string
 - Filters
[]Azure
Event Hub Log Source Filter Args  - Force
Timezone bool - Host
Name string - Manual
Prefix stringRegexp  - Multiline
Processing boolEnabled  - Name string
 - Paused bool
 - Scan
Interval int - Timezone string
 - Use
Autoline boolMatching  
- authentication
Azure
Event Hub Log Source Authentication  - Authentication details for connecting to Azure Event Hub.
 - collector
Id Integer - content
Type String - Must be 
AzureEventHubLog. - path
Azure
Event Hub Log Source Path  - The location to scan for new data.
 - automatic
Date BooleanParsing  - category String
 - cutoff
Relative StringTime  - cutoff
Timestamp Integer - default
Date List<AzureFormats Event Hub Log Source Default Date Format>  - description String
 - fields Map<String,String>
 - filters
List<Azure
Event Hub Log Source Filter>  - force
Timezone Boolean - host
Name String - manual
Prefix StringRegexp  - multiline
Processing BooleanEnabled  - name String
 - paused Boolean
 - scan
Interval Integer - timezone String
 - use
Autoline BooleanMatching  
- authentication
Azure
Event Hub Log Source Authentication  - Authentication details for connecting to Azure Event Hub.
 - collector
Id number - content
Type string - Must be 
AzureEventHubLog. - path
Azure
Event Hub Log Source Path  - The location to scan for new data.
 - automatic
Date booleanParsing  - category string
 - cutoff
Relative stringTime  - cutoff
Timestamp number - default
Date AzureFormats Event Hub Log Source Default Date Format[]  - description string
 - fields {[key: string]: string}
 - filters
Azure
Event Hub Log Source Filter[]  - force
Timezone boolean - host
Name string - manual
Prefix stringRegexp  - multiline
Processing booleanEnabled  - name string
 - paused boolean
 - scan
Interval number - timezone string
 - use
Autoline booleanMatching  
- authentication
Azure
Event Hub Log Source Authentication Args  - Authentication details for connecting to Azure Event Hub.
 - collector_
id int - content_
type str - Must be 
AzureEventHubLog. - path
Azure
Event Hub Log Source Path Args  - The location to scan for new data.
 - automatic_
date_ boolparsing  - category str
 - cutoff_
relative_ strtime  - cutoff_
timestamp int - default_
date_ Sequence[Azureformats Event Hub Log Source Default Date Format Args]  - description str
 - fields Mapping[str, str]
 - filters
Sequence[Azure
Event Hub Log Source Filter Args]  - force_
timezone bool - host_
name str - manual_
prefix_ strregexp  - multiline_
processing_ boolenabled  - name str
 - paused bool
 - scan_
interval int - timezone str
 - use_
autoline_ boolmatching  
- authentication Property Map
 - Authentication details for connecting to Azure Event Hub.
 - collector
Id Number - content
Type String - Must be 
AzureEventHubLog. - path Property Map
 - The location to scan for new data.
 - automatic
Date BooleanParsing  - category String
 - cutoff
Relative StringTime  - cutoff
Timestamp Number - default
Date List<Property Map>Formats  - description String
 - fields Map<String>
 - filters List<Property Map>
 - force
Timezone Boolean - host
Name String - manual
Prefix StringRegexp  - multiline
Processing BooleanEnabled  - name String
 - paused Boolean
 - scan
Interval Number - timezone String
 - use
Autoline BooleanMatching  
Outputs
All input properties are implicitly available as output properties. Additionally, the AzureEventHubLogSource resource produces the following output properties:
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,
        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) -> AzureEventHubLogSourcefunc 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)Resource lookup is not supported in YAML- 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.
 
- Authentication
Pulumi.
Sumo Logic. Inputs. Azure Event Hub Log Source Authentication  - Authentication details for connecting to Azure Event Hub.
 - Automatic
Date boolParsing  - Category string
 - Collector
Id int - Content
Type string - Must be 
AzureEventHubLog. - Cutoff
Relative stringTime  - Cutoff
Timestamp int - Default
Date List<Pulumi.Formats Sumo Logic. Inputs. Azure Event Hub Log Source Default Date Format>  - Description string
 - Fields Dictionary<string, string>
 - Filters
List<Pulumi.
Sumo Logic. Inputs. Azure Event Hub Log Source Filter>  - Force
Timezone bool - Host
Name string - Manual
Prefix stringRegexp  - Multiline
Processing boolEnabled  - Name string
 - Path
Pulumi.
Sumo Logic. Inputs. Azure Event Hub Log Source Path  - The location to scan for new data.
 - Paused bool
 - Scan
Interval int - Timezone string
 - Url string
 - Use
Autoline boolMatching  
- Authentication
Azure
Event Hub Log Source Authentication Args  - Authentication details for connecting to Azure Event Hub.
 - Automatic
Date boolParsing  - Category string
 - Collector
Id int - Content
Type string - Must be 
AzureEventHubLog. - Cutoff
Relative stringTime  - Cutoff
Timestamp int - Default
Date []AzureFormats Event Hub Log Source Default Date Format Args  - Description string
 - Fields map[string]string
 - Filters
[]Azure
Event Hub Log Source Filter Args  - Force
Timezone bool - Host
Name string - Manual
Prefix stringRegexp  - Multiline
Processing boolEnabled  - Name string
 - Path
Azure
Event Hub Log Source Path Args  - The location to scan for new data.
 - Paused bool
 - Scan
Interval int - Timezone string
 - Url string
 - Use
Autoline boolMatching  
- authentication
Azure
Event Hub Log Source Authentication  - Authentication details for connecting to Azure Event Hub.
 - automatic
Date BooleanParsing  - category String
 - collector
Id Integer - content
Type String - Must be 
AzureEventHubLog. - cutoff
Relative StringTime  - cutoff
Timestamp Integer - default
Date List<AzureFormats Event Hub Log Source Default Date Format>  - description String
 - fields Map<String,String>
 - filters
List<Azure
Event Hub Log Source Filter>  - force
Timezone Boolean - host
Name String - manual
Prefix StringRegexp  - multiline
Processing BooleanEnabled  - name String
 - path
Azure
Event Hub Log Source Path  - The location to scan for new data.
 - paused Boolean
 - scan
Interval Integer - timezone String
 - url String
 - use
Autoline BooleanMatching  
- authentication
Azure
Event Hub Log Source Authentication  - Authentication details for connecting to Azure Event Hub.
 - automatic
Date booleanParsing  - category string
 - collector
Id number - content
Type string - Must be 
AzureEventHubLog. - cutoff
Relative stringTime  - cutoff
Timestamp number - default
Date AzureFormats Event Hub Log Source Default Date Format[]  - description string
 - fields {[key: string]: string}
 - filters
Azure
Event Hub Log Source Filter[]  - force
Timezone boolean - host
Name string - manual
Prefix stringRegexp  - multiline
Processing booleanEnabled  - name string
 - path
Azure
Event Hub Log Source Path  - The location to scan for new data.
 - paused boolean
 - scan
Interval number - timezone string
 - url string
 - use
Autoline booleanMatching  
- authentication
Azure
Event Hub Log Source Authentication Args  - Authentication details for connecting to Azure Event Hub.
 - automatic_
date_ boolparsing  - category str
 - collector_
id int - content_
type str - Must be 
AzureEventHubLog. - cutoff_
relative_ strtime  - cutoff_
timestamp int - default_
date_ Sequence[Azureformats Event Hub Log Source Default Date Format Args]  - description str
 - fields Mapping[str, str]
 - filters
Sequence[Azure
Event Hub Log Source Filter Args]  - force_
timezone bool - host_
name str - manual_
prefix_ strregexp  - multiline_
processing_ boolenabled  - name str
 - path
Azure
Event Hub Log Source Path Args  - The location to scan for new data.
 - paused bool
 - scan_
interval int - timezone str
 - url str
 - use_
autoline_ boolmatching  
- authentication Property Map
 - Authentication details for connecting to Azure Event Hub.
 - automatic
Date BooleanParsing  - category String
 - collector
Id Number - content
Type String - Must be 
AzureEventHubLog. - cutoff
Relative StringTime  - cutoff
Timestamp Number - default
Date List<Property Map>Formats  - description String
 - fields Map<String>
 - filters List<Property Map>
 - force
Timezone Boolean - host
Name String - manual
Prefix StringRegexp  - multiline
Processing BooleanEnabled  - name String
 - path Property Map
 - The location to scan for new data.
 - paused Boolean
 - scan
Interval Number - timezone String
 - url String
 - use
Autoline BooleanMatching  
Supporting Types
AzureEventHubLogSourceAuthentication, AzureEventHubLogSourceAuthenticationArgs            
- Type string
 - Must be 
AzureEventHubAuthentication. - Access
Key string - Auth
Provider stringX509Cert Url  - Auth
Uri string - Client
Email string - Client
Id string - Client
X509Cert stringUrl  - Private
Key string - Private
Key stringId  - Project
Id string - Region string
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - Role
Arn string - Secret
Key string - string
 - Your shared access policy key.
 - string
 - Your shared access policy name.
 - Token
Uri string 
- Type string
 - Must be 
AzureEventHubAuthentication. - Access
Key string - Auth
Provider stringX509Cert Url  - Auth
Uri string - Client
Email string - Client
Id string - Client
X509Cert stringUrl  - Private
Key string - Private
Key stringId  - Project
Id string - Region string
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - Role
Arn string - Secret
Key string - string
 - Your shared access policy key.
 - string
 - Your shared access policy name.
 - Token
Uri string 
- type String
 - Must be 
AzureEventHubAuthentication. - access
Key String - auth
Provider StringX509Cert Url  - auth
Uri String - client
Email String - client
Id String - client
X509Cert StringUrl  - private
Key String - private
Key StringId  - project
Id String - region String
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - role
Arn String - secret
Key String - String
 - Your shared access policy key.
 - String
 - Your shared access policy name.
 - token
Uri String 
- type string
 - Must be 
AzureEventHubAuthentication. - access
Key string - auth
Provider stringX509Cert Url  - auth
Uri string - client
Email string - client
Id string - client
X509Cert stringUrl  - private
Key string - private
Key stringId  - project
Id string - region string
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - role
Arn string - secret
Key string - string
 - Your shared access policy key.
 - string
 - Your shared access policy name.
 - token
Uri string 
- type str
 - Must be 
AzureEventHubAuthentication. - access_
key str - auth_
provider_ strx509_ cert_ url  - auth_
uri str - client_
email str - client_
id str - client_
x509_ strcert_ url  - private_
key str - private_
key_ strid  - project_
id str - region str
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - role_
arn str - secret_
key str - str
 - Your shared access policy key.
 - str
 - Your shared access policy name.
 - token_
uri str 
- type String
 - Must be 
AzureEventHubAuthentication. - access
Key String - auth
Provider StringX509Cert Url  - auth
Uri String - client
Email String - client
Id String - client
X509Cert StringUrl  - private
Key String - private
Key StringId  - project
Id String - region String
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - role
Arn String - secret
Key String - String
 - Your shared access policy key.
 - String
 - Your shared access policy name.
 - token
Uri String 
AzureEventHubLogSourceDefaultDateFormat, AzureEventHubLogSourceDefaultDateFormatArgs                
AzureEventHubLogSourceFilter, AzureEventHubLogSourceFilterArgs            
- Filter
Type string - Name string
 - Regexp string
 - Mask string
 
- Filter
Type string - Name string
 - Regexp string
 - Mask string
 
- filter
Type String - name String
 - regexp String
 - mask String
 
- filter
Type string - name string
 - regexp string
 - mask string
 
- filter_
type str - name str
 - regexp str
 - mask str
 
- filter
Type String - name String
 - regexp String
 - mask String
 
AzureEventHubLogSourcePath, AzureEventHubLogSourcePathArgs            
- Type string
 - Must be 
AzureEventHubPath. - Bucket
Name string - Consumer
Group string - The consumer group of the event hub.
 - Custom
Services List<Pulumi.Sumo Logic. Inputs. Azure Event Hub Log Source Path Custom Service>  - Event
Hub stringName  - The name of the event hub.
 - Limit
To List<string>Namespaces  - Limit
To List<string>Regions  - Limit
To List<string>Services  - Namespace string
 - The namespace of the event hub.
 - Path
Expression string - Region string
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - Sns
Topic List<Pulumi.Or Subscription Arns Sumo Logic. Inputs. Azure Event Hub Log Source Path Sns Topic Or Subscription Arn>  - Tag
Filters List<Pulumi.Sumo Logic. Inputs. Azure Event Hub Log Source Path Tag Filter>  - Use
Versioned boolApi  
- Type string
 - Must be 
AzureEventHubPath. - Bucket
Name string - Consumer
Group string - The consumer group of the event hub.
 - Custom
Services []AzureEvent Hub Log Source Path Custom Service  - Event
Hub stringName  - The name of the event hub.
 - Limit
To []stringNamespaces  - Limit
To []stringRegions  - Limit
To []stringServices  - Namespace string
 - The namespace of the event hub.
 - Path
Expression string - Region string
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - Sns
Topic []AzureOr Subscription Arns Event Hub Log Source Path Sns Topic Or Subscription Arn  - Tag
Filters []AzureEvent Hub Log Source Path Tag Filter  - Use
Versioned boolApi  
- type String
 - Must be 
AzureEventHubPath. - bucket
Name String - consumer
Group String - The consumer group of the event hub.
 - custom
Services List<AzureEvent Hub Log Source Path Custom Service>  - event
Hub StringName  - The name of the event hub.
 - limit
To List<String>Namespaces  - limit
To List<String>Regions  - limit
To List<String>Services  - namespace String
 - The namespace of the event hub.
 - path
Expression String - region String
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - sns
Topic List<AzureOr Subscription Arns Event Hub Log Source Path Sns Topic Or Subscription Arn>  - tag
Filters List<AzureEvent Hub Log Source Path Tag Filter>  - use
Versioned BooleanApi  
- type string
 - Must be 
AzureEventHubPath. - bucket
Name string - consumer
Group string - The consumer group of the event hub.
 - custom
Services AzureEvent Hub Log Source Path Custom Service[]  - event
Hub stringName  - The name of the event hub.
 - limit
To string[]Namespaces  - limit
To string[]Regions  - limit
To string[]Services  - namespace string
 - The namespace of the event hub.
 - path
Expression string - region string
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - sns
Topic AzureOr Subscription Arns Event Hub Log Source Path Sns Topic Or Subscription Arn[]  - tag
Filters AzureEvent Hub Log Source Path Tag Filter[]  - use
Versioned booleanApi  
- type str
 - Must be 
AzureEventHubPath. - bucket_
name str - consumer_
group str - The consumer group of the event hub.
 - custom_
services Sequence[AzureEvent Hub Log Source Path Custom Service]  - event_
hub_ strname  - The name of the event hub.
 - limit_
to_ Sequence[str]namespaces  - limit_
to_ Sequence[str]regions  - limit_
to_ Sequence[str]services  - namespace str
 - The namespace of the event hub.
 - path_
expression str - region str
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - sns_
topic_ Sequence[Azureor_ subscription_ arns Event Hub Log Source Path Sns Topic Or Subscription Arn]  - tag_
filters Sequence[AzureEvent Hub Log Source Path Tag Filter]  - use_
versioned_ boolapi  
- type String
 - Must be 
AzureEventHubPath. - bucket
Name String - consumer
Group String - The consumer group of the event hub.
 - custom
Services List<Property Map> - event
Hub StringName  - The name of the event hub.
 - limit
To List<String>Namespaces  - limit
To List<String>Regions  - limit
To List<String>Services  - namespace String
 - The namespace of the event hub.
 - path
Expression String - region String
 - The region of the event hub. The value can be either 
Commercialfor Azure, orUS Govfor Azure Government. Defaults toCommercial. - sns
Topic List<Property Map>Or Subscription Arns  - tag
Filters List<Property Map> - use
Versioned BooleanApi  
AzureEventHubLogSourcePathCustomService, AzureEventHubLogSourcePathCustomServiceArgs                
- Prefixes List<string>
 - Service
Name string 
- Prefixes []string
 - Service
Name string 
- prefixes List<String>
 - service
Name String 
- prefixes string[]
 - service
Name string 
- prefixes Sequence[str]
 - service_
name str 
- prefixes List<String>
 - service
Name String 
AzureEventHubLogSourcePathSnsTopicOrSubscriptionArn, AzureEventHubLogSourcePathSnsTopicOrSubscriptionArnArgs                      
- arn str
 - is_
success bool 
AzureEventHubLogSourcePathTagFilter, AzureEventHubLogSourcePathTagFilterArgs                
Package Details
- Repository
 - Sumo Logic pulumi/pulumi-sumologic
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
sumologicTerraform Provider.