1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. app
  6. Agent
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.25.0
published on Wednesday, Aug 5, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.25.0
published on Wednesday, Aug 5, 2026 by Pulumi

    Site Reliability Engineer (SRE) Agent resource

    Uses Azure REST API version 2026-01-01.

    Example Usage

    Agents_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var agent = new AzureNative.App.Agent("agent", new()
        {
            AgentName = "testAgent",
            Identity = new AzureNative.App.Inputs.ManagedServiceIdentityArgs
            {
                Type = AzureNative.App.ManagedServiceIdentityType.SystemAssigned,
            },
            Location = "East US",
            Properties = new AzureNative.App.Inputs.AgentPropertiesArgs
            {
                ActionConfiguration = new AzureNative.App.Inputs.ActionConfigurationArgs
                {
                    AccessLevel = AzureNative.App.AgentAccessLevel.High,
                    Identity = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/actionIdentity",
                    Mode = AzureNative.App.AgentMode.Review,
                },
                AgentIdentity = new AzureNative.App.Inputs.AgentIdentityArgs
                {
                    InitialSponsorGroupId = "99999999-aaaa-bbbb-cccc-dddddddddddd",
                },
                AgentSpaceId = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/agentSpaces/testAgentSpace",
                DefaultModel = new AzureNative.App.Inputs.DefaultModelArgs
                {
                    Name = "gpt-5",
                    Provider = "MicrosoftFoundry",
                },
                KnowledgeGraphConfiguration = new AzureNative.App.Inputs.KnowledgeGraphConfigurationArgs
                {
                    Identity = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity",
                    ManagedResources = new[]
                    {
                        "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Storage/storageAccounts/teststorage",
                    },
                },
                LogConfiguration = new AzureNative.App.Inputs.LogConfigurationArgs
                {
                    ApplicationInsightsConfiguration = new AzureNative.App.Inputs.ApplicationInsightsConfigurationArgs
                    {
                        AppId = "87654321-4321-4321-4321-210987654321",
                        ConnectionString = "InstrumentationKey=87654321-4321-4321-4321-210987654321;IngestionEndpoint=https://eastus-0.in.applicationinsights.azure.com/",
                    },
                },
            },
            ResourceGroupName = "examplerg",
            Tags = 
            {
                { "environment", "production" },
                { "team", "platform" },
            },
        });
    
    });
    
    package main
    
    import (
    	app "github.com/pulumi/pulumi-azure-native-sdk/app/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := app.NewAgent(ctx, "agent", &app.AgentArgs{
    			AgentName: pulumi.String("testAgent"),
    			Identity: &app.ManagedServiceIdentityArgs{
    				Type: pulumi.String(app.ManagedServiceIdentityTypeSystemAssigned),
    			},
    			Location: pulumi.String("East US"),
    			Properties: &app.AgentPropertiesArgs{
    				ActionConfiguration: &app.ActionConfigurationArgs{
    					AccessLevel: pulumi.String(app.AgentAccessLevelHigh),
    					Identity:    pulumi.String("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/actionIdentity"),
    					Mode:        pulumi.String(app.AgentModeReview),
    				},
    				AgentIdentity: &app.AgentIdentityArgs{
    					InitialSponsorGroupId: pulumi.String("99999999-aaaa-bbbb-cccc-dddddddddddd"),
    				},
    				AgentSpaceId: pulumi.String("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/agentSpaces/testAgentSpace"),
    				DefaultModel: &app.DefaultModelArgs{
    					Name:     pulumi.String("gpt-5"),
    					Provider: pulumi.String("MicrosoftFoundry"),
    				},
    				KnowledgeGraphConfiguration: &app.KnowledgeGraphConfigurationArgs{
    					Identity: pulumi.String("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity"),
    					ManagedResources: pulumi.StringArray{
    						pulumi.String("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Storage/storageAccounts/teststorage"),
    					},
    				},
    				LogConfiguration: &app.LogConfigurationArgs{
    					ApplicationInsightsConfiguration: &app.ApplicationInsightsConfigurationArgs{
    						AppId:            pulumi.String("87654321-4321-4321-4321-210987654321"),
    						ConnectionString: pulumi.String("InstrumentationKey=87654321-4321-4321-4321-210987654321;IngestionEndpoint=https://eastus-0.in.applicationinsights.azure.com/"),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("examplerg"),
    			Tags: pulumi.StringMap{
    				"environment": pulumi.String("production"),
    				"team":        pulumi.String("platform"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_app_agent" "agent" {
      agent_name = "testAgent"
      identity = {
        type = "SystemAssigned"
      }
      location = "East US"
      properties = {
        action_configuration = {
          access_level = "High"
          identity     = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/actionIdentity"
          mode         = "Review"
        }
        agent_identity = {
          initial_sponsor_group_id = "99999999-aaaa-bbbb-cccc-dddddddddddd"
        }
        agent_space_id = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/agentSpaces/testAgentSpace"
        default_model = {
          name     = "gpt-5"
          provider = "MicrosoftFoundry"
        }
        knowledge_graph_configuration = {
          identity          = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity"
          managed_resources = ["/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Storage/storageAccounts/teststorage"]
        }
        log_configuration = {
          application_insights_configuration = {
            app_id            = "87654321-4321-4321-4321-210987654321"
            connection_string = "InstrumentationKey=87654321-4321-4321-4321-210987654321;IngestionEndpoint=https://eastus-0.in.applicationinsights.azure.com/"
          }
        }
      }
      resource_group_name = "examplerg"
      tags = {
        "environment" = "production"
        "team"        = "platform"
      }
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.app.Agent;
    import com.pulumi.azurenative.app.AgentArgs;
    import com.pulumi.azurenative.app.inputs.ManagedServiceIdentityArgs;
    import com.pulumi.azurenative.app.inputs.AgentPropertiesArgs;
    import com.pulumi.azurenative.app.inputs.ActionConfigurationArgs;
    import com.pulumi.azurenative.app.inputs.AgentIdentityArgs;
    import com.pulumi.azurenative.app.inputs.DefaultModelArgs;
    import com.pulumi.azurenative.app.inputs.KnowledgeGraphConfigurationArgs;
    import com.pulumi.azurenative.app.inputs.LogConfigurationArgs;
    import com.pulumi.azurenative.app.inputs.ApplicationInsightsConfigurationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 agent = new Agent("agent", AgentArgs.builder()
                .agentName("testAgent")
                .identity(ManagedServiceIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .location("East US")
                .properties(AgentPropertiesArgs.builder()
                    .actionConfiguration(ActionConfigurationArgs.builder()
                        .accessLevel("High")
                        .identity("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/actionIdentity")
                        .mode("Review")
                        .build())
                    .agentIdentity(AgentIdentityArgs.builder()
                        .initialSponsorGroupId("99999999-aaaa-bbbb-cccc-dddddddddddd")
                        .build())
                    .agentSpaceId("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/agentSpaces/testAgentSpace")
                    .defaultModel(DefaultModelArgs.builder()
                        .name("gpt-5")
                        .provider("MicrosoftFoundry")
                        .build())
                    .knowledgeGraphConfiguration(KnowledgeGraphConfigurationArgs.builder()
                        .identity("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity")
                        .managedResources("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Storage/storageAccounts/teststorage")
                        .build())
                    .logConfiguration(LogConfigurationArgs.builder()
                        .applicationInsightsConfiguration(ApplicationInsightsConfigurationArgs.builder()
                            .appId("87654321-4321-4321-4321-210987654321")
                            .connectionString("InstrumentationKey=87654321-4321-4321-4321-210987654321;IngestionEndpoint=https://eastus-0.in.applicationinsights.azure.com/")
                            .build())
                        .build())
                    .build())
                .resourceGroupName("examplerg")
                .tags(Map.ofEntries(
                    Map.entry("environment", "production"),
                    Map.entry("team", "platform")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const agent = new azure_native.app.Agent("agent", {
        agentName: "testAgent",
        identity: {
            type: azure_native.app.ManagedServiceIdentityType.SystemAssigned,
        },
        location: "East US",
        properties: {
            actionConfiguration: {
                accessLevel: azure_native.app.AgentAccessLevel.High,
                identity: "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/actionIdentity",
                mode: azure_native.app.AgentMode.Review,
            },
            agentIdentity: {
                initialSponsorGroupId: "99999999-aaaa-bbbb-cccc-dddddddddddd",
            },
            agentSpaceId: "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/agentSpaces/testAgentSpace",
            defaultModel: {
                name: "gpt-5",
                provider: "MicrosoftFoundry",
            },
            knowledgeGraphConfiguration: {
                identity: "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity",
                managedResources: ["/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Storage/storageAccounts/teststorage"],
            },
            logConfiguration: {
                applicationInsightsConfiguration: {
                    appId: "87654321-4321-4321-4321-210987654321",
                    connectionString: "InstrumentationKey=87654321-4321-4321-4321-210987654321;IngestionEndpoint=https://eastus-0.in.applicationinsights.azure.com/",
                },
            },
        },
        resourceGroupName: "examplerg",
        tags: {
            environment: "production",
            team: "platform",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    agent = azure_native.app.Agent("agent",
        agent_name="testAgent",
        identity={
            "type": azure_native.app.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
        },
        location="East US",
        properties={
            "action_configuration": {
                "access_level": azure_native.app.AgentAccessLevel.HIGH,
                "identity": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/actionIdentity",
                "mode": azure_native.app.AgentMode.REVIEW,
            },
            "agent_identity": {
                "initial_sponsor_group_id": "99999999-aaaa-bbbb-cccc-dddddddddddd",
            },
            "agent_space_id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/agentSpaces/testAgentSpace",
            "default_model": {
                "name": "gpt-5",
                "provider": "MicrosoftFoundry",
            },
            "knowledge_graph_configuration": {
                "identity": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity",
                "managed_resources": ["/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Storage/storageAccounts/teststorage"],
            },
            "log_configuration": {
                "application_insights_configuration": {
                    "app_id": "87654321-4321-4321-4321-210987654321",
                    "connection_string": "InstrumentationKey=87654321-4321-4321-4321-210987654321;IngestionEndpoint=https://eastus-0.in.applicationinsights.azure.com/",
                },
            },
        },
        resource_group_name="examplerg",
        tags={
            "environment": "production",
            "team": "platform",
        })
    
    resources:
      agent:
        type: azure-native:app:Agent
        properties:
          agentName: testAgent
          identity:
            type: SystemAssigned
          location: East US
          properties:
            actionConfiguration:
              accessLevel: High
              identity: /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/actionIdentity
              mode: Review
            agentIdentity:
              initialSponsorGroupId: 99999999-aaaa-bbbb-cccc-dddddddddddd
            agentSpaceId: /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/agentSpaces/testAgentSpace
            defaultModel:
              name: gpt-5
              provider: MicrosoftFoundry
            knowledgeGraphConfiguration:
              identity: /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity
              managedResources:
                - /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Storage/storageAccounts/teststorage
            logConfiguration:
              applicationInsightsConfiguration:
                appId: 87654321-4321-4321-4321-210987654321
                connectionString: InstrumentationKey=87654321-4321-4321-4321-210987654321;IngestionEndpoint=https://eastus-0.in.applicationinsights.azure.com/
          resourceGroupName: examplerg
          tags:
            environment: production
            team: platform
    

    Create Agent Resource

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

    Constructor syntax

    new Agent(name: string, args: AgentArgs, opts?: CustomResourceOptions);
    @overload
    def Agent(resource_name: str,
              args: AgentArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Agent(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              resource_group_name: Optional[str] = None,
              agent_name: Optional[str] = None,
              identity: Optional[ManagedServiceIdentityArgs] = None,
              location: Optional[str] = None,
              properties: Optional[AgentPropertiesArgs] = None,
              tags: Optional[Mapping[str, str]] = None)
    func NewAgent(ctx *Context, name string, args AgentArgs, opts ...ResourceOption) (*Agent, error)
    public Agent(string name, AgentArgs args, CustomResourceOptions? opts = null)
    public Agent(String name, AgentArgs args)
    public Agent(String name, AgentArgs args, CustomResourceOptions options)
    
    type: azure-native:app:Agent
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_app_agent" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args AgentArgs
    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 AgentArgs
    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 AgentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentArgs
    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 agentResource = new AzureNative.App.Agent("agentResource", new()
    {
        ResourceGroupName = "string",
        AgentName = "string",
        Identity = new AzureNative.App.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        Properties = new AzureNative.App.Inputs.AgentPropertiesArgs
        {
            ActionConfiguration = new AzureNative.App.Inputs.ActionConfigurationArgs
            {
                AccessLevel = "string",
                Identity = "string",
                Mode = "string",
            },
            AgentIdentity = new AzureNative.App.Inputs.AgentIdentityArgs
            {
                InitialSponsorGroupId = "string",
            },
            AgentSpaceId = "string",
            DefaultModel = new AzureNative.App.Inputs.DefaultModelArgs
            {
                Name = "string",
                Provider = "string",
            },
            IncidentManagementConfiguration = new AzureNative.App.Inputs.IncidentManagementConfigurationArgs
            {
                ConnectionKey = "string",
                ConnectionName = "string",
                ConnectionUrl = "string",
                OboUser = "string",
                Type = "string",
            },
            KnowledgeGraphConfiguration = new AzureNative.App.Inputs.KnowledgeGraphConfigurationArgs
            {
                Identity = "string",
                ManagedResources = new[]
                {
                    "string",
                },
            },
            LogConfiguration = new AzureNative.App.Inputs.LogConfigurationArgs
            {
                ApplicationInsightsConfiguration = new AzureNative.App.Inputs.ApplicationInsightsConfigurationArgs
                {
                    AppId = "string",
                    ConnectionString = "string",
                },
            },
            UpgradeChannel = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := app.NewAgent(ctx, "agentResource", &app.AgentArgs{
    	ResourceGroupName: pulumi.String("string"),
    	AgentName:         pulumi.String("string"),
    	Identity: &app.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location: pulumi.String("string"),
    	Properties: &app.AgentPropertiesArgs{
    		ActionConfiguration: &app.ActionConfigurationArgs{
    			AccessLevel: pulumi.String("string"),
    			Identity:    pulumi.String("string"),
    			Mode:        pulumi.String("string"),
    		},
    		AgentIdentity: &app.AgentIdentityArgs{
    			InitialSponsorGroupId: pulumi.String("string"),
    		},
    		AgentSpaceId: pulumi.String("string"),
    		DefaultModel: &app.DefaultModelArgs{
    			Name:     pulumi.String("string"),
    			Provider: pulumi.String("string"),
    		},
    		IncidentManagementConfiguration: &app.IncidentManagementConfigurationArgs{
    			ConnectionKey:  pulumi.String("string"),
    			ConnectionName: pulumi.String("string"),
    			ConnectionUrl:  pulumi.String("string"),
    			OboUser:        pulumi.String("string"),
    			Type:           pulumi.String("string"),
    		},
    		KnowledgeGraphConfiguration: &app.KnowledgeGraphConfigurationArgs{
    			Identity: pulumi.String("string"),
    			ManagedResources: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		LogConfiguration: &app.LogConfigurationArgs{
    			ApplicationInsightsConfiguration: &app.ApplicationInsightsConfigurationArgs{
    				AppId:            pulumi.String("string"),
    				ConnectionString: pulumi.String("string"),
    			},
    		},
    		UpgradeChannel: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_app_agent" "agentResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name = "string"
      agent_name          = "string"
      identity = {
        type                     = "string"
        user_assigned_identities = ["string"]
      }
      location = "string"
      properties = {
        action_configuration = {
          access_level = "string"
          identity     = "string"
          mode         = "string"
        }
        agent_identity = {
          initial_sponsor_group_id = "string"
        }
        agent_space_id = "string"
        default_model = {
          name     = "string"
          provider = "string"
        }
        incident_management_configuration = {
          connection_key  = "string"
          connection_name = "string"
          connection_url  = "string"
          obo_user        = "string"
          type            = "string"
        }
        knowledge_graph_configuration = {
          identity          = "string"
          managed_resources = ["string"]
        }
        log_configuration = {
          application_insights_configuration = {
            app_id            = "string"
            connection_string = "string"
          }
        }
        upgrade_channel = "string"
      }
      tags = {
        "string" = "string"
      }
    }
    
    var agentResource = new com.pulumi.azurenative.app.Agent("agentResource", com.pulumi.azurenative.app.AgentArgs.builder()
        .resourceGroupName("string")
        .agentName("string")
        .identity(com.pulumi.azurenative.app.inputs.ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .properties(com.pulumi.azurenative.app.inputs.AgentPropertiesArgs.builder()
            .actionConfiguration(ActionConfigurationArgs.builder()
                .accessLevel("string")
                .identity("string")
                .mode("string")
                .build())
            .agentIdentity(AgentIdentityArgs.builder()
                .initialSponsorGroupId("string")
                .build())
            .agentSpaceId("string")
            .defaultModel(DefaultModelArgs.builder()
                .name("string")
                .provider("string")
                .build())
            .incidentManagementConfiguration(IncidentManagementConfigurationArgs.builder()
                .connectionKey("string")
                .connectionName("string")
                .connectionUrl("string")
                .oboUser("string")
                .type("string")
                .build())
            .knowledgeGraphConfiguration(KnowledgeGraphConfigurationArgs.builder()
                .identity("string")
                .managedResources("string")
                .build())
            .logConfiguration(com.pulumi.azurenative.app.inputs.LogConfigurationArgs.builder()
                .applicationInsightsConfiguration(ApplicationInsightsConfigurationArgs.builder()
                    .appId("string")
                    .connectionString("string")
                    .build())
                .build())
            .upgradeChannel("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    agent_resource = azure_native.app.Agent("agentResource",
        resource_group_name="string",
        agent_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        properties={
            "action_configuration": {
                "access_level": "string",
                "identity": "string",
                "mode": "string",
            },
            "agent_identity": {
                "initial_sponsor_group_id": "string",
            },
            "agent_space_id": "string",
            "default_model": {
                "name": "string",
                "provider": "string",
            },
            "incident_management_configuration": {
                "connection_key": "string",
                "connection_name": "string",
                "connection_url": "string",
                "obo_user": "string",
                "type": "string",
            },
            "knowledge_graph_configuration": {
                "identity": "string",
                "managed_resources": ["string"],
            },
            "log_configuration": {
                "application_insights_configuration": {
                    "app_id": "string",
                    "connection_string": "string",
                },
            },
            "upgrade_channel": "string",
        },
        tags={
            "string": "string",
        })
    
    const agentResource = new azure_native.app.Agent("agentResource", {
        resourceGroupName: "string",
        agentName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        properties: {
            actionConfiguration: {
                accessLevel: "string",
                identity: "string",
                mode: "string",
            },
            agentIdentity: {
                initialSponsorGroupId: "string",
            },
            agentSpaceId: "string",
            defaultModel: {
                name: "string",
                provider: "string",
            },
            incidentManagementConfiguration: {
                connectionKey: "string",
                connectionName: "string",
                connectionUrl: "string",
                oboUser: "string",
                type: "string",
            },
            knowledgeGraphConfiguration: {
                identity: "string",
                managedResources: ["string"],
            },
            logConfiguration: {
                applicationInsightsConfiguration: {
                    appId: "string",
                    connectionString: "string",
                },
            },
            upgradeChannel: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:app:Agent
    properties:
        agentName: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        properties:
            actionConfiguration:
                accessLevel: string
                identity: string
                mode: string
            agentIdentity:
                initialSponsorGroupId: string
            agentSpaceId: string
            defaultModel:
                name: string
                provider: string
            incidentManagementConfiguration:
                connectionKey: string
                connectionName: string
                connectionUrl: string
                oboUser: string
                type: string
            knowledgeGraphConfiguration:
                identity: string
                managedResources:
                    - string
            logConfiguration:
                applicationInsightsConfiguration:
                    appId: string
                    connectionString: string
            upgradeChannel: string
        resourceGroupName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AgentName string
    The name of the Agent
    Identity Pulumi.AzureNative.App.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.App.Inputs.AgentProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AgentName string
    The name of the Agent
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Properties AgentPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    agent_name string
    The name of the Agent
    identity object
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    properties object
    The resource-specific properties for this resource.
    tags map(string)
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    agentName String
    The name of the Agent
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    properties AgentProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    agentName string
    The name of the Agent
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    properties AgentProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    agent_name str
    The name of the Agent
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    properties AgentPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    agentName String
    The name of the Agent
    identity Property Map
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.App.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ActionConfiguration, ActionConfigurationArgs

    Configuration for action
    AccessLevel string | Pulumi.AzureNative.App.AgentAccessLevel
    The access level of the action
    Identity string
    The identity used by the action
    Mode string | Pulumi.AzureNative.App.AgentMode
    The mode of the action
    AccessLevel string | AgentAccessLevel
    The access level of the action
    Identity string
    The identity used by the action
    Mode string | AgentMode
    The mode of the action
    access_level string | "Low" | "High"
    The access level of the action
    identity string
    The identity used by the action
    mode string | "Autonomous" | "Review" | "ReadOnly"
    The mode of the action
    accessLevel String | AgentAccessLevel
    The access level of the action
    identity String
    The identity used by the action
    mode String | AgentMode
    The mode of the action
    accessLevel string | AgentAccessLevel
    The access level of the action
    identity string
    The identity used by the action
    mode string | AgentMode
    The mode of the action
    access_level str | AgentAccessLevel
    The access level of the action
    identity str
    The identity used by the action
    mode str | AgentMode
    The mode of the action
    accessLevel String | "Low" | "High"
    The access level of the action
    identity String
    The identity used by the action
    mode String | "Autonomous" | "Review" | "ReadOnly"
    The mode of the action

    ActionConfigurationResponse, ActionConfigurationResponseArgs

    Configuration for action
    AccessLevel string
    The access level of the action
    Identity string
    The identity used by the action
    Mode string
    The mode of the action
    AccessLevel string
    The access level of the action
    Identity string
    The identity used by the action
    Mode string
    The mode of the action
    access_level string
    The access level of the action
    identity string
    The identity used by the action
    mode string
    The mode of the action
    accessLevel String
    The access level of the action
    identity String
    The identity used by the action
    mode String
    The mode of the action
    accessLevel string
    The access level of the action
    identity string
    The identity used by the action
    mode string
    The mode of the action
    access_level str
    The access level of the action
    identity str
    The identity used by the action
    mode str
    The mode of the action
    accessLevel String
    The access level of the action
    identity String
    The identity used by the action
    mode String
    The mode of the action

    AgentAccessLevel, AgentAccessLevelArgs

    Low
    Low Agent has read-only permissions on managed resource groups
    High
    High Agent can take approved actions on resources using its own managed identity
    AgentAccessLevelLow
    Low Agent has read-only permissions on managed resource groups
    AgentAccessLevelHigh
    High Agent can take approved actions on resources using its own managed identity
    "Low"
    Low Agent has read-only permissions on managed resource groups
    "High"
    High Agent can take approved actions on resources using its own managed identity
    Low
    Low Agent has read-only permissions on managed resource groups
    High
    High Agent can take approved actions on resources using its own managed identity
    Low
    Low Agent has read-only permissions on managed resource groups
    High
    High Agent can take approved actions on resources using its own managed identity
    LOW
    Low Agent has read-only permissions on managed resource groups
    HIGH
    High Agent can take approved actions on resources using its own managed identity
    "Low"
    Low Agent has read-only permissions on managed resource groups
    "High"
    High Agent can take approved actions on resources using its own managed identity

    AgentIdentity, AgentIdentityArgs

    Agent identity configuration
    InitialSponsorGroupId string
    Initial sponsor group ID (required for agent identity)
    InitialSponsorGroupId string
    Initial sponsor group ID (required for agent identity)
    initial_sponsor_group_id string
    Initial sponsor group ID (required for agent identity)
    initialSponsorGroupId String
    Initial sponsor group ID (required for agent identity)
    initialSponsorGroupId string
    Initial sponsor group ID (required for agent identity)
    initial_sponsor_group_id str
    Initial sponsor group ID (required for agent identity)
    initialSponsorGroupId String
    Initial sponsor group ID (required for agent identity)

    AgentIdentityResponse, AgentIdentityResponseArgs

    Agent identity configuration
    ClientId string
    Client ID (GUID) for the agent identity
    Enabled bool
    Indicates whether the agent identity is enabled
    InitialSponsorGroupId string
    Initial sponsor group ID (required for agent identity)
    ClientId string
    Client ID (GUID) for the agent identity
    Enabled bool
    Indicates whether the agent identity is enabled
    InitialSponsorGroupId string
    Initial sponsor group ID (required for agent identity)
    client_id string
    Client ID (GUID) for the agent identity
    enabled bool
    Indicates whether the agent identity is enabled
    initial_sponsor_group_id string
    Initial sponsor group ID (required for agent identity)
    clientId String
    Client ID (GUID) for the agent identity
    enabled Boolean
    Indicates whether the agent identity is enabled
    initialSponsorGroupId String
    Initial sponsor group ID (required for agent identity)
    clientId string
    Client ID (GUID) for the agent identity
    enabled boolean
    Indicates whether the agent identity is enabled
    initialSponsorGroupId string
    Initial sponsor group ID (required for agent identity)
    client_id str
    Client ID (GUID) for the agent identity
    enabled bool
    Indicates whether the agent identity is enabled
    initial_sponsor_group_id str
    Initial sponsor group ID (required for agent identity)
    clientId String
    Client ID (GUID) for the agent identity
    enabled Boolean
    Indicates whether the agent identity is enabled
    initialSponsorGroupId String
    Initial sponsor group ID (required for agent identity)

    AgentMode, AgentModeArgs

    Autonomous
    Autonomous Write actions are executed automatically without user approval
    Review
    Review Write actions require user approval before execution
    ReadOnly
    ReadOnly No write actions are executed
    AgentModeAutonomous
    Autonomous Write actions are executed automatically without user approval
    AgentModeReview
    Review Write actions require user approval before execution
    AgentModeReadOnly
    ReadOnly No write actions are executed
    "Autonomous"
    Autonomous Write actions are executed automatically without user approval
    "Review"
    Review Write actions require user approval before execution
    "ReadOnly"
    ReadOnly No write actions are executed
    Autonomous
    Autonomous Write actions are executed automatically without user approval
    Review
    Review Write actions require user approval before execution
    ReadOnly
    ReadOnly No write actions are executed
    Autonomous
    Autonomous Write actions are executed automatically without user approval
    Review
    Review Write actions require user approval before execution
    ReadOnly
    ReadOnly No write actions are executed
    AUTONOMOUS
    Autonomous Write actions are executed automatically without user approval
    REVIEW
    Review Write actions require user approval before execution
    READ_ONLY
    ReadOnly No write actions are executed
    "Autonomous"
    Autonomous Write actions are executed automatically without user approval
    "Review"
    Review Write actions require user approval before execution
    "ReadOnly"
    ReadOnly No write actions are executed

    AgentProperties, AgentPropertiesArgs

    Properties of the Agent
    ActionConfiguration ActionConfiguration
    Configuration for action
    AgentIdentity AgentIdentity
    Agent identity configuration for accessing resources
    AgentSpaceId string
    The agent space ID referenced by the agent
    DefaultModel DefaultModel
    Default AI model configuration for the agent
    IncidentManagementConfiguration IncidentManagementConfiguration
    Incident management configurations
    KnowledgeGraphConfiguration KnowledgeGraphConfiguration
    Knowledge graph configuration for agent
    LogConfiguration LogConfiguration
    Log configurations
    UpgradeChannel string | UpgradeChannel
    The upgrade channel of the agent
    action_configuration object
    Configuration for action
    agent_identity object
    Agent identity configuration for accessing resources
    agent_space_id string
    The agent space ID referenced by the agent
    default_model object
    Default AI model configuration for the agent
    incident_management_configuration object
    Incident management configurations
    knowledge_graph_configuration object
    Knowledge graph configuration for agent
    log_configuration object
    Log configurations
    upgrade_channel string | "Preview" | "Stable"
    The upgrade channel of the agent
    actionConfiguration ActionConfiguration
    Configuration for action
    agentIdentity AgentIdentity
    Agent identity configuration for accessing resources
    agentSpaceId String
    The agent space ID referenced by the agent
    defaultModel DefaultModel
    Default AI model configuration for the agent
    incidentManagementConfiguration IncidentManagementConfiguration
    Incident management configurations
    knowledgeGraphConfiguration KnowledgeGraphConfiguration
    Knowledge graph configuration for agent
    logConfiguration LogConfiguration
    Log configurations
    upgradeChannel String | UpgradeChannel
    The upgrade channel of the agent
    actionConfiguration ActionConfiguration
    Configuration for action
    agentIdentity AgentIdentity
    Agent identity configuration for accessing resources
    agentSpaceId string
    The agent space ID referenced by the agent
    defaultModel DefaultModel
    Default AI model configuration for the agent
    incidentManagementConfiguration IncidentManagementConfiguration
    Incident management configurations
    knowledgeGraphConfiguration KnowledgeGraphConfiguration
    Knowledge graph configuration for agent
    logConfiguration LogConfiguration
    Log configurations
    upgradeChannel string | UpgradeChannel
    The upgrade channel of the agent
    action_configuration ActionConfiguration
    Configuration for action
    agent_identity AgentIdentity
    Agent identity configuration for accessing resources
    agent_space_id str
    The agent space ID referenced by the agent
    default_model DefaultModel
    Default AI model configuration for the agent
    incident_management_configuration IncidentManagementConfiguration
    Incident management configurations
    knowledge_graph_configuration KnowledgeGraphConfiguration
    Knowledge graph configuration for agent
    log_configuration LogConfiguration
    Log configurations
    upgrade_channel str | UpgradeChannel
    The upgrade channel of the agent
    actionConfiguration Property Map
    Configuration for action
    agentIdentity Property Map
    Agent identity configuration for accessing resources
    agentSpaceId String
    The agent space ID referenced by the agent
    defaultModel Property Map
    Default AI model configuration for the agent
    incidentManagementConfiguration Property Map
    Incident management configurations
    knowledgeGraphConfiguration Property Map
    Knowledge graph configuration for agent
    logConfiguration Property Map
    Log configurations
    upgradeChannel String | "Preview" | "Stable"
    The upgrade channel of the agent

    AgentPropertiesResponse, AgentPropertiesResponseArgs

    Properties of the Agent
    AgentEndpoint string
    The endpoint of the Agent
    PowerState string
    The power state of the Agent
    ProvisioningState string
    Provisioning state of the Agent
    RunningState string
    The running state of the Agent
    ActionConfiguration Pulumi.AzureNative.App.Inputs.ActionConfigurationResponse
    Configuration for action
    AgentIdentity Pulumi.AzureNative.App.Inputs.AgentIdentityResponse
    Agent identity configuration for accessing resources
    AgentSpaceId string
    The agent space ID referenced by the agent
    DefaultModel Pulumi.AzureNative.App.Inputs.DefaultModelResponse
    Default AI model configuration for the agent
    IncidentManagementConfiguration Pulumi.AzureNative.App.Inputs.IncidentManagementConfigurationResponse
    Incident management configurations
    KnowledgeGraphConfiguration Pulumi.AzureNative.App.Inputs.KnowledgeGraphConfigurationResponse
    Knowledge graph configuration for agent
    LogConfiguration Pulumi.AzureNative.App.Inputs.LogConfigurationResponse
    Log configurations
    UpgradeChannel string
    The upgrade channel of the agent
    AgentEndpoint string
    The endpoint of the Agent
    PowerState string
    The power state of the Agent
    ProvisioningState string
    Provisioning state of the Agent
    RunningState string
    The running state of the Agent
    ActionConfiguration ActionConfigurationResponse
    Configuration for action
    AgentIdentity AgentIdentityResponse
    Agent identity configuration for accessing resources
    AgentSpaceId string
    The agent space ID referenced by the agent
    DefaultModel DefaultModelResponse
    Default AI model configuration for the agent
    IncidentManagementConfiguration IncidentManagementConfigurationResponse
    Incident management configurations
    KnowledgeGraphConfiguration KnowledgeGraphConfigurationResponse
    Knowledge graph configuration for agent
    LogConfiguration LogConfigurationResponse
    Log configurations
    UpgradeChannel string
    The upgrade channel of the agent
    agent_endpoint string
    The endpoint of the Agent
    power_state string
    The power state of the Agent
    provisioning_state string
    Provisioning state of the Agent
    running_state string
    The running state of the Agent
    action_configuration object
    Configuration for action
    agent_identity object
    Agent identity configuration for accessing resources
    agent_space_id string
    The agent space ID referenced by the agent
    default_model object
    Default AI model configuration for the agent
    incident_management_configuration object
    Incident management configurations
    knowledge_graph_configuration object
    Knowledge graph configuration for agent
    log_configuration object
    Log configurations
    upgrade_channel string
    The upgrade channel of the agent
    agentEndpoint String
    The endpoint of the Agent
    powerState String
    The power state of the Agent
    provisioningState String
    Provisioning state of the Agent
    runningState String
    The running state of the Agent
    actionConfiguration ActionConfigurationResponse
    Configuration for action
    agentIdentity AgentIdentityResponse
    Agent identity configuration for accessing resources
    agentSpaceId String
    The agent space ID referenced by the agent
    defaultModel DefaultModelResponse
    Default AI model configuration for the agent
    incidentManagementConfiguration IncidentManagementConfigurationResponse
    Incident management configurations
    knowledgeGraphConfiguration KnowledgeGraphConfigurationResponse
    Knowledge graph configuration for agent
    logConfiguration LogConfigurationResponse
    Log configurations
    upgradeChannel String
    The upgrade channel of the agent
    agentEndpoint string
    The endpoint of the Agent
    powerState string
    The power state of the Agent
    provisioningState string
    Provisioning state of the Agent
    runningState string
    The running state of the Agent
    actionConfiguration ActionConfigurationResponse
    Configuration for action
    agentIdentity AgentIdentityResponse
    Agent identity configuration for accessing resources
    agentSpaceId string
    The agent space ID referenced by the agent
    defaultModel DefaultModelResponse
    Default AI model configuration for the agent
    incidentManagementConfiguration IncidentManagementConfigurationResponse
    Incident management configurations
    knowledgeGraphConfiguration KnowledgeGraphConfigurationResponse
    Knowledge graph configuration for agent
    logConfiguration LogConfigurationResponse
    Log configurations
    upgradeChannel string
    The upgrade channel of the agent
    agent_endpoint str
    The endpoint of the Agent
    power_state str
    The power state of the Agent
    provisioning_state str
    Provisioning state of the Agent
    running_state str
    The running state of the Agent
    action_configuration ActionConfigurationResponse
    Configuration for action
    agent_identity AgentIdentityResponse
    Agent identity configuration for accessing resources
    agent_space_id str
    The agent space ID referenced by the agent
    default_model DefaultModelResponse
    Default AI model configuration for the agent
    incident_management_configuration IncidentManagementConfigurationResponse
    Incident management configurations
    knowledge_graph_configuration KnowledgeGraphConfigurationResponse
    Knowledge graph configuration for agent
    log_configuration LogConfigurationResponse
    Log configurations
    upgrade_channel str
    The upgrade channel of the agent
    agentEndpoint String
    The endpoint of the Agent
    powerState String
    The power state of the Agent
    provisioningState String
    Provisioning state of the Agent
    runningState String
    The running state of the Agent
    actionConfiguration Property Map
    Configuration for action
    agentIdentity Property Map
    Agent identity configuration for accessing resources
    agentSpaceId String
    The agent space ID referenced by the agent
    defaultModel Property Map
    Default AI model configuration for the agent
    incidentManagementConfiguration Property Map
    Incident management configurations
    knowledgeGraphConfiguration Property Map
    Knowledge graph configuration for agent
    logConfiguration Property Map
    Log configurations
    upgradeChannel String
    The upgrade channel of the agent

    ApplicationInsightsConfiguration, ApplicationInsightsConfigurationArgs

    Application Insights Configuration
    AppId string
    The Application ID for the Application Insights resource
    ConnectionString string
    The connection string for the Application Insights resource
    AppId string
    The Application ID for the Application Insights resource
    ConnectionString string
    The connection string for the Application Insights resource
    app_id string
    The Application ID for the Application Insights resource
    connection_string string
    The connection string for the Application Insights resource
    appId String
    The Application ID for the Application Insights resource
    connectionString String
    The connection string for the Application Insights resource
    appId string
    The Application ID for the Application Insights resource
    connectionString string
    The connection string for the Application Insights resource
    app_id str
    The Application ID for the Application Insights resource
    connection_string str
    The connection string for the Application Insights resource
    appId String
    The Application ID for the Application Insights resource
    connectionString String
    The connection string for the Application Insights resource

    ApplicationInsightsConfigurationResponse, ApplicationInsightsConfigurationResponseArgs

    Application Insights Configuration
    AppId string
    The Application ID for the Application Insights resource
    ConnectionString string
    The connection string for the Application Insights resource
    AppId string
    The Application ID for the Application Insights resource
    ConnectionString string
    The connection string for the Application Insights resource
    app_id string
    The Application ID for the Application Insights resource
    connection_string string
    The connection string for the Application Insights resource
    appId String
    The Application ID for the Application Insights resource
    connectionString String
    The connection string for the Application Insights resource
    appId string
    The Application ID for the Application Insights resource
    connectionString string
    The connection string for the Application Insights resource
    app_id str
    The Application ID for the Application Insights resource
    connection_string str
    The connection string for the Application Insights resource
    appId String
    The Application ID for the Application Insights resource
    connectionString String
    The connection string for the Application Insights resource

    DefaultModel, DefaultModelArgs

    Default AI model configuration
    Name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    Provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    Name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    Provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name String
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider String
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name str
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider str
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name String
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider String
    AI provider name (e.g., MicrosoftFoundry, Anthropic)

    DefaultModelResponse, DefaultModelResponseArgs

    Default AI model configuration
    Name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    Provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    Name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    Provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name String
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider String
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name string
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider string
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name str
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider str
    AI provider name (e.g., MicrosoftFoundry, Anthropic)
    name String
    Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5)
    provider String
    AI provider name (e.g., MicrosoftFoundry, Anthropic)

    IncidentManagementConfiguration, IncidentManagementConfigurationArgs

    Incident Management Configurations
    ConnectionKey string
    The key for the connection
    ConnectionName string
    The name of the connection
    ConnectionUrl string
    The URL of the connection
    OboUser string
    The user for the connection
    Type string
    The type of incident management system
    ConnectionKey string
    The key for the connection
    ConnectionName string
    The name of the connection
    ConnectionUrl string
    The URL of the connection
    OboUser string
    The user for the connection
    Type string
    The type of incident management system
    connection_key string
    The key for the connection
    connection_name string
    The name of the connection
    connection_url string
    The URL of the connection
    obo_user string
    The user for the connection
    type string
    The type of incident management system
    connectionKey String
    The key for the connection
    connectionName String
    The name of the connection
    connectionUrl String
    The URL of the connection
    oboUser String
    The user for the connection
    type String
    The type of incident management system
    connectionKey string
    The key for the connection
    connectionName string
    The name of the connection
    connectionUrl string
    The URL of the connection
    oboUser string
    The user for the connection
    type string
    The type of incident management system
    connection_key str
    The key for the connection
    connection_name str
    The name of the connection
    connection_url str
    The URL of the connection
    obo_user str
    The user for the connection
    type str
    The type of incident management system
    connectionKey String
    The key for the connection
    connectionName String
    The name of the connection
    connectionUrl String
    The URL of the connection
    oboUser String
    The user for the connection
    type String
    The type of incident management system

    IncidentManagementConfigurationResponse, IncidentManagementConfigurationResponseArgs

    Incident Management Configurations
    ConnectionKey string
    The key for the connection
    ConnectionName string
    The name of the connection
    ConnectionUrl string
    The URL of the connection
    OboUser string
    The user for the connection
    Type string
    The type of incident management system
    ConnectionKey string
    The key for the connection
    ConnectionName string
    The name of the connection
    ConnectionUrl string
    The URL of the connection
    OboUser string
    The user for the connection
    Type string
    The type of incident management system
    connection_key string
    The key for the connection
    connection_name string
    The name of the connection
    connection_url string
    The URL of the connection
    obo_user string
    The user for the connection
    type string
    The type of incident management system
    connectionKey String
    The key for the connection
    connectionName String
    The name of the connection
    connectionUrl String
    The URL of the connection
    oboUser String
    The user for the connection
    type String
    The type of incident management system
    connectionKey string
    The key for the connection
    connectionName string
    The name of the connection
    connectionUrl string
    The URL of the connection
    oboUser string
    The user for the connection
    type string
    The type of incident management system
    connection_key str
    The key for the connection
    connection_name str
    The name of the connection
    connection_url str
    The URL of the connection
    obo_user str
    The user for the connection
    type str
    The type of incident management system
    connectionKey String
    The key for the connection
    connectionName String
    The name of the connection
    connectionUrl String
    The URL of the connection
    oboUser String
    The user for the connection
    type String
    The type of incident management system

    KnowledgeGraphConfiguration, KnowledgeGraphConfigurationArgs

    Knowledge graph configuration for agent
    Identity string
    The identity used to access the knowledge graph
    ManagedResources List<string>
    The list of resources managed by agent
    Identity string
    The identity used to access the knowledge graph
    ManagedResources []string
    The list of resources managed by agent
    identity string
    The identity used to access the knowledge graph
    managed_resources list(string)
    The list of resources managed by agent
    identity String
    The identity used to access the knowledge graph
    managedResources List<String>
    The list of resources managed by agent
    identity string
    The identity used to access the knowledge graph
    managedResources string[]
    The list of resources managed by agent
    identity str
    The identity used to access the knowledge graph
    managed_resources Sequence[str]
    The list of resources managed by agent
    identity String
    The identity used to access the knowledge graph
    managedResources List<String>
    The list of resources managed by agent

    KnowledgeGraphConfigurationResponse, KnowledgeGraphConfigurationResponseArgs

    Knowledge graph configuration for agent
    Identity string
    The identity used to access the knowledge graph
    ManagedResources List<string>
    The list of resources managed by agent
    Identity string
    The identity used to access the knowledge graph
    ManagedResources []string
    The list of resources managed by agent
    identity string
    The identity used to access the knowledge graph
    managed_resources list(string)
    The list of resources managed by agent
    identity String
    The identity used to access the knowledge graph
    managedResources List<String>
    The list of resources managed by agent
    identity string
    The identity used to access the knowledge graph
    managedResources string[]
    The list of resources managed by agent
    identity str
    The identity used to access the knowledge graph
    managed_resources Sequence[str]
    The list of resources managed by agent
    identity String
    The identity used to access the knowledge graph
    managedResources List<String>
    The list of resources managed by agent

    LogConfiguration, LogConfigurationArgs

    Log Configurations
    application_insights_configuration object
    Application Insights Configuration
    applicationInsightsConfiguration Property Map
    Application Insights Configuration

    LogConfigurationResponse, LogConfigurationResponseArgs

    Log Configurations
    application_insights_configuration object
    Application Insights Configuration
    applicationInsightsConfiguration Property Map
    Application Insights Configuration

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Managed service identity (system assigned and/or user assigned identities)
    Type string | Pulumi.AzureNative.App.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities list(string)
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    Managed service identity (system assigned and/or user assigned identities)
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.App.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities map(object)
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    created_at string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UpgradeChannel, UpgradeChannelArgs

    Preview
    Preview Preview upgrade channel
    Stable
    Stable Stable upgrade channel
    UpgradeChannelPreview
    Preview Preview upgrade channel
    UpgradeChannelStable
    Stable Stable upgrade channel
    "Preview"
    Preview Preview upgrade channel
    "Stable"
    Stable Stable upgrade channel
    Preview
    Preview Preview upgrade channel
    Stable
    Stable Stable upgrade channel
    Preview
    Preview Preview upgrade channel
    Stable
    Stable Stable upgrade channel
    PREVIEW
    Preview Preview upgrade channel
    STABLE
    Stable Stable upgrade channel
    "Preview"
    Preview Preview upgrade channel
    "Stable"
    Stable Stable upgrade channel

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    User assigned identity properties
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    client_id string
    The client ID of the assigned identity.
    principal_id string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:app:Agent testAgent /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/agents/{agentName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.25.0
    published on Wednesday, Aug 5, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial