1. Packages
  2. Azure Classic
  3. API Docs
  4. apimanagement
  5. Logger

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.apimanagement.Logger

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages a Logger within an API Management Service.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleInsights = new azure.appinsights.Insights("example", {
        name: "example-appinsights",
        location: example.location,
        resourceGroupName: example.name,
        applicationType: "other",
    });
    const exampleService = new azure.apimanagement.Service("example", {
        name: "example-apim",
        location: example.location,
        resourceGroupName: example.name,
        publisherName: "My Company",
        publisherEmail: "company@exmaple.com",
        skuName: "Developer_1",
    });
    const exampleLogger = new azure.apimanagement.Logger("example", {
        name: "example-logger",
        apiManagementName: exampleService.name,
        resourceGroupName: example.name,
        resourceId: exampleInsights.id,
        applicationInsights: {
            instrumentationKey: exampleInsights.instrumentationKey,
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_insights = azure.appinsights.Insights("example",
        name="example-appinsights",
        location=example.location,
        resource_group_name=example.name,
        application_type="other")
    example_service = azure.apimanagement.Service("example",
        name="example-apim",
        location=example.location,
        resource_group_name=example.name,
        publisher_name="My Company",
        publisher_email="company@exmaple.com",
        sku_name="Developer_1")
    example_logger = azure.apimanagement.Logger("example",
        name="example-logger",
        api_management_name=example_service.name,
        resource_group_name=example.name,
        resource_id=example_insights.id,
        application_insights=azure.apimanagement.LoggerApplicationInsightsArgs(
            instrumentation_key=example_insights.instrumentation_key,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/apimanagement"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appinsights"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleInsights, err := appinsights.NewInsights(ctx, "example", &appinsights.InsightsArgs{
    			Name:              pulumi.String("example-appinsights"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			ApplicationType:   pulumi.String("other"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleService, err := apimanagement.NewService(ctx, "example", &apimanagement.ServiceArgs{
    			Name:              pulumi.String("example-apim"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			PublisherName:     pulumi.String("My Company"),
    			PublisherEmail:    pulumi.String("company@exmaple.com"),
    			SkuName:           pulumi.String("Developer_1"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = apimanagement.NewLogger(ctx, "example", &apimanagement.LoggerArgs{
    			Name:              pulumi.String("example-logger"),
    			ApiManagementName: exampleService.Name,
    			ResourceGroupName: example.Name,
    			ResourceId:        exampleInsights.ID(),
    			ApplicationInsights: &apimanagement.LoggerApplicationInsightsArgs{
    				InstrumentationKey: exampleInsights.InstrumentationKey,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleInsights = new Azure.AppInsights.Insights("example", new()
        {
            Name = "example-appinsights",
            Location = example.Location,
            ResourceGroupName = example.Name,
            ApplicationType = "other",
        });
    
        var exampleService = new Azure.ApiManagement.Service("example", new()
        {
            Name = "example-apim",
            Location = example.Location,
            ResourceGroupName = example.Name,
            PublisherName = "My Company",
            PublisherEmail = "company@exmaple.com",
            SkuName = "Developer_1",
        });
    
        var exampleLogger = new Azure.ApiManagement.Logger("example", new()
        {
            Name = "example-logger",
            ApiManagementName = exampleService.Name,
            ResourceGroupName = example.Name,
            ResourceId = exampleInsights.Id,
            ApplicationInsights = new Azure.ApiManagement.Inputs.LoggerApplicationInsightsArgs
            {
                InstrumentationKey = exampleInsights.InstrumentationKey,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.appinsights.Insights;
    import com.pulumi.azure.appinsights.InsightsArgs;
    import com.pulumi.azure.apimanagement.Service;
    import com.pulumi.azure.apimanagement.ServiceArgs;
    import com.pulumi.azure.apimanagement.Logger;
    import com.pulumi.azure.apimanagement.LoggerArgs;
    import com.pulumi.azure.apimanagement.inputs.LoggerApplicationInsightsArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()        
                .name("example-appinsights")
                .location(example.location())
                .resourceGroupName(example.name())
                .applicationType("other")
                .build());
    
            var exampleService = new Service("exampleService", ServiceArgs.builder()        
                .name("example-apim")
                .location(example.location())
                .resourceGroupName(example.name())
                .publisherName("My Company")
                .publisherEmail("company@exmaple.com")
                .skuName("Developer_1")
                .build());
    
            var exampleLogger = new Logger("exampleLogger", LoggerArgs.builder()        
                .name("example-logger")
                .apiManagementName(exampleService.name())
                .resourceGroupName(example.name())
                .resourceId(exampleInsights.id())
                .applicationInsights(LoggerApplicationInsightsArgs.builder()
                    .instrumentationKey(exampleInsights.instrumentationKey())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleInsights:
        type: azure:appinsights:Insights
        name: example
        properties:
          name: example-appinsights
          location: ${example.location}
          resourceGroupName: ${example.name}
          applicationType: other
      exampleService:
        type: azure:apimanagement:Service
        name: example
        properties:
          name: example-apim
          location: ${example.location}
          resourceGroupName: ${example.name}
          publisherName: My Company
          publisherEmail: company@exmaple.com
          skuName: Developer_1
      exampleLogger:
        type: azure:apimanagement:Logger
        name: example
        properties:
          name: example-logger
          apiManagementName: ${exampleService.name}
          resourceGroupName: ${example.name}
          resourceId: ${exampleInsights.id}
          applicationInsights:
            instrumentationKey: ${exampleInsights.instrumentationKey}
    

    Create Logger Resource

    new Logger(name: string, args: LoggerArgs, opts?: CustomResourceOptions);
    @overload
    def Logger(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               api_management_name: Optional[str] = None,
               application_insights: Optional[LoggerApplicationInsightsArgs] = None,
               buffered: Optional[bool] = None,
               description: Optional[str] = None,
               eventhub: Optional[LoggerEventhubArgs] = None,
               name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               resource_id: Optional[str] = None)
    @overload
    def Logger(resource_name: str,
               args: LoggerArgs,
               opts: Optional[ResourceOptions] = None)
    func NewLogger(ctx *Context, name string, args LoggerArgs, opts ...ResourceOption) (*Logger, error)
    public Logger(string name, LoggerArgs args, CustomResourceOptions? opts = null)
    public Logger(String name, LoggerArgs args)
    public Logger(String name, LoggerArgs args, CustomResourceOptions options)
    
    type: azure:apimanagement:Logger
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args LoggerArgs
    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 LoggerArgs
    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 LoggerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LoggerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LoggerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ApiManagementName string
    The name of the API Management Service. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    ApplicationInsights LoggerApplicationInsights
    An application_insights block as documented below. Changing this forces a new resource to be created.
    Buffered bool
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    Description string
    A description of this Logger.
    Eventhub LoggerEventhub
    An eventhub block as documented below. Changing this forces a new resource to be created.
    Name string
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    ResourceId string
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    ApiManagementName string
    The name of the API Management Service. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    ApplicationInsights LoggerApplicationInsightsArgs
    An application_insights block as documented below. Changing this forces a new resource to be created.
    Buffered bool
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    Description string
    A description of this Logger.
    Eventhub LoggerEventhubArgs
    An eventhub block as documented below. Changing this forces a new resource to be created.
    Name string
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    ResourceId string
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    apiManagementName String
    The name of the API Management Service. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    applicationInsights LoggerApplicationInsights
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered Boolean
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description String
    A description of this Logger.
    eventhub LoggerEventhub
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name String
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resourceId String
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    apiManagementName string
    The name of the API Management Service. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    applicationInsights LoggerApplicationInsights
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered boolean
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description string
    A description of this Logger.
    eventhub LoggerEventhub
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name string
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resourceId string
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    api_management_name str
    The name of the API Management Service. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    application_insights LoggerApplicationInsightsArgs
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered bool
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description str
    A description of this Logger.
    eventhub LoggerEventhubArgs
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name str
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resource_id str
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    apiManagementName String
    The name of the API Management Service. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    applicationInsights Property Map
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered Boolean
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description String
    A description of this Logger.
    eventhub Property Map
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name String
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resourceId String
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.

    Outputs

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

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

    Look up Existing Logger Resource

    Get an existing Logger 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?: LoggerState, opts?: CustomResourceOptions): Logger
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_management_name: Optional[str] = None,
            application_insights: Optional[LoggerApplicationInsightsArgs] = None,
            buffered: Optional[bool] = None,
            description: Optional[str] = None,
            eventhub: Optional[LoggerEventhubArgs] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            resource_id: Optional[str] = None) -> Logger
    func GetLogger(ctx *Context, name string, id IDInput, state *LoggerState, opts ...ResourceOption) (*Logger, error)
    public static Logger Get(string name, Input<string> id, LoggerState? state, CustomResourceOptions? opts = null)
    public static Logger get(String name, Output<String> id, LoggerState 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.
    The following state arguments are supported:
    ApiManagementName string
    The name of the API Management Service. Changing this forces a new resource to be created.
    ApplicationInsights LoggerApplicationInsights
    An application_insights block as documented below. Changing this forces a new resource to be created.
    Buffered bool
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    Description string
    A description of this Logger.
    Eventhub LoggerEventhub
    An eventhub block as documented below. Changing this forces a new resource to be created.
    Name string
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    ResourceId string
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    ApiManagementName string
    The name of the API Management Service. Changing this forces a new resource to be created.
    ApplicationInsights LoggerApplicationInsightsArgs
    An application_insights block as documented below. Changing this forces a new resource to be created.
    Buffered bool
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    Description string
    A description of this Logger.
    Eventhub LoggerEventhubArgs
    An eventhub block as documented below. Changing this forces a new resource to be created.
    Name string
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    ResourceId string
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    apiManagementName String
    The name of the API Management Service. Changing this forces a new resource to be created.
    applicationInsights LoggerApplicationInsights
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered Boolean
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description String
    A description of this Logger.
    eventhub LoggerEventhub
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name String
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    resourceId String
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    apiManagementName string
    The name of the API Management Service. Changing this forces a new resource to be created.
    applicationInsights LoggerApplicationInsights
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered boolean
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description string
    A description of this Logger.
    eventhub LoggerEventhub
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name string
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    resourceId string
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    api_management_name str
    The name of the API Management Service. Changing this forces a new resource to be created.
    application_insights LoggerApplicationInsightsArgs
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered bool
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description str
    A description of this Logger.
    eventhub LoggerEventhubArgs
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name str
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    resource_id str
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.
    apiManagementName String
    The name of the API Management Service. Changing this forces a new resource to be created.
    applicationInsights Property Map
    An application_insights block as documented below. Changing this forces a new resource to be created.
    buffered Boolean
    Specifies whether records should be buffered in the Logger prior to publishing. Defaults to true.
    description String
    A description of this Logger.
    eventhub Property Map
    An eventhub block as documented below. Changing this forces a new resource to be created.
    name String
    The name of this Logger, which must be unique within the API Management Service. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group in which the API Management Service exists. Changing this forces a new resource to be created.
    resourceId String
    The target resource id which will be linked in the API-Management portal page. Changing this forces a new resource to be created.

    Supporting Types

    LoggerApplicationInsights, LoggerApplicationInsightsArgs

    InstrumentationKey string
    The instrumentation key used to push data to Application Insights.
    InstrumentationKey string
    The instrumentation key used to push data to Application Insights.
    instrumentationKey String
    The instrumentation key used to push data to Application Insights.
    instrumentationKey string
    The instrumentation key used to push data to Application Insights.
    instrumentation_key str
    The instrumentation key used to push data to Application Insights.
    instrumentationKey String
    The instrumentation key used to push data to Application Insights.

    LoggerEventhub, LoggerEventhubArgs

    Name string
    The name of an EventHub.
    ConnectionString string

    The connection string of an EventHub Namespace.

    Note: At least one of connection_string or endpoint_uri must be specified

    EndpointUri string
    The endpoint address of an EventHub Namespace. Required when client_id is set.
    UserAssignedIdentityClientId string
    The Client Id of the User Assigned Identity with the "Azure Event Hubs Data Sender" role to the target EventHub Namespace. Required when endpoint_uri is set. If not specified the System Assigned Identity will be used.
    Name string
    The name of an EventHub.
    ConnectionString string

    The connection string of an EventHub Namespace.

    Note: At least one of connection_string or endpoint_uri must be specified

    EndpointUri string
    The endpoint address of an EventHub Namespace. Required when client_id is set.
    UserAssignedIdentityClientId string
    The Client Id of the User Assigned Identity with the "Azure Event Hubs Data Sender" role to the target EventHub Namespace. Required when endpoint_uri is set. If not specified the System Assigned Identity will be used.
    name String
    The name of an EventHub.
    connectionString String

    The connection string of an EventHub Namespace.

    Note: At least one of connection_string or endpoint_uri must be specified

    endpointUri String
    The endpoint address of an EventHub Namespace. Required when client_id is set.
    userAssignedIdentityClientId String
    The Client Id of the User Assigned Identity with the "Azure Event Hubs Data Sender" role to the target EventHub Namespace. Required when endpoint_uri is set. If not specified the System Assigned Identity will be used.
    name string
    The name of an EventHub.
    connectionString string

    The connection string of an EventHub Namespace.

    Note: At least one of connection_string or endpoint_uri must be specified

    endpointUri string
    The endpoint address of an EventHub Namespace. Required when client_id is set.
    userAssignedIdentityClientId string
    The Client Id of the User Assigned Identity with the "Azure Event Hubs Data Sender" role to the target EventHub Namespace. Required when endpoint_uri is set. If not specified the System Assigned Identity will be used.
    name str
    The name of an EventHub.
    connection_string str

    The connection string of an EventHub Namespace.

    Note: At least one of connection_string or endpoint_uri must be specified

    endpoint_uri str
    The endpoint address of an EventHub Namespace. Required when client_id is set.
    user_assigned_identity_client_id str
    The Client Id of the User Assigned Identity with the "Azure Event Hubs Data Sender" role to the target EventHub Namespace. Required when endpoint_uri is set. If not specified the System Assigned Identity will be used.
    name String
    The name of an EventHub.
    connectionString String

    The connection string of an EventHub Namespace.

    Note: At least one of connection_string or endpoint_uri must be specified

    endpointUri String
    The endpoint address of an EventHub Namespace. Required when client_id is set.
    userAssignedIdentityClientId String
    The Client Id of the User Assigned Identity with the "Azure Event Hubs Data Sender" role to the target EventHub Namespace. Required when endpoint_uri is set. If not specified the System Assigned Identity will be used.

    Import

    API Management Loggers can be imported using the resource id, e.g.

    $ pulumi import azure:apimanagement/logger:Logger example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example-rg/providers/Microsoft.ApiManagement/service/example-apim/loggers/example-logger
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi