1. Packages
  2. Azure Native
  3. API Docs
  4. cognitiveservices
  5. Project
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.cognitiveservices.Project

Explore with Pulumi AI

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.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Cognitive Services project is an Azure resource representing the provisioned account’s project, it’s type, location and SKU.

    Uses Azure REST API version 2025-04-01-preview.

    Example Usage

    Create Project

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new AzureNative.CognitiveServices.Project("project", new()
        {
            AccountName = "testCreate1",
            Identity = new AzureNative.CognitiveServices.Inputs.IdentityArgs
            {
                Type = AzureNative.CognitiveServices.ResourceIdentityType.SystemAssigned,
            },
            Location = "West US",
            ProjectName = "testProject1",
            Properties = new AzureNative.CognitiveServices.Inputs.ProjectPropertiesArgs
            {
                Description = "Description of this project",
                DisplayName = "p1",
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	cognitiveservices "github.com/pulumi/pulumi-azure-native-sdk/cognitiveservices/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cognitiveservices.NewProject(ctx, "project", &cognitiveservices.ProjectArgs{
    			AccountName: pulumi.String("testCreate1"),
    			Identity: &cognitiveservices.IdentityArgs{
    				Type: cognitiveservices.ResourceIdentityTypeSystemAssigned,
    			},
    			Location:    pulumi.String("West US"),
    			ProjectName: pulumi.String("testProject1"),
    			Properties: &cognitiveservices.ProjectPropertiesArgs{
    				Description: pulumi.String("Description of this project"),
    				DisplayName: pulumi.String("p1"),
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.cognitiveservices.Project;
    import com.pulumi.azurenative.cognitiveservices.ProjectArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.IdentityArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.ProjectPropertiesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var project = new Project("project", ProjectArgs.builder()
                .accountName("testCreate1")
                .identity(IdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .location("West US")
                .projectName("testProject1")
                .properties(ProjectPropertiesArgs.builder()
                    .description("Description of this project")
                    .displayName("p1")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const project = new azure_native.cognitiveservices.Project("project", {
        accountName: "testCreate1",
        identity: {
            type: azure_native.cognitiveservices.ResourceIdentityType.SystemAssigned,
        },
        location: "West US",
        projectName: "testProject1",
        properties: {
            description: "Description of this project",
            displayName: "p1",
        },
        resourceGroupName: "myResourceGroup",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    project = azure_native.cognitiveservices.Project("project",
        account_name="testCreate1",
        identity={
            "type": azure_native.cognitiveservices.ResourceIdentityType.SYSTEM_ASSIGNED,
        },
        location="West US",
        project_name="testProject1",
        properties={
            "description": "Description of this project",
            "display_name": "p1",
        },
        resource_group_name="myResourceGroup")
    
    resources:
      project:
        type: azure-native:cognitiveservices:Project
        properties:
          accountName: testCreate1
          identity:
            type: SystemAssigned
          location: West US
          projectName: testProject1
          properties:
            description: Description of this project
            displayName: p1
          resourceGroupName: myResourceGroup
    

    Create Project Min

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new AzureNative.CognitiveServices.Project("project", new()
        {
            AccountName = "testCreate1",
            Identity = new AzureNative.CognitiveServices.Inputs.IdentityArgs
            {
                Type = AzureNative.CognitiveServices.ResourceIdentityType.SystemAssigned,
            },
            Location = "West US",
            ProjectName = "testProject1",
            Properties = null,
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	cognitiveservices "github.com/pulumi/pulumi-azure-native-sdk/cognitiveservices/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cognitiveservices.NewProject(ctx, "project", &cognitiveservices.ProjectArgs{
    			AccountName: pulumi.String("testCreate1"),
    			Identity: &cognitiveservices.IdentityArgs{
    				Type: cognitiveservices.ResourceIdentityTypeSystemAssigned,
    			},
    			Location:          pulumi.String("West US"),
    			ProjectName:       pulumi.String("testProject1"),
    			Properties:        &cognitiveservices.ProjectPropertiesArgs{},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.cognitiveservices.Project;
    import com.pulumi.azurenative.cognitiveservices.ProjectArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.IdentityArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.ProjectPropertiesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var project = new Project("project", ProjectArgs.builder()
                .accountName("testCreate1")
                .identity(IdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .location("West US")
                .projectName("testProject1")
                .properties(ProjectPropertiesArgs.builder()
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const project = new azure_native.cognitiveservices.Project("project", {
        accountName: "testCreate1",
        identity: {
            type: azure_native.cognitiveservices.ResourceIdentityType.SystemAssigned,
        },
        location: "West US",
        projectName: "testProject1",
        properties: {},
        resourceGroupName: "myResourceGroup",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    project = azure_native.cognitiveservices.Project("project",
        account_name="testCreate1",
        identity={
            "type": azure_native.cognitiveservices.ResourceIdentityType.SYSTEM_ASSIGNED,
        },
        location="West US",
        project_name="testProject1",
        properties={},
        resource_group_name="myResourceGroup")
    
    resources:
      project:
        type: azure-native:cognitiveservices:Project
        properties:
          accountName: testCreate1
          identity:
            type: SystemAssigned
          location: West US
          projectName: testProject1
          properties: {}
          resourceGroupName: myResourceGroup
    

    Create Project Resource

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

    Constructor syntax

    new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
    @overload
    def Project(resource_name: str,
                args: ProjectArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Project(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                account_name: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                identity: Optional[IdentityArgs] = None,
                location: Optional[str] = None,
                project_name: Optional[str] = None,
                properties: Optional[ProjectPropertiesArgs] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
    public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
    public Project(String name, ProjectArgs args)
    public Project(String name, ProjectArgs args, CustomResourceOptions options)
    
    type: azure-native:cognitiveservices:Project
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ProjectArgs
    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 ProjectArgs
    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 ProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectArgs
    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 projectResource = new AzureNative.CognitiveServices.Project("projectResource", new()
    {
        AccountName = "string",
        ResourceGroupName = "string",
        Identity = new AzureNative.CognitiveServices.Inputs.IdentityArgs
        {
            Type = AzureNative.CognitiveServices.ResourceIdentityType.None,
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        ProjectName = "string",
        Properties = new AzureNative.CognitiveServices.Inputs.ProjectPropertiesArgs
        {
            Description = "string",
            DisplayName = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cognitiveservices.NewProject(ctx, "projectResource", &cognitiveservices.ProjectArgs{
    	AccountName:       pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Identity: &cognitiveservices.IdentityArgs{
    		Type: cognitiveservices.ResourceIdentityTypeNone,
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location:    pulumi.String("string"),
    	ProjectName: pulumi.String("string"),
    	Properties: &cognitiveservices.ProjectPropertiesArgs{
    		Description: pulumi.String("string"),
    		DisplayName: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var projectResource = new com.pulumi.azurenative.cognitiveservices.Project("projectResource", com.pulumi.azurenative.cognitiveservices.ProjectArgs.builder()
        .accountName("string")
        .resourceGroupName("string")
        .identity(IdentityArgs.builder()
            .type("None")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .projectName("string")
        .properties(ProjectPropertiesArgs.builder()
            .description("string")
            .displayName("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    project_resource = azure_native.cognitiveservices.Project("projectResource",
        account_name="string",
        resource_group_name="string",
        identity={
            "type": azure_native.cognitiveservices.ResourceIdentityType.NONE,
            "user_assigned_identities": ["string"],
        },
        location="string",
        project_name="string",
        properties={
            "description": "string",
            "display_name": "string",
        },
        tags={
            "string": "string",
        })
    
    const projectResource = new azure_native.cognitiveservices.Project("projectResource", {
        accountName: "string",
        resourceGroupName: "string",
        identity: {
            type: azure_native.cognitiveservices.ResourceIdentityType.None,
            userAssignedIdentities: ["string"],
        },
        location: "string",
        projectName: "string",
        properties: {
            description: "string",
            displayName: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:cognitiveservices:Project
    properties:
        accountName: string
        identity:
            type: None
            userAssignedIdentities:
                - string
        location: string
        projectName: string
        properties:
            description: string
            displayName: string
        resourceGroupName: string
        tags:
            string: string
    

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

    AccountName string
    The name of Cognitive Services account.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity Pulumi.AzureNative.CognitiveServices.Inputs.Identity
    Identity for the resource.
    Location string
    The geo-location where the resource lives
    ProjectName string
    The name of Cognitive Services account's project.
    Properties Pulumi.AzureNative.CognitiveServices.Inputs.ProjectProperties
    Properties of Cognitive Services project.
    Tags Dictionary<string, string>
    Resource tags.
    AccountName string
    The name of Cognitive Services account.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity IdentityArgs
    Identity for the resource.
    Location string
    The geo-location where the resource lives
    ProjectName string
    The name of Cognitive Services account's project.
    Properties ProjectPropertiesArgs
    Properties of Cognitive Services project.
    Tags map[string]string
    Resource tags.
    accountName String
    The name of Cognitive Services account.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity Identity
    Identity for the resource.
    location String
    The geo-location where the resource lives
    projectName String
    The name of Cognitive Services account's project.
    properties ProjectProperties
    Properties of Cognitive Services project.
    tags Map<String,String>
    Resource tags.
    accountName string
    The name of Cognitive Services account.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    identity Identity
    Identity for the resource.
    location string
    The geo-location where the resource lives
    projectName string
    The name of Cognitive Services account's project.
    properties ProjectProperties
    Properties of Cognitive Services project.
    tags {[key: string]: string}
    Resource tags.
    account_name str
    The name of Cognitive Services account.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    identity IdentityArgs
    Identity for the resource.
    location str
    The geo-location where the resource lives
    project_name str
    The name of Cognitive Services account's project.
    properties ProjectPropertiesArgs
    Properties of Cognitive Services project.
    tags Mapping[str, str]
    Resource tags.
    accountName String
    The name of Cognitive Services account.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity Property Map
    Identity for the resource.
    location String
    The geo-location where the resource lives
    projectName String
    The name of Cognitive Services account's project.
    properties Property Map
    Properties of Cognitive Services project.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Etag string
    Resource Etag.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.CognitiveServices.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    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.
    Etag string
    Resource Etag.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    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.
    etag String
    Resource Etag.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    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.
    etag string
    Resource Etag.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    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.
    etag str
    Resource Etag.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    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.
    etag String
    Resource Etag.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    Identity, IdentityArgs

    Type Pulumi.AzureNative.CognitiveServices.ResourceIdentityType
    The identity type.
    UserAssignedIdentities List<string>
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    Type ResourceIdentityType
    The identity type.
    UserAssignedIdentities []string
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    type ResourceIdentityType
    The identity type.
    userAssignedIdentities List<String>
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    type ResourceIdentityType
    The identity type.
    userAssignedIdentities string[]
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    type ResourceIdentityType
    The identity type.
    user_assigned_identities Sequence[str]
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    type "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned"
    The identity type.
    userAssignedIdentities List<String>
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}

    IdentityResponse, IdentityResponseArgs

    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.CognitiveServices.Inputs.UserAssignedIdentityResponse>
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    principalId string
    The principal ID of resource identity.
    tenantId string
    The tenant ID of resource.
    type string
    The identity type.
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    principal_id str
    The principal ID of resource identity.
    tenant_id str
    The tenant ID of resource.
    type str
    The identity type.
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.
    userAssignedIdentities Map<Property Map>
    The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}

    ProjectProperties, ProjectPropertiesArgs

    Description string
    The description of the Cognitive Services Project.
    DisplayName string
    The display name of the Cognitive Services Project.
    Description string
    The description of the Cognitive Services Project.
    DisplayName string
    The display name of the Cognitive Services Project.
    description String
    The description of the Cognitive Services Project.
    displayName String
    The display name of the Cognitive Services Project.
    description string
    The description of the Cognitive Services Project.
    displayName string
    The display name of the Cognitive Services Project.
    description str
    The description of the Cognitive Services Project.
    display_name str
    The display name of the Cognitive Services Project.
    description String
    The description of the Cognitive Services Project.
    displayName String
    The display name of the Cognitive Services Project.

    ProjectPropertiesResponse, ProjectPropertiesResponseArgs

    Endpoints Dictionary<string, string>
    The list of endpoint for this Cognitive Services Project.
    IsDefault bool
    Indicates whether the project is the default project for the account.
    ProvisioningState string
    Gets the status of the cognitive services project at the time the operation was called.
    Description string
    The description of the Cognitive Services Project.
    DisplayName string
    The display name of the Cognitive Services Project.
    Endpoints map[string]string
    The list of endpoint for this Cognitive Services Project.
    IsDefault bool
    Indicates whether the project is the default project for the account.
    ProvisioningState string
    Gets the status of the cognitive services project at the time the operation was called.
    Description string
    The description of the Cognitive Services Project.
    DisplayName string
    The display name of the Cognitive Services Project.
    endpoints Map<String,String>
    The list of endpoint for this Cognitive Services Project.
    isDefault Boolean
    Indicates whether the project is the default project for the account.
    provisioningState String
    Gets the status of the cognitive services project at the time the operation was called.
    description String
    The description of the Cognitive Services Project.
    displayName String
    The display name of the Cognitive Services Project.
    endpoints {[key: string]: string}
    The list of endpoint for this Cognitive Services Project.
    isDefault boolean
    Indicates whether the project is the default project for the account.
    provisioningState string
    Gets the status of the cognitive services project at the time the operation was called.
    description string
    The description of the Cognitive Services Project.
    displayName string
    The display name of the Cognitive Services Project.
    endpoints Mapping[str, str]
    The list of endpoint for this Cognitive Services Project.
    is_default bool
    Indicates whether the project is the default project for the account.
    provisioning_state str
    Gets the status of the cognitive services project at the time the operation was called.
    description str
    The description of the Cognitive Services Project.
    display_name str
    The display name of the Cognitive Services Project.
    endpoints Map<String>
    The list of endpoint for this Cognitive Services Project.
    isDefault Boolean
    Indicates whether the project is the default project for the account.
    provisioningState String
    Gets the status of the cognitive services project at the time the operation was called.
    description String
    The description of the Cognitive Services Project.
    displayName String
    The display name of the Cognitive Services Project.

    ResourceIdentityType, ResourceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    ResourceIdentityTypeNone
    None
    ResourceIdentityTypeSystemAssigned
    SystemAssigned
    ResourceIdentityTypeUserAssigned
    UserAssigned
    ResourceIdentityType_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

    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.
    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

    ClientId string
    Client App Id associated with this identity.
    PrincipalId string
    Azure Active Directory principal ID associated with this Identity.
    ClientId string
    Client App Id associated with this identity.
    PrincipalId string
    Azure Active Directory principal ID associated with this Identity.
    clientId String
    Client App Id associated with this identity.
    principalId String
    Azure Active Directory principal ID associated with this Identity.
    clientId string
    Client App Id associated with this identity.
    principalId string
    Azure Active Directory principal ID associated with this Identity.
    client_id str
    Client App Id associated with this identity.
    principal_id str
    Azure Active Directory principal ID associated with this Identity.
    clientId String
    Client App Id associated with this identity.
    principalId String
    Azure Active Directory principal ID associated with this Identity.

    Import

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

    $ pulumi import azure-native:cognitiveservices:Project testProject1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/projects/{projectName} 
    

    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.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi