1. Packages
  2. Azure Native
  3. API Docs
  4. cognitiveservices
  5. RaiToolLabel
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.13.0 published on Wednesday, Jan 28, 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.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    Cognitive Services RAI Tool Label resource.

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

    Example Usage

    PutRaiToolLabel

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var raiToolLabel = new AzureNative.CognitiveServices.RaiToolLabel("raiToolLabel", new()
        {
            AccountName = "accountName",
            Properties = new AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesArgs
            {
                AccountScope = new AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesAccountScopeArgs
                {
                    LabelValues = 
                    {
                        { "confidentiality", "low" },
                    },
                },
                ProjectScopes = new[]
                {
                    new AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesProjectScopesArgs
                    {
                        LabelValues = 
                        {
                            { "confidentiality", "low" },
                        },
                        Project = "test-project",
                    },
                    new AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesProjectScopesArgs
                    {
                        LabelValues = 
                        {
                            { "confidentiality", "low" },
                        },
                        Project = "sample-project",
                    },
                },
                ToolConnectionName = "Web_Search",
            },
            RaiToolConnectionName = "Web_Search",
            ResourceGroupName = "resourceGroupName",
        });
    
    });
    
    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.NewRaiToolLabel(ctx, "raiToolLabel", &cognitiveservices.RaiToolLabelArgs{
    			AccountName: pulumi.String("accountName"),
    			Properties: &cognitiveservices.RaiToolLabelPropertiesArgs{
    				AccountScope: &cognitiveservices.RaiToolLabelPropertiesAccountScopeArgs{
    					LabelValues: pulumi.StringMap{
    						"confidentiality": pulumi.String("low"),
    					},
    				},
    				ProjectScopes: cognitiveservices.RaiToolLabelPropertiesProjectScopesArray{
    					&cognitiveservices.RaiToolLabelPropertiesProjectScopesArgs{
    						LabelValues: pulumi.StringMap{
    							"confidentiality": pulumi.String("low"),
    						},
    						Project: pulumi.String("test-project"),
    					},
    					&cognitiveservices.RaiToolLabelPropertiesProjectScopesArgs{
    						LabelValues: pulumi.StringMap{
    							"confidentiality": pulumi.String("low"),
    						},
    						Project: pulumi.String("sample-project"),
    					},
    				},
    				ToolConnectionName: pulumi.String("Web_Search"),
    			},
    			RaiToolConnectionName: pulumi.String("Web_Search"),
    			ResourceGroupName:     pulumi.String("resourceGroupName"),
    		})
    		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.RaiToolLabel;
    import com.pulumi.azurenative.cognitiveservices.RaiToolLabelArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.RaiToolLabelPropertiesArgs;
    import com.pulumi.azurenative.cognitiveservices.inputs.RaiToolLabelPropertiesAccountScopeArgs;
    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 raiToolLabel = new RaiToolLabel("raiToolLabel", RaiToolLabelArgs.builder()
                .accountName("accountName")
                .properties(RaiToolLabelPropertiesArgs.builder()
                    .accountScope(RaiToolLabelPropertiesAccountScopeArgs.builder()
                        .labelValues(Map.of("confidentiality", "low"))
                        .build())
                    .projectScopes(                
                        RaiToolLabelPropertiesProjectScopesArgs.builder()
                            .labelValues(Map.of("confidentiality", "low"))
                            .project("test-project")
                            .build(),
                        RaiToolLabelPropertiesProjectScopesArgs.builder()
                            .labelValues(Map.of("confidentiality", "low"))
                            .project("sample-project")
                            .build())
                    .toolConnectionName("Web_Search")
                    .build())
                .raiToolConnectionName("Web_Search")
                .resourceGroupName("resourceGroupName")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const raiToolLabel = new azure_native.cognitiveservices.RaiToolLabel("raiToolLabel", {
        accountName: "accountName",
        properties: {
            accountScope: {
                labelValues: {
                    confidentiality: "low",
                },
            },
            projectScopes: [
                {
                    labelValues: {
                        confidentiality: "low",
                    },
                    project: "test-project",
                },
                {
                    labelValues: {
                        confidentiality: "low",
                    },
                    project: "sample-project",
                },
            ],
            toolConnectionName: "Web_Search",
        },
        raiToolConnectionName: "Web_Search",
        resourceGroupName: "resourceGroupName",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    rai_tool_label = azure_native.cognitiveservices.RaiToolLabel("raiToolLabel",
        account_name="accountName",
        properties={
            "account_scope": {
                "label_values": {
                    "confidentiality": "low",
                },
            },
            "project_scopes": [
                {
                    "label_values": {
                        "confidentiality": "low",
                    },
                    "project": "test-project",
                },
                {
                    "label_values": {
                        "confidentiality": "low",
                    },
                    "project": "sample-project",
                },
            ],
            "tool_connection_name": "Web_Search",
        },
        rai_tool_connection_name="Web_Search",
        resource_group_name="resourceGroupName")
    
    resources:
      raiToolLabel:
        type: azure-native:cognitiveservices:RaiToolLabel
        properties:
          accountName: accountName
          properties:
            accountScope:
              labelValues:
                confidentiality: low
            projectScopes:
              - labelValues:
                  confidentiality: low
                project: test-project
              - labelValues:
                  confidentiality: low
                project: sample-project
            toolConnectionName: Web_Search
          raiToolConnectionName: Web_Search
          resourceGroupName: resourceGroupName
    

    Create RaiToolLabel Resource

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

    Constructor syntax

    new RaiToolLabel(name: string, args: RaiToolLabelArgs, opts?: CustomResourceOptions);
    @overload
    def RaiToolLabel(resource_name: str,
                     args: RaiToolLabelArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def RaiToolLabel(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     account_name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     properties: Optional[RaiToolLabelPropertiesArgs] = None,
                     rai_tool_connection_name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)
    func NewRaiToolLabel(ctx *Context, name string, args RaiToolLabelArgs, opts ...ResourceOption) (*RaiToolLabel, error)
    public RaiToolLabel(string name, RaiToolLabelArgs args, CustomResourceOptions? opts = null)
    public RaiToolLabel(String name, RaiToolLabelArgs args)
    public RaiToolLabel(String name, RaiToolLabelArgs args, CustomResourceOptions options)
    
    type: azure-native:cognitiveservices:RaiToolLabel
    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 RaiToolLabelArgs
    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 RaiToolLabelArgs
    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 RaiToolLabelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RaiToolLabelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RaiToolLabelArgs
    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 raiToolLabelResource = new AzureNative.CognitiveServices.RaiToolLabel("raiToolLabelResource", new()
    {
        AccountName = "string",
        ResourceGroupName = "string",
        Properties = new AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesArgs
        {
            ToolConnectionName = "string",
            AccountScope = new AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesAccountScopeArgs
            {
                LabelValues = 
                {
                    { "string", "string" },
                },
            },
            ProjectScopes = new[]
            {
                new AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesProjectScopesArgs
                {
                    LabelValues = 
                    {
                        { "string", "string" },
                    },
                    Project = "string",
                },
            },
        },
        RaiToolConnectionName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cognitiveservices.NewRaiToolLabel(ctx, "raiToolLabelResource", &cognitiveservices.RaiToolLabelArgs{
    	AccountName:       pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Properties: &cognitiveservices.RaiToolLabelPropertiesArgs{
    		ToolConnectionName: pulumi.String("string"),
    		AccountScope: &cognitiveservices.RaiToolLabelPropertiesAccountScopeArgs{
    			LabelValues: pulumi.StringMap{
    				"string": pulumi.String("string"),
    			},
    		},
    		ProjectScopes: cognitiveservices.RaiToolLabelPropertiesProjectScopesArray{
    			&cognitiveservices.RaiToolLabelPropertiesProjectScopesArgs{
    				LabelValues: pulumi.StringMap{
    					"string": pulumi.String("string"),
    				},
    				Project: pulumi.String("string"),
    			},
    		},
    	},
    	RaiToolConnectionName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var raiToolLabelResource = new RaiToolLabel("raiToolLabelResource", RaiToolLabelArgs.builder()
        .accountName("string")
        .resourceGroupName("string")
        .properties(RaiToolLabelPropertiesArgs.builder()
            .toolConnectionName("string")
            .accountScope(RaiToolLabelPropertiesAccountScopeArgs.builder()
                .labelValues(Map.of("string", "string"))
                .build())
            .projectScopes(RaiToolLabelPropertiesProjectScopesArgs.builder()
                .labelValues(Map.of("string", "string"))
                .project("string")
                .build())
            .build())
        .raiToolConnectionName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    rai_tool_label_resource = azure_native.cognitiveservices.RaiToolLabel("raiToolLabelResource",
        account_name="string",
        resource_group_name="string",
        properties={
            "tool_connection_name": "string",
            "account_scope": {
                "label_values": {
                    "string": "string",
                },
            },
            "project_scopes": [{
                "label_values": {
                    "string": "string",
                },
                "project": "string",
            }],
        },
        rai_tool_connection_name="string",
        tags={
            "string": "string",
        })
    
    const raiToolLabelResource = new azure_native.cognitiveservices.RaiToolLabel("raiToolLabelResource", {
        accountName: "string",
        resourceGroupName: "string",
        properties: {
            toolConnectionName: "string",
            accountScope: {
                labelValues: {
                    string: "string",
                },
            },
            projectScopes: [{
                labelValues: {
                    string: "string",
                },
                project: "string",
            }],
        },
        raiToolConnectionName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:cognitiveservices:RaiToolLabel
    properties:
        accountName: string
        properties:
            accountScope:
                labelValues:
                    string: string
            projectScopes:
                - labelValues:
                    string: string
                  project: string
            toolConnectionName: string
        raiToolConnectionName: string
        resourceGroupName: string
        tags:
            string: string
    

    RaiToolLabel 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 RaiToolLabel 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.
    Properties Pulumi.AzureNative.CognitiveServices.Inputs.RaiToolLabelProperties
    Properties of the RAI Tool Label.
    RaiToolConnectionName string
    The name of the Rai Tool Label
    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.
    Properties RaiToolLabelPropertiesArgs
    Properties of the RAI Tool Label.
    RaiToolConnectionName string
    The name of the Rai Tool Label
    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.
    properties RaiToolLabelProperties
    Properties of the RAI Tool Label.
    raiToolConnectionName String
    The name of the Rai Tool Label
    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.
    properties RaiToolLabelProperties
    Properties of the RAI Tool Label.
    raiToolConnectionName string
    The name of the Rai Tool Label
    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.
    properties RaiToolLabelPropertiesArgs
    Properties of the RAI Tool Label.
    rai_tool_connection_name str
    The name of the Rai Tool Label
    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.
    properties Property Map
    Properties of the RAI Tool Label.
    raiToolConnectionName String
    The name of the Rai Tool Label
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RaiToolLabel 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
    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.
    Etag string
    Resource Etag.
    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.
    etag String
    Resource Etag.
    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.
    etag string
    Resource Etag.
    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.
    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
    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.
    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
    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

    RaiToolLabelProperties, RaiToolLabelPropertiesArgs

    RAI Tool Label properties.
    ToolConnectionName string
    The unique tool connection name, e.g., 'Web_Search'.
    AccountScope Pulumi.AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesAccountScope
    Account-level tool label definition.
    ProjectScopes List<Pulumi.AzureNative.CognitiveServices.Inputs.RaiToolLabelPropertiesProjectScopes>
    List of project-level tool label definitions.
    ToolConnectionName string
    The unique tool connection name, e.g., 'Web_Search'.
    AccountScope RaiToolLabelPropertiesAccountScope
    Account-level tool label definition.
    ProjectScopes []RaiToolLabelPropertiesProjectScopes
    List of project-level tool label definitions.
    toolConnectionName String
    The unique tool connection name, e.g., 'Web_Search'.
    accountScope RaiToolLabelPropertiesAccountScope
    Account-level tool label definition.
    projectScopes List<RaiToolLabelPropertiesProjectScopes>
    List of project-level tool label definitions.
    toolConnectionName string
    The unique tool connection name, e.g., 'Web_Search'.
    accountScope RaiToolLabelPropertiesAccountScope
    Account-level tool label definition.
    projectScopes RaiToolLabelPropertiesProjectScopes[]
    List of project-level tool label definitions.
    tool_connection_name str
    The unique tool connection name, e.g., 'Web_Search'.
    account_scope RaiToolLabelPropertiesAccountScope
    Account-level tool label definition.
    project_scopes Sequence[RaiToolLabelPropertiesProjectScopes]
    List of project-level tool label definitions.
    toolConnectionName String
    The unique tool connection name, e.g., 'Web_Search'.
    accountScope Property Map
    Account-level tool label definition.
    projectScopes List<Property Map>
    List of project-level tool label definitions.

    RaiToolLabelPropertiesAccountScope, RaiToolLabelPropertiesAccountScopeArgs

    Account-level tool label definition.
    LabelValues Dictionary<string, string>
    Dictionary of label key-value pairs for the account scope.
    LabelValues map[string]string
    Dictionary of label key-value pairs for the account scope.
    labelValues Map<String,String>
    Dictionary of label key-value pairs for the account scope.
    labelValues {[key: string]: string}
    Dictionary of label key-value pairs for the account scope.
    label_values Mapping[str, str]
    Dictionary of label key-value pairs for the account scope.
    labelValues Map<String>
    Dictionary of label key-value pairs for the account scope.

    RaiToolLabelPropertiesProjectScopes, RaiToolLabelPropertiesProjectScopesArgs

    LabelValues Dictionary<string, string>
    Dictionary of label key-value pairs for the project scope.
    Project string
    Project name to which this scope applies.
    LabelValues map[string]string
    Dictionary of label key-value pairs for the project scope.
    Project string
    Project name to which this scope applies.
    labelValues Map<String,String>
    Dictionary of label key-value pairs for the project scope.
    project String
    Project name to which this scope applies.
    labelValues {[key: string]: string}
    Dictionary of label key-value pairs for the project scope.
    project string
    Project name to which this scope applies.
    label_values Mapping[str, str]
    Dictionary of label key-value pairs for the project scope.
    project str
    Project name to which this scope applies.
    labelValues Map<String>
    Dictionary of label key-value pairs for the project scope.
    project String
    Project name to which this scope applies.

    RaiToolLabelPropertiesResponse, RaiToolLabelPropertiesResponseArgs

    RAI Tool Label properties.
    ToolConnectionName string
    The unique tool connection name, e.g., 'Web_Search'.
    AccountScope RaiToolLabelPropertiesResponseAccountScope
    Account-level tool label definition.
    ProjectScopes []RaiToolLabelPropertiesResponseProjectScopes
    List of project-level tool label definitions.
    toolConnectionName String
    The unique tool connection name, e.g., 'Web_Search'.
    accountScope RaiToolLabelPropertiesResponseAccountScope
    Account-level tool label definition.
    projectScopes List<RaiToolLabelPropertiesResponseProjectScopes>
    List of project-level tool label definitions.
    toolConnectionName string
    The unique tool connection name, e.g., 'Web_Search'.
    accountScope RaiToolLabelPropertiesResponseAccountScope
    Account-level tool label definition.
    projectScopes RaiToolLabelPropertiesResponseProjectScopes[]
    List of project-level tool label definitions.
    tool_connection_name str
    The unique tool connection name, e.g., 'Web_Search'.
    account_scope RaiToolLabelPropertiesResponseAccountScope
    Account-level tool label definition.
    project_scopes Sequence[RaiToolLabelPropertiesResponseProjectScopes]
    List of project-level tool label definitions.
    toolConnectionName String
    The unique tool connection name, e.g., 'Web_Search'.
    accountScope Property Map
    Account-level tool label definition.
    projectScopes List<Property Map>
    List of project-level tool label definitions.

    RaiToolLabelPropertiesResponseAccountScope, RaiToolLabelPropertiesResponseAccountScopeArgs

    Account-level tool label definition.
    LabelValues Dictionary<string, string>
    Dictionary of label key-value pairs for the account scope.
    LabelValues map[string]string
    Dictionary of label key-value pairs for the account scope.
    labelValues Map<String,String>
    Dictionary of label key-value pairs for the account scope.
    labelValues {[key: string]: string}
    Dictionary of label key-value pairs for the account scope.
    label_values Mapping[str, str]
    Dictionary of label key-value pairs for the account scope.
    labelValues Map<String>
    Dictionary of label key-value pairs for the account scope.

    RaiToolLabelPropertiesResponseProjectScopes, RaiToolLabelPropertiesResponseProjectScopesArgs

    LabelValues Dictionary<string, string>
    Dictionary of label key-value pairs for the project scope.
    Project string
    Project name to which this scope applies.
    LabelValues map[string]string
    Dictionary of label key-value pairs for the project scope.
    Project string
    Project name to which this scope applies.
    labelValues Map<String,String>
    Dictionary of label key-value pairs for the project scope.
    project String
    Project name to which this scope applies.
    labelValues {[key: string]: string}
    Dictionary of label key-value pairs for the project scope.
    project string
    Project name to which this scope applies.
    label_values Mapping[str, str]
    Dictionary of label key-value pairs for the project scope.
    project str
    Project name to which this scope applies.
    labelValues Map<String>
    Dictionary of label key-value pairs for the project scope.
    project String
    Project name to which this scope applies.

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

    Import

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

    $ pulumi import azure-native:cognitiveservices:RaiToolLabel Web_Search /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/raiToolLabels/{raiToolConnectionName} 
    

    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.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate