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:
- Account
Name string - The name of Cognitive Services account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Properties
Pulumi.
Azure Native. Cognitive Services. Inputs. Rai Tool Label Properties - Properties of the RAI Tool Label.
- Rai
Tool stringConnection Name - The name of the Rai Tool Label
- 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.
- Properties
Rai
Tool Label Properties Args - Properties of the RAI Tool Label.
- Rai
Tool stringConnection Name - The name of the Rai Tool Label
- 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.
- properties
Rai
Tool Label Properties - Properties of the RAI Tool Label.
- rai
Tool StringConnection Name - The name of the Rai Tool Label
- 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.
- properties
Rai
Tool Label Properties - Properties of the RAI Tool Label.
- rai
Tool stringConnection Name - The name of the Rai Tool Label
- {[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.
- properties
Rai
Tool Label Properties Args - Properties of the RAI Tool Label.
- rai_
tool_ strconnection_ name - The name of the Rai Tool Label
- 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.
- properties Property Map
- Properties of the RAI Tool Label.
- rai
Tool StringConnection Name - The name of the Rai Tool Label
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the RaiToolLabel 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 - 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 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 - 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 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 - 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 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 - 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_ 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 - 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"
- 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 - 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.- Tool
Connection stringName - The unique tool connection name, e.g., 'Web_Search'.
- Account
Scope Pulumi.Azure Native. Cognitive Services. Inputs. Rai Tool Label Properties Account Scope - Account-level tool label definition.
- Project
Scopes List<Pulumi.Azure Native. Cognitive Services. Inputs. Rai Tool Label Properties Project Scopes> - List of project-level tool label definitions.
- Tool
Connection stringName - The unique tool connection name, e.g., 'Web_Search'.
- Account
Scope RaiTool Label Properties Account Scope - Account-level tool label definition.
- Project
Scopes []RaiTool Label Properties Project Scopes - List of project-level tool label definitions.
- tool
Connection StringName - The unique tool connection name, e.g., 'Web_Search'.
- account
Scope RaiTool Label Properties Account Scope - Account-level tool label definition.
- project
Scopes List<RaiTool Label Properties Project Scopes> - List of project-level tool label definitions.
- tool
Connection stringName - The unique tool connection name, e.g., 'Web_Search'.
- account
Scope RaiTool Label Properties Account Scope - Account-level tool label definition.
- project
Scopes RaiTool Label Properties Project Scopes[] - List of project-level tool label definitions.
- tool_
connection_ strname - The unique tool connection name, e.g., 'Web_Search'.
- account_
scope RaiTool Label Properties Account Scope - Account-level tool label definition.
- project_
scopes Sequence[RaiTool Label Properties Project Scopes] - List of project-level tool label definitions.
- tool
Connection StringName - The unique tool connection name, e.g., 'Web_Search'.
- account
Scope Property Map - Account-level tool label definition.
- project
Scopes List<Property Map> - List of project-level tool label definitions.
RaiToolLabelPropertiesAccountScope, RaiToolLabelPropertiesAccountScopeArgs
Account-level tool label definition.- Label
Values Dictionary<string, string> - Dictionary of label key-value pairs for the account scope.
- Label
Values map[string]string - Dictionary of label key-value pairs for the account scope.
- label
Values Map<String,String> - Dictionary of label key-value pairs for the account scope.
- label
Values {[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.
- label
Values Map<String> - Dictionary of label key-value pairs for the account scope.
RaiToolLabelPropertiesProjectScopes, RaiToolLabelPropertiesProjectScopesArgs
- Label
Values Dictionary<string, string> - Dictionary of label key-value pairs for the project scope.
- Project string
- Project name to which this scope applies.
- Label
Values map[string]string - Dictionary of label key-value pairs for the project scope.
- Project string
- Project name to which this scope applies.
- label
Values Map<String,String> - Dictionary of label key-value pairs for the project scope.
- project String
- Project name to which this scope applies.
- label
Values {[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.
- label
Values 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.- Tool
Connection stringName - The unique tool connection name, e.g., 'Web_Search'.
- Account
Scope Pulumi.Azure Native. Cognitive Services. Inputs. Rai Tool Label Properties Response Account Scope - Account-level tool label definition.
- Project
Scopes List<Pulumi.Azure Native. Cognitive Services. Inputs. Rai Tool Label Properties Response Project Scopes> - List of project-level tool label definitions.
- Tool
Connection stringName - The unique tool connection name, e.g., 'Web_Search'.
- Account
Scope RaiTool Label Properties Response Account Scope - Account-level tool label definition.
- Project
Scopes []RaiTool Label Properties Response Project Scopes - List of project-level tool label definitions.
- tool
Connection StringName - The unique tool connection name, e.g., 'Web_Search'.
- account
Scope RaiTool Label Properties Response Account Scope - Account-level tool label definition.
- project
Scopes List<RaiTool Label Properties Response Project Scopes> - List of project-level tool label definitions.
- tool
Connection stringName - The unique tool connection name, e.g., 'Web_Search'.
- account
Scope RaiTool Label Properties Response Account Scope - Account-level tool label definition.
- project
Scopes RaiTool Label Properties Response Project Scopes[] - List of project-level tool label definitions.
- tool_
connection_ strname - The unique tool connection name, e.g., 'Web_Search'.
- account_
scope RaiTool Label Properties Response Account Scope - Account-level tool label definition.
- project_
scopes Sequence[RaiTool Label Properties Response Project Scopes] - List of project-level tool label definitions.
- tool
Connection StringName - The unique tool connection name, e.g., 'Web_Search'.
- account
Scope Property Map - Account-level tool label definition.
- project
Scopes List<Property Map> - List of project-level tool label definitions.
RaiToolLabelPropertiesResponseAccountScope, RaiToolLabelPropertiesResponseAccountScopeArgs
Account-level tool label definition.- Label
Values Dictionary<string, string> - Dictionary of label key-value pairs for the account scope.
- Label
Values map[string]string - Dictionary of label key-value pairs for the account scope.
- label
Values Map<String,String> - Dictionary of label key-value pairs for the account scope.
- label
Values {[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.
- label
Values Map<String> - Dictionary of label key-value pairs for the account scope.
RaiToolLabelPropertiesResponseProjectScopes, RaiToolLabelPropertiesResponseProjectScopesArgs
- Label
Values Dictionary<string, string> - Dictionary of label key-value pairs for the project scope.
- Project string
- Project name to which this scope applies.
- Label
Values map[string]string - Dictionary of label key-value pairs for the project scope.
- Project string
- Project name to which this scope applies.
- label
Values Map<String,String> - Dictionary of label key-value pairs for the project scope.
- project String
- Project name to which this scope applies.
- label
Values {[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.
- label
Values 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.- 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.
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
