azure-native.cognitiveservices.Project
Explore with Pulumi AI
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:
- Account
Name string - The name of Cognitive Services account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Pulumi.
Azure Native. Cognitive Services. Inputs. Identity - Identity for the resource.
- Location string
- The geo-location where the resource lives
- Project
Name string - The name of Cognitive Services account's project.
- Properties
Pulumi.
Azure Native. Cognitive Services. Inputs. Project Properties - Properties of Cognitive Services project.
- Dictionary<string, string>
- Resource tags.
- Account
Name string - The name of Cognitive Services account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Identity
Args - Identity for the resource.
- Location string
- The geo-location where the resource lives
- Project
Name string - The name of Cognitive Services account's project.
- Properties
Project
Properties Args - Properties of Cognitive Services project.
- map[string]string
- Resource tags.
- account
Name String - The name of Cognitive Services account.
- resource
Group StringName - 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
- project
Name String - The name of Cognitive Services account's project.
- properties
Project
Properties - Properties of Cognitive Services project.
- Map<String,String>
- Resource tags.
- account
Name string - The name of Cognitive Services account.
- resource
Group stringName - 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
- project
Name string - The name of Cognitive Services account's project.
- properties
Project
Properties - Properties of Cognitive Services project.
- {[key: string]: string}
- Resource tags.
- account_
name str - The name of Cognitive Services account.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- identity
Identity
Args - 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
Project
Properties Args - Properties of Cognitive Services project.
- Mapping[str, str]
- Resource tags.
- account
Name String - The name of Cognitive Services account.
- resource
Group StringName - 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
- project
Name String - The name of Cognitive Services account's project.
- properties Property Map
- Properties of Cognitive Services project.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Project resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Cognitive Services. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - 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
- system
Data SystemData Response - 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 stringVersion - 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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
- system
Data 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.
Azure Native. Cognitive Services. Resource Identity Type - The identity type.
- User
Assigned List<string>Identities - 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
Resource
Identity Type - The identity type.
- User
Assigned []stringIdentities - 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
Resource
Identity Type - The identity type.
- user
Assigned List<String>Identities - 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
Resource
Identity Type - The identity type.
- user
Assigned string[]Identities - 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
Resource
Identity Type - The identity type.
- user_
assigned_ Sequence[str]identities - 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" | "System
Assigned" | "User Assigned" | "System Assigned, User Assigned" - The identity type.
- user
Assigned List<String>Identities - 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
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Cognitive Services. Inputs. User Assigned Identity Response> - 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 string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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 String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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 string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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_ Mapping[str, Useridentities Assigned Identity Response] - 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 String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - 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.
- Display
Name string - The display name of the Cognitive Services Project.
- Description string
- The description of the Cognitive Services Project.
- Display
Name string - The display name of the Cognitive Services Project.
- description String
- The description of the Cognitive Services Project.
- display
Name String - The display name of the Cognitive Services Project.
- description string
- The description of the Cognitive Services Project.
- display
Name 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.
- display
Name String - The display name of the Cognitive Services Project.
ProjectPropertiesResponse, ProjectPropertiesResponseArgs
- Endpoints Dictionary<string, string>
- 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 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.
- Display
Name string - The display name of the Cognitive Services Project.
- Endpoints map[string]string
- 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 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.
- Display
Name string - The display name of the Cognitive Services Project.
- endpoints Map<String,String>
- The list of endpoint for this Cognitive Services Project.
- is
Default Boolean - Indicates whether the project is the default project for the account.
- provisioning
State 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.
- display
Name String - The display name of the Cognitive Services Project.
- endpoints {[key: string]: string}
- The list of endpoint for this Cognitive Services Project.
- is
Default boolean - Indicates whether the project is the default project for the account.
- provisioning
State 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.
- display
Name 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.
- is
Default Boolean - Indicates whether the project is the default project for the account.
- provisioning
State 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.
- display
Name String - The display name of the Cognitive Services Project.
ResourceIdentityType, ResourceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- Resource
Identity Type None - None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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 stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - Client App Id associated with this identity.
- Principal
Id string - Azure Active Directory principal ID associated with this Identity.
- Client
Id string - Client App Id associated with this identity.
- Principal
Id string - Azure Active Directory principal ID associated with this Identity.
- client
Id String - Client App Id associated with this identity.
- principal
Id String - Azure Active Directory principal ID associated with this Identity.
- client
Id string - Client App Id associated with this identity.
- principal
Id 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.
- client
Id String - Client App Id associated with this identity.
- principal
Id 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