1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. app
  6. AgentSpace
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

    SRE Agent Space resource

    Uses Azure REST API version 2026-01-01.

    Example Usage

    AgentSpaces_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var agentSpace = new AzureNative.App.AgentSpace("agentSpace", new()
        {
            AgentSpaceName = "newAgentSpace",
            Identity = new AzureNative.App.Inputs.ManagedServiceIdentityArgs
            {
                Type = AzureNative.App.ManagedServiceIdentityType.SystemAssigned,
            },
            Location = "East US",
            Properties = new AzureNative.App.Inputs.AgentSpacePropertiesArgs
            {
                Description = "New production agent space for AI assistant services",
                MaxAgentCount = 15,
                Policies = new AzureNative.App.Inputs.AgentSpacePoliciesArgs
                {
                    GenevaActionsConfiguration = new AzureNative.App.Inputs.GenevaActionsPolicyArgs
                    {
                        AcisEndpoint = "https://acis.eastus.monitoring.azure.com",
                        AllowedActions = new[]
                        {
                            new AzureNative.App.Inputs.GenevaActionConfigArgs
                            {
                                ActionName = "RestartService",
                                ActionParameters = new[]
                                {
                                    new AzureNative.App.Inputs.GenevaActionParameterArgs
                                    {
                                        Name = "serviceName",
                                        Type = "string",
                                    },
                                },
                                ApprovalRequired = true,
                                Extension = "GenevaActions",
                            },
                            new AzureNative.App.Inputs.GenevaActionConfigArgs
                            {
                                ActionName = "GetMetrics",
                                ActionParameters = new[]
                                {
                                    new AzureNative.App.Inputs.GenevaActionParameterArgs
                                    {
                                        Name = "metricName",
                                        Type = "string",
                                    },
                                    new AzureNative.App.Inputs.GenevaActionParameterArgs
                                    {
                                        Name = "timeRange",
                                        Type = "string",
                                    },
                                },
                                ApprovalRequired = false,
                                Extension = "GenevaActions",
                            },
                        },
                        AuthenticationMode = AzureNative.App.GenevaActionAuthenticationMode.OAuth,
                        CertificateSubjectName = "CN=AgentSpaceAuth",
                        ClientId = "12345678-1234-1234-1234-123456789012",
                        ExtensionName = "GenevaActions",
                    },
                },
                ServiceTreeId = "abcdef12-3456-7890-abcd-ef1234567890",
            },
            ResourceGroupName = "examplerg",
            Tags = 
            {
                { "environment", "production" },
                { "project", "aiAssistant" },
                { "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.NewAgentSpace(ctx, "agentSpace", &app.AgentSpaceArgs{
    			AgentSpaceName: pulumi.String("newAgentSpace"),
    			Identity: &app.ManagedServiceIdentityArgs{
    				Type: pulumi.String(app.ManagedServiceIdentityTypeSystemAssigned),
    			},
    			Location: pulumi.String("East US"),
    			Properties: &app.AgentSpacePropertiesArgs{
    				Description:   pulumi.String("New production agent space for AI assistant services"),
    				MaxAgentCount: pulumi.Int(15),
    				Policies: &app.AgentSpacePoliciesArgs{
    					GenevaActionsConfiguration: &app.GenevaActionsPolicyArgs{
    						AcisEndpoint: pulumi.String("https://acis.eastus.monitoring.azure.com"),
    						AllowedActions: app.GenevaActionConfigArray{
    							&app.GenevaActionConfigArgs{
    								ActionName: pulumi.String("RestartService"),
    								ActionParameters: app.GenevaActionParameterArray{
    									&app.GenevaActionParameterArgs{
    										Name: pulumi.String("serviceName"),
    										Type: pulumi.String("string"),
    									},
    								},
    								ApprovalRequired: pulumi.Bool(true),
    								Extension:        pulumi.String("GenevaActions"),
    							},
    							&app.GenevaActionConfigArgs{
    								ActionName: pulumi.String("GetMetrics"),
    								ActionParameters: app.GenevaActionParameterArray{
    									&app.GenevaActionParameterArgs{
    										Name: pulumi.String("metricName"),
    										Type: pulumi.String("string"),
    									},
    									&app.GenevaActionParameterArgs{
    										Name: pulumi.String("timeRange"),
    										Type: pulumi.String("string"),
    									},
    								},
    								ApprovalRequired: pulumi.Bool(false),
    								Extension:        pulumi.String("GenevaActions"),
    							},
    						},
    						AuthenticationMode:     pulumi.String(app.GenevaActionAuthenticationModeOAuth),
    						CertificateSubjectName: pulumi.String("CN=AgentSpaceAuth"),
    						ClientId:               pulumi.String("12345678-1234-1234-1234-123456789012"),
    						ExtensionName:          pulumi.String("GenevaActions"),
    					},
    				},
    				ServiceTreeId: pulumi.String("abcdef12-3456-7890-abcd-ef1234567890"),
    			},
    			ResourceGroupName: pulumi.String("examplerg"),
    			Tags: pulumi.StringMap{
    				"environment": pulumi.String("production"),
    				"project":     pulumi.String("aiAssistant"),
    				"team":        pulumi.String("platform"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_app_agentspace" "agentSpace" {
      agent_space_name = "newAgentSpace"
      identity = {
        type = "SystemAssigned"
      }
      location = "East US"
      properties = {
        description     = "New production agent space for AI assistant services"
        max_agent_count = 15
        policies = {
          geneva_actions_configuration = {
            acis_endpoint = "https://acis.eastus.monitoring.azure.com"
            allowed_actions = [{
              "actionName" = "RestartService"
              "actionParameters" = [{
                "name" = "serviceName"
                "type" = "string"
              }]
              "approvalRequired" = true
              "extension"        = "GenevaActions"
              }, {
              "actionName" = "GetMetrics"
              "actionParameters" = [{
                "name" = "metricName"
                "type" = "string"
                }, {
                "name" = "timeRange"
                "type" = "string"
              }]
              "approvalRequired" = false
              "extension"        = "GenevaActions"
            }]
            authentication_mode      = "OAuth"
            certificate_subject_name = "CN=AgentSpaceAuth"
            client_id                = "12345678-1234-1234-1234-123456789012"
            extension_name           = "GenevaActions"
          }
        }
        service_tree_id = "abcdef12-3456-7890-abcd-ef1234567890"
      }
      resource_group_name = "examplerg"
      tags = {
        "environment" = "production"
        "project"     = "aiAssistant"
        "team"        = "platform"
      }
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.app.AgentSpace;
    import com.pulumi.azurenative.app.AgentSpaceArgs;
    import com.pulumi.azurenative.app.inputs.ManagedServiceIdentityArgs;
    import com.pulumi.azurenative.app.inputs.AgentSpacePropertiesArgs;
    import com.pulumi.azurenative.app.inputs.AgentSpacePoliciesArgs;
    import com.pulumi.azurenative.app.inputs.GenevaActionsPolicyArgs;
    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 agentSpace = new AgentSpace("agentSpace", AgentSpaceArgs.builder()
                .agentSpaceName("newAgentSpace")
                .identity(ManagedServiceIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .location("East US")
                .properties(AgentSpacePropertiesArgs.builder()
                    .description("New production agent space for AI assistant services")
                    .maxAgentCount(15)
                    .policies(AgentSpacePoliciesArgs.builder()
                        .genevaActionsConfiguration(GenevaActionsPolicyArgs.builder()
                            .acisEndpoint("https://acis.eastus.monitoring.azure.com")
                            .allowedActions(                        
                                GenevaActionConfigArgs.builder()
                                    .actionName("RestartService")
                                    .actionParameters(GenevaActionParameterArgs.builder()
                                        .name("serviceName")
                                        .type("string")
                                        .build())
                                    .approvalRequired(true)
                                    .extension("GenevaActions")
                                    .build(),
                                GenevaActionConfigArgs.builder()
                                    .actionName("GetMetrics")
                                    .actionParameters(                                
                                        GenevaActionParameterArgs.builder()
                                            .name("metricName")
                                            .type("string")
                                            .build(),
                                        GenevaActionParameterArgs.builder()
                                            .name("timeRange")
                                            .type("string")
                                            .build())
                                    .approvalRequired(false)
                                    .extension("GenevaActions")
                                    .build())
                            .authenticationMode("OAuth")
                            .certificateSubjectName("CN=AgentSpaceAuth")
                            .clientId("12345678-1234-1234-1234-123456789012")
                            .extensionName("GenevaActions")
                            .build())
                        .build())
                    .serviceTreeId("abcdef12-3456-7890-abcd-ef1234567890")
                    .build())
                .resourceGroupName("examplerg")
                .tags(Map.ofEntries(
                    Map.entry("environment", "production"),
                    Map.entry("project", "aiAssistant"),
                    Map.entry("team", "platform")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const agentSpace = new azure_native.app.AgentSpace("agentSpace", {
        agentSpaceName: "newAgentSpace",
        identity: {
            type: azure_native.app.ManagedServiceIdentityType.SystemAssigned,
        },
        location: "East US",
        properties: {
            description: "New production agent space for AI assistant services",
            maxAgentCount: 15,
            policies: {
                genevaActionsConfiguration: {
                    acisEndpoint: "https://acis.eastus.monitoring.azure.com",
                    allowedActions: [
                        {
                            actionName: "RestartService",
                            actionParameters: [{
                                name: "serviceName",
                                type: "string",
                            }],
                            approvalRequired: true,
                            extension: "GenevaActions",
                        },
                        {
                            actionName: "GetMetrics",
                            actionParameters: [
                                {
                                    name: "metricName",
                                    type: "string",
                                },
                                {
                                    name: "timeRange",
                                    type: "string",
                                },
                            ],
                            approvalRequired: false,
                            extension: "GenevaActions",
                        },
                    ],
                    authenticationMode: azure_native.app.GenevaActionAuthenticationMode.OAuth,
                    certificateSubjectName: "CN=AgentSpaceAuth",
                    clientId: "12345678-1234-1234-1234-123456789012",
                    extensionName: "GenevaActions",
                },
            },
            serviceTreeId: "abcdef12-3456-7890-abcd-ef1234567890",
        },
        resourceGroupName: "examplerg",
        tags: {
            environment: "production",
            project: "aiAssistant",
            team: "platform",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    agent_space = azure_native.app.AgentSpace("agentSpace",
        agent_space_name="newAgentSpace",
        identity={
            "type": azure_native.app.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
        },
        location="East US",
        properties={
            "description": "New production agent space for AI assistant services",
            "max_agent_count": 15,
            "policies": {
                "geneva_actions_configuration": {
                    "acis_endpoint": "https://acis.eastus.monitoring.azure.com",
                    "allowed_actions": [
                        {
                            "action_name": "RestartService",
                            "action_parameters": [{
                                "name": "serviceName",
                                "type": "string",
                            }],
                            "approval_required": True,
                            "extension": "GenevaActions",
                        },
                        {
                            "action_name": "GetMetrics",
                            "action_parameters": [
                                {
                                    "name": "metricName",
                                    "type": "string",
                                },
                                {
                                    "name": "timeRange",
                                    "type": "string",
                                },
                            ],
                            "approval_required": False,
                            "extension": "GenevaActions",
                        },
                    ],
                    "authentication_mode": azure_native.app.GenevaActionAuthenticationMode.O_AUTH,
                    "certificate_subject_name": "CN=AgentSpaceAuth",
                    "client_id": "12345678-1234-1234-1234-123456789012",
                    "extension_name": "GenevaActions",
                },
            },
            "service_tree_id": "abcdef12-3456-7890-abcd-ef1234567890",
        },
        resource_group_name="examplerg",
        tags={
            "environment": "production",
            "project": "aiAssistant",
            "team": "platform",
        })
    
    resources:
      agentSpace:
        type: azure-native:app:AgentSpace
        properties:
          agentSpaceName: newAgentSpace
          identity:
            type: SystemAssigned
          location: East US
          properties:
            description: New production agent space for AI assistant services
            maxAgentCount: 15
            policies:
              genevaActionsConfiguration:
                acisEndpoint: https://acis.eastus.monitoring.azure.com
                allowedActions:
                  - actionName: RestartService
                    actionParameters:
                      - name: serviceName
                        type: string
                    approvalRequired: true
                    extension: GenevaActions
                  - actionName: GetMetrics
                    actionParameters:
                      - name: metricName
                        type: string
                      - name: timeRange
                        type: string
                    approvalRequired: false
                    extension: GenevaActions
                authenticationMode: OAuth
                certificateSubjectName: CN=AgentSpaceAuth
                clientId: 12345678-1234-1234-1234-123456789012
                extensionName: GenevaActions
            serviceTreeId: abcdef12-3456-7890-abcd-ef1234567890
          resourceGroupName: examplerg
          tags:
            environment: production
            project: aiAssistant
            team: platform
    

    Create AgentSpace Resource

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

    Constructor syntax

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

    Parameters

    name string
    The unique name of the resource.
    args AgentSpaceArgs
    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 AgentSpaceArgs
    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 AgentSpaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentSpaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentSpaceArgs
    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 agentSpaceResource = new AzureNative.App.AgentSpace("agentSpaceResource", new()
    {
        ResourceGroupName = "string",
        AgentSpaceName = "string",
        Identity = new AzureNative.App.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        Properties = new AzureNative.App.Inputs.AgentSpacePropertiesArgs
        {
            Description = "string",
            MaxAgentCount = 0,
            Policies = new AzureNative.App.Inputs.AgentSpacePoliciesArgs
            {
                GenevaActionsConfiguration = new AzureNative.App.Inputs.GenevaActionsPolicyArgs
                {
                    ExtensionName = "string",
                    AcisEndpoint = "string",
                    AllowedActions = new[]
                    {
                        new AzureNative.App.Inputs.GenevaActionConfigArgs
                        {
                            ActionName = "string",
                            ActionParameters = new[]
                            {
                                new AzureNative.App.Inputs.GenevaActionParameterArgs
                                {
                                    Name = "string",
                                    Type = "string",
                                },
                            },
                            ApprovalRequired = false,
                            Extension = "string",
                        },
                    },
                    AuthenticationMode = "string",
                    CertificateSubjectName = "string",
                    ClientId = "string",
                },
            },
            ServiceTreeId = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := app.NewAgentSpace(ctx, "agentSpaceResource", &app.AgentSpaceArgs{
    	ResourceGroupName: pulumi.String("string"),
    	AgentSpaceName:    pulumi.String("string"),
    	Identity: &app.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location: pulumi.String("string"),
    	Properties: &app.AgentSpacePropertiesArgs{
    		Description:   pulumi.String("string"),
    		MaxAgentCount: pulumi.Int(0),
    		Policies: &app.AgentSpacePoliciesArgs{
    			GenevaActionsConfiguration: &app.GenevaActionsPolicyArgs{
    				ExtensionName: pulumi.String("string"),
    				AcisEndpoint:  pulumi.String("string"),
    				AllowedActions: app.GenevaActionConfigArray{
    					&app.GenevaActionConfigArgs{
    						ActionName: pulumi.String("string"),
    						ActionParameters: app.GenevaActionParameterArray{
    							&app.GenevaActionParameterArgs{
    								Name: pulumi.String("string"),
    								Type: pulumi.String("string"),
    							},
    						},
    						ApprovalRequired: pulumi.Bool(false),
    						Extension:        pulumi.String("string"),
    					},
    				},
    				AuthenticationMode:     pulumi.String("string"),
    				CertificateSubjectName: pulumi.String("string"),
    				ClientId:               pulumi.String("string"),
    			},
    		},
    		ServiceTreeId: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_app_agent_space" "agentSpaceResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name = "string"
      agent_space_name    = "string"
      identity = {
        type                     = "string"
        user_assigned_identities = ["string"]
      }
      location = "string"
      properties = {
        description     = "string"
        max_agent_count = 0
        policies = {
          geneva_actions_configuration = {
            extension_name = "string"
            acis_endpoint  = "string"
            allowed_actions = [{
              action_name = "string"
              action_parameters = [{
                name = "string"
                type = "string"
              }]
              approval_required = false
              extension         = "string"
            }]
            authentication_mode      = "string"
            certificate_subject_name = "string"
            client_id                = "string"
          }
        }
        service_tree_id = "string"
      }
      tags = {
        "string" = "string"
      }
    }
    
    var agentSpaceResource = new AgentSpace("agentSpaceResource", AgentSpaceArgs.builder()
        .resourceGroupName("string")
        .agentSpaceName("string")
        .identity(com.pulumi.azurenative.app.inputs.ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .properties(AgentSpacePropertiesArgs.builder()
            .description("string")
            .maxAgentCount(0)
            .policies(AgentSpacePoliciesArgs.builder()
                .genevaActionsConfiguration(GenevaActionsPolicyArgs.builder()
                    .extensionName("string")
                    .acisEndpoint("string")
                    .allowedActions(GenevaActionConfigArgs.builder()
                        .actionName("string")
                        .actionParameters(GenevaActionParameterArgs.builder()
                            .name("string")
                            .type("string")
                            .build())
                        .approvalRequired(false)
                        .extension("string")
                        .build())
                    .authenticationMode("string")
                    .certificateSubjectName("string")
                    .clientId("string")
                    .build())
                .build())
            .serviceTreeId("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    agent_space_resource = azure_native.app.AgentSpace("agentSpaceResource",
        resource_group_name="string",
        agent_space_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        properties={
            "description": "string",
            "max_agent_count": 0,
            "policies": {
                "geneva_actions_configuration": {
                    "extension_name": "string",
                    "acis_endpoint": "string",
                    "allowed_actions": [{
                        "action_name": "string",
                        "action_parameters": [{
                            "name": "string",
                            "type": "string",
                        }],
                        "approval_required": False,
                        "extension": "string",
                    }],
                    "authentication_mode": "string",
                    "certificate_subject_name": "string",
                    "client_id": "string",
                },
            },
            "service_tree_id": "string",
        },
        tags={
            "string": "string",
        })
    
    const agentSpaceResource = new azure_native.app.AgentSpace("agentSpaceResource", {
        resourceGroupName: "string",
        agentSpaceName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        properties: {
            description: "string",
            maxAgentCount: 0,
            policies: {
                genevaActionsConfiguration: {
                    extensionName: "string",
                    acisEndpoint: "string",
                    allowedActions: [{
                        actionName: "string",
                        actionParameters: [{
                            name: "string",
                            type: "string",
                        }],
                        approvalRequired: false,
                        extension: "string",
                    }],
                    authenticationMode: "string",
                    certificateSubjectName: "string",
                    clientId: "string",
                },
            },
            serviceTreeId: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:app:AgentSpace
    properties:
        agentSpaceName: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        properties:
            description: string
            maxAgentCount: 0
            policies:
                genevaActionsConfiguration:
                    acisEndpoint: string
                    allowedActions:
                        - actionName: string
                          actionParameters:
                            - name: string
                              type: string
                          approvalRequired: false
                          extension: string
                    authenticationMode: string
                    certificateSubjectName: string
                    clientId: string
                    extensionName: string
            serviceTreeId: string
        resourceGroupName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AgentSpaceName string
    The name of the AgentSpace
    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.AgentSpaceProperties
    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.
    AgentSpaceName string
    The name of the AgentSpace
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Properties AgentSpacePropertiesArgs
    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_space_name string
    The name of the AgentSpace
    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.
    agentSpaceName String
    The name of the AgentSpace
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    properties AgentSpaceProperties
    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.
    agentSpaceName string
    The name of the AgentSpace
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    properties AgentSpaceProperties
    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_space_name str
    The name of the AgentSpace
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    properties AgentSpacePropertiesArgs
    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.
    agentSpaceName String
    The name of the AgentSpace
    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 AgentSpace 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

    AgentSpaceComplianceStatusResponse, AgentSpaceComplianceStatusResponseArgs

    Compliance status of the Agent Space
    ComplianceIssues List<string>
    List of compliance issues found in the Agent Space
    IsCompliant bool
    Indicates whether the Agent Space is compliant
    LastComplianceCheck string
    Timestamp of the last compliance check
    ComplianceIssues []string
    List of compliance issues found in the Agent Space
    IsCompliant bool
    Indicates whether the Agent Space is compliant
    LastComplianceCheck string
    Timestamp of the last compliance check
    compliance_issues list(string)
    List of compliance issues found in the Agent Space
    is_compliant bool
    Indicates whether the Agent Space is compliant
    last_compliance_check string
    Timestamp of the last compliance check
    complianceIssues List<String>
    List of compliance issues found in the Agent Space
    isCompliant Boolean
    Indicates whether the Agent Space is compliant
    lastComplianceCheck String
    Timestamp of the last compliance check
    complianceIssues string[]
    List of compliance issues found in the Agent Space
    isCompliant boolean
    Indicates whether the Agent Space is compliant
    lastComplianceCheck string
    Timestamp of the last compliance check
    compliance_issues Sequence[str]
    List of compliance issues found in the Agent Space
    is_compliant bool
    Indicates whether the Agent Space is compliant
    last_compliance_check str
    Timestamp of the last compliance check
    complianceIssues List<String>
    List of compliance issues found in the Agent Space
    isCompliant Boolean
    Indicates whether the Agent Space is compliant
    lastComplianceCheck String
    Timestamp of the last compliance check

    AgentSpacePolicies, AgentSpacePoliciesArgs

    Policy configurations for an Agent Space
    GenevaActionsConfiguration GenevaActionsPolicy
    Configuration for Geneva Actions policy
    geneva_actions_configuration object
    Configuration for Geneva Actions policy
    genevaActionsConfiguration GenevaActionsPolicy
    Configuration for Geneva Actions policy
    genevaActionsConfiguration GenevaActionsPolicy
    Configuration for Geneva Actions policy
    geneva_actions_configuration GenevaActionsPolicy
    Configuration for Geneva Actions policy
    genevaActionsConfiguration Property Map
    Configuration for Geneva Actions policy

    AgentSpacePoliciesResponse, AgentSpacePoliciesResponseArgs

    Policy configurations for an Agent Space
    GenevaActionsConfiguration GenevaActionsPolicyResponse
    Configuration for Geneva Actions policy
    geneva_actions_configuration object
    Configuration for Geneva Actions policy
    genevaActionsConfiguration GenevaActionsPolicyResponse
    Configuration for Geneva Actions policy
    genevaActionsConfiguration GenevaActionsPolicyResponse
    Configuration for Geneva Actions policy
    geneva_actions_configuration GenevaActionsPolicyResponse
    Configuration for Geneva Actions policy
    genevaActionsConfiguration Property Map
    Configuration for Geneva Actions policy

    AgentSpaceProperties, AgentSpacePropertiesArgs

    Agent Space specific properties
    Description string
    Description of the Agent Space
    MaxAgentCount int
    Maximum number of agents allowed in the Agent Space
    Policies Pulumi.AzureNative.App.Inputs.AgentSpacePolicies
    Policy configurations for the Agent Space
    ServiceTreeId string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    Description string
    Description of the Agent Space
    MaxAgentCount int
    Maximum number of agents allowed in the Agent Space
    Policies AgentSpacePolicies
    Policy configurations for the Agent Space
    ServiceTreeId string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    description string
    Description of the Agent Space
    max_agent_count number
    Maximum number of agents allowed in the Agent Space
    policies object
    Policy configurations for the Agent Space
    service_tree_id string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    description String
    Description of the Agent Space
    maxAgentCount Integer
    Maximum number of agents allowed in the Agent Space
    policies AgentSpacePolicies
    Policy configurations for the Agent Space
    serviceTreeId String
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    description string
    Description of the Agent Space
    maxAgentCount number
    Maximum number of agents allowed in the Agent Space
    policies AgentSpacePolicies
    Policy configurations for the Agent Space
    serviceTreeId string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    description str
    Description of the Agent Space
    max_agent_count int
    Maximum number of agents allowed in the Agent Space
    policies AgentSpacePolicies
    Policy configurations for the Agent Space
    service_tree_id str
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    description String
    Description of the Agent Space
    maxAgentCount Number
    Maximum number of agents allowed in the Agent Space
    policies Property Map
    Policy configurations for the Agent Space
    serviceTreeId String
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space

    AgentSpacePropertiesResponse, AgentSpacePropertiesResponseArgs

    Agent Space specific properties
    ComplianceStatus Pulumi.AzureNative.App.Inputs.AgentSpaceComplianceStatusResponse
    Compliance status of the Agent Space
    CurrentAgentCount int
    Current number of agents in the Agent Space
    LastPolicyPropagation string
    Timestamp of the last policy propagation to agents in this Agent Space
    MemberAgents List<string>
    List of agents referencing the Agent Space
    ProvisioningState string
    Provisioning state of the Agent Space
    Description string
    Description of the Agent Space
    MaxAgentCount int
    Maximum number of agents allowed in the Agent Space
    Policies Pulumi.AzureNative.App.Inputs.AgentSpacePoliciesResponse
    Policy configurations for the Agent Space
    ServiceTreeId string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    ComplianceStatus AgentSpaceComplianceStatusResponse
    Compliance status of the Agent Space
    CurrentAgentCount int
    Current number of agents in the Agent Space
    LastPolicyPropagation string
    Timestamp of the last policy propagation to agents in this Agent Space
    MemberAgents []string
    List of agents referencing the Agent Space
    ProvisioningState string
    Provisioning state of the Agent Space
    Description string
    Description of the Agent Space
    MaxAgentCount int
    Maximum number of agents allowed in the Agent Space
    Policies AgentSpacePoliciesResponse
    Policy configurations for the Agent Space
    ServiceTreeId string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    compliance_status object
    Compliance status of the Agent Space
    current_agent_count number
    Current number of agents in the Agent Space
    last_policy_propagation string
    Timestamp of the last policy propagation to agents in this Agent Space
    member_agents list(string)
    List of agents referencing the Agent Space
    provisioning_state string
    Provisioning state of the Agent Space
    description string
    Description of the Agent Space
    max_agent_count number
    Maximum number of agents allowed in the Agent Space
    policies object
    Policy configurations for the Agent Space
    service_tree_id string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    complianceStatus AgentSpaceComplianceStatusResponse
    Compliance status of the Agent Space
    currentAgentCount Integer
    Current number of agents in the Agent Space
    lastPolicyPropagation String
    Timestamp of the last policy propagation to agents in this Agent Space
    memberAgents List<String>
    List of agents referencing the Agent Space
    provisioningState String
    Provisioning state of the Agent Space
    description String
    Description of the Agent Space
    maxAgentCount Integer
    Maximum number of agents allowed in the Agent Space
    policies AgentSpacePoliciesResponse
    Policy configurations for the Agent Space
    serviceTreeId String
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    complianceStatus AgentSpaceComplianceStatusResponse
    Compliance status of the Agent Space
    currentAgentCount number
    Current number of agents in the Agent Space
    lastPolicyPropagation string
    Timestamp of the last policy propagation to agents in this Agent Space
    memberAgents string[]
    List of agents referencing the Agent Space
    provisioningState string
    Provisioning state of the Agent Space
    description string
    Description of the Agent Space
    maxAgentCount number
    Maximum number of agents allowed in the Agent Space
    policies AgentSpacePoliciesResponse
    Policy configurations for the Agent Space
    serviceTreeId string
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    compliance_status AgentSpaceComplianceStatusResponse
    Compliance status of the Agent Space
    current_agent_count int
    Current number of agents in the Agent Space
    last_policy_propagation str
    Timestamp of the last policy propagation to agents in this Agent Space
    member_agents Sequence[str]
    List of agents referencing the Agent Space
    provisioning_state str
    Provisioning state of the Agent Space
    description str
    Description of the Agent Space
    max_agent_count int
    Maximum number of agents allowed in the Agent Space
    policies AgentSpacePoliciesResponse
    Policy configurations for the Agent Space
    service_tree_id str
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space
    complianceStatus Property Map
    Compliance status of the Agent Space
    currentAgentCount Number
    Current number of agents in the Agent Space
    lastPolicyPropagation String
    Timestamp of the last policy propagation to agents in this Agent Space
    memberAgents List<String>
    List of agents referencing the Agent Space
    provisioningState String
    Provisioning state of the Agent Space
    description String
    Description of the Agent Space
    maxAgentCount Number
    Maximum number of agents allowed in the Agent Space
    policies Property Map
    Policy configurations for the Agent Space
    serviceTreeId String
    Universal unique ID (UUID) of the Service Tree associated with this Agent Space

    GenevaActionAuthenticationMode, GenevaActionAuthenticationModeArgs

    OAuth
    OAuth OAuth authentication mode
    WSTrust
    WS-Trust WS-Trust authentication mode
    GenevaActionAuthenticationModeOAuth
    OAuth OAuth authentication mode
    GenevaActionAuthenticationModeWSTrust
    WS-Trust WS-Trust authentication mode
    "OAuth"
    OAuth OAuth authentication mode
    "WS-Trust"
    WS-Trust WS-Trust authentication mode
    OAuth
    OAuth OAuth authentication mode
    WSTrust
    WS-Trust WS-Trust authentication mode
    OAuth
    OAuth OAuth authentication mode
    WSTrust
    WS-Trust WS-Trust authentication mode
    O_AUTH
    OAuth OAuth authentication mode
    WS_TRUST
    WS-Trust WS-Trust authentication mode
    "OAuth"
    OAuth OAuth authentication mode
    "WS-Trust"
    WS-Trust WS-Trust authentication mode

    GenevaActionConfig, GenevaActionConfigArgs

    Configuration for a Geneva action
    ActionName string
    Name of the Geneva action
    ActionParameters List<Pulumi.AzureNative.App.Inputs.GenevaActionParameter>
    Parameters for the Geneva action
    ApprovalRequired bool
    Indicates whether approval is required for this action
    Extension string
    Extension associated with the action
    ActionName string
    Name of the Geneva action
    ActionParameters []GenevaActionParameter
    Parameters for the Geneva action
    ApprovalRequired bool
    Indicates whether approval is required for this action
    Extension string
    Extension associated with the action
    action_name string
    Name of the Geneva action
    action_parameters list(object)
    Parameters for the Geneva action
    approval_required bool
    Indicates whether approval is required for this action
    extension string
    Extension associated with the action
    actionName String
    Name of the Geneva action
    actionParameters List<GenevaActionParameter>
    Parameters for the Geneva action
    approvalRequired Boolean
    Indicates whether approval is required for this action
    extension String
    Extension associated with the action
    actionName string
    Name of the Geneva action
    actionParameters GenevaActionParameter[]
    Parameters for the Geneva action
    approvalRequired boolean
    Indicates whether approval is required for this action
    extension string
    Extension associated with the action
    action_name str
    Name of the Geneva action
    action_parameters Sequence[GenevaActionParameter]
    Parameters for the Geneva action
    approval_required bool
    Indicates whether approval is required for this action
    extension str
    Extension associated with the action
    actionName String
    Name of the Geneva action
    actionParameters List<Property Map>
    Parameters for the Geneva action
    approvalRequired Boolean
    Indicates whether approval is required for this action
    extension String
    Extension associated with the action

    GenevaActionConfigResponse, GenevaActionConfigResponseArgs

    Configuration for a Geneva action
    ActionName string
    Name of the Geneva action
    ActionParameters List<Pulumi.AzureNative.App.Inputs.GenevaActionParameterResponse>
    Parameters for the Geneva action
    ApprovalRequired bool
    Indicates whether approval is required for this action
    Extension string
    Extension associated with the action
    ActionName string
    Name of the Geneva action
    ActionParameters []GenevaActionParameterResponse
    Parameters for the Geneva action
    ApprovalRequired bool
    Indicates whether approval is required for this action
    Extension string
    Extension associated with the action
    action_name string
    Name of the Geneva action
    action_parameters list(object)
    Parameters for the Geneva action
    approval_required bool
    Indicates whether approval is required for this action
    extension string
    Extension associated with the action
    actionName String
    Name of the Geneva action
    actionParameters List<GenevaActionParameterResponse>
    Parameters for the Geneva action
    approvalRequired Boolean
    Indicates whether approval is required for this action
    extension String
    Extension associated with the action
    actionName string
    Name of the Geneva action
    actionParameters GenevaActionParameterResponse[]
    Parameters for the Geneva action
    approvalRequired boolean
    Indicates whether approval is required for this action
    extension string
    Extension associated with the action
    action_name str
    Name of the Geneva action
    action_parameters Sequence[GenevaActionParameterResponse]
    Parameters for the Geneva action
    approval_required bool
    Indicates whether approval is required for this action
    extension str
    Extension associated with the action
    actionName String
    Name of the Geneva action
    actionParameters List<Property Map>
    Parameters for the Geneva action
    approvalRequired Boolean
    Indicates whether approval is required for this action
    extension String
    Extension associated with the action

    GenevaActionParameter, GenevaActionParameterArgs

    Parameter for a Geneva action
    Name string
    Name of the parameter
    Type string
    Type of the parameter
    Name string
    Name of the parameter
    Type string
    Type of the parameter
    name string
    Name of the parameter
    type string
    Type of the parameter
    name String
    Name of the parameter
    type String
    Type of the parameter
    name string
    Name of the parameter
    type string
    Type of the parameter
    name str
    Name of the parameter
    type str
    Type of the parameter
    name String
    Name of the parameter
    type String
    Type of the parameter

    GenevaActionParameterResponse, GenevaActionParameterResponseArgs

    Parameter for a Geneva action
    Name string
    Name of the parameter
    Type string
    Type of the parameter
    Name string
    Name of the parameter
    Type string
    Type of the parameter
    name string
    Name of the parameter
    type string
    Type of the parameter
    name String
    Name of the parameter
    type String
    Type of the parameter
    name string
    Name of the parameter
    type string
    Type of the parameter
    name str
    Name of the parameter
    type str
    Type of the parameter
    name String
    Name of the parameter
    type String
    Type of the parameter

    GenevaActionsPolicy, GenevaActionsPolicyArgs

    Geneva Actions policy configuration for Agent Space
    ExtensionName string
    Name of the Geneva extension
    AcisEndpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    AllowedActions List<Pulumi.AzureNative.App.Inputs.GenevaActionConfig>
    Collection of allowed Geneva actions
    AuthenticationMode string | Pulumi.AzureNative.App.GenevaActionAuthenticationMode
    Authentication mode for Geneva Actions
    CertificateSubjectName string
    Subject name of the certificate used for authentication
    ClientId string
    Client ID for authentication
    ExtensionName string
    Name of the Geneva extension
    AcisEndpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    AllowedActions []GenevaActionConfig
    Collection of allowed Geneva actions
    AuthenticationMode string | GenevaActionAuthenticationMode
    Authentication mode for Geneva Actions
    CertificateSubjectName string
    Subject name of the certificate used for authentication
    ClientId string
    Client ID for authentication
    extension_name string
    Name of the Geneva extension
    acis_endpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    allowed_actions list(object)
    Collection of allowed Geneva actions
    authentication_mode string | "OAuth" | "WS-Trust"
    Authentication mode for Geneva Actions
    certificate_subject_name string
    Subject name of the certificate used for authentication
    client_id string
    Client ID for authentication
    extensionName String
    Name of the Geneva extension
    acisEndpoint String
    ACIS (Azure Container Instance Service) endpoint URL
    allowedActions List<GenevaActionConfig>
    Collection of allowed Geneva actions
    authenticationMode String | GenevaActionAuthenticationMode
    Authentication mode for Geneva Actions
    certificateSubjectName String
    Subject name of the certificate used for authentication
    clientId String
    Client ID for authentication
    extensionName string
    Name of the Geneva extension
    acisEndpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    allowedActions GenevaActionConfig[]
    Collection of allowed Geneva actions
    authenticationMode string | GenevaActionAuthenticationMode
    Authentication mode for Geneva Actions
    certificateSubjectName string
    Subject name of the certificate used for authentication
    clientId string
    Client ID for authentication
    extension_name str
    Name of the Geneva extension
    acis_endpoint str
    ACIS (Azure Container Instance Service) endpoint URL
    allowed_actions Sequence[GenevaActionConfig]
    Collection of allowed Geneva actions
    authentication_mode str | GenevaActionAuthenticationMode
    Authentication mode for Geneva Actions
    certificate_subject_name str
    Subject name of the certificate used for authentication
    client_id str
    Client ID for authentication
    extensionName String
    Name of the Geneva extension
    acisEndpoint String
    ACIS (Azure Container Instance Service) endpoint URL
    allowedActions List<Property Map>
    Collection of allowed Geneva actions
    authenticationMode String | "OAuth" | "WS-Trust"
    Authentication mode for Geneva Actions
    certificateSubjectName String
    Subject name of the certificate used for authentication
    clientId String
    Client ID for authentication

    GenevaActionsPolicyResponse, GenevaActionsPolicyResponseArgs

    Geneva Actions policy configuration for Agent Space
    CertificateSubjectAlternativeName string
    Subject alternative name of the certificate used for authentication
    ExtensionName string
    Name of the Geneva extension
    AcisEndpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    AllowedActions List<Pulumi.AzureNative.App.Inputs.GenevaActionConfigResponse>
    Collection of allowed Geneva actions
    AuthenticationMode string
    Authentication mode for Geneva Actions
    CertificateSubjectName string
    Subject name of the certificate used for authentication
    ClientId string
    Client ID for authentication
    CertificateSubjectAlternativeName string
    Subject alternative name of the certificate used for authentication
    ExtensionName string
    Name of the Geneva extension
    AcisEndpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    AllowedActions []GenevaActionConfigResponse
    Collection of allowed Geneva actions
    AuthenticationMode string
    Authentication mode for Geneva Actions
    CertificateSubjectName string
    Subject name of the certificate used for authentication
    ClientId string
    Client ID for authentication
    certificate_subject_alternative_name string
    Subject alternative name of the certificate used for authentication
    extension_name string
    Name of the Geneva extension
    acis_endpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    allowed_actions list(object)
    Collection of allowed Geneva actions
    authentication_mode string
    Authentication mode for Geneva Actions
    certificate_subject_name string
    Subject name of the certificate used for authentication
    client_id string
    Client ID for authentication
    certificateSubjectAlternativeName String
    Subject alternative name of the certificate used for authentication
    extensionName String
    Name of the Geneva extension
    acisEndpoint String
    ACIS (Azure Container Instance Service) endpoint URL
    allowedActions List<GenevaActionConfigResponse>
    Collection of allowed Geneva actions
    authenticationMode String
    Authentication mode for Geneva Actions
    certificateSubjectName String
    Subject name of the certificate used for authentication
    clientId String
    Client ID for authentication
    certificateSubjectAlternativeName string
    Subject alternative name of the certificate used for authentication
    extensionName string
    Name of the Geneva extension
    acisEndpoint string
    ACIS (Azure Container Instance Service) endpoint URL
    allowedActions GenevaActionConfigResponse[]
    Collection of allowed Geneva actions
    authenticationMode string
    Authentication mode for Geneva Actions
    certificateSubjectName string
    Subject name of the certificate used for authentication
    clientId string
    Client ID for authentication
    certificate_subject_alternative_name str
    Subject alternative name of the certificate used for authentication
    extension_name str
    Name of the Geneva extension
    acis_endpoint str
    ACIS (Azure Container Instance Service) endpoint URL
    allowed_actions Sequence[GenevaActionConfigResponse]
    Collection of allowed Geneva actions
    authentication_mode str
    Authentication mode for Geneva Actions
    certificate_subject_name str
    Subject name of the certificate used for authentication
    client_id str
    Client ID for authentication
    certificateSubjectAlternativeName String
    Subject alternative name of the certificate used for authentication
    extensionName String
    Name of the Geneva extension
    acisEndpoint String
    ACIS (Azure Container Instance Service) endpoint URL
    allowedActions List<Property Map>
    Collection of allowed Geneva actions
    authenticationMode String
    Authentication mode for Geneva Actions
    certificateSubjectName String
    Subject name of the certificate used for authentication
    clientId String
    Client ID for authentication

    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.

    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:AgentSpace newAgentSpace /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/agentSpaces/{agentSpaceName} 
    

    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