azure-native.machinelearningservices.LabelingJob
Explore with Pulumi AI
Machine Learning labeling job object wrapped into ARM resource envelope. API Version: 2020-09-01-preview.
Example Usage
Create or update LabelingJob
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var labelingJob = new AzureNative.MachineLearningServices.LabelingJob("labelingJob", new()
{
LabelingJobId = "testLabelingJob",
Properties = new AzureNative.MachineLearningServices.Inputs.LabelingJobPropertiesArgs
{
DatasetConfiguration = new AzureNative.MachineLearningServices.Inputs.LabelingDatasetConfigurationArgs
{
AssetName = "testdataasset",
DatasetVersion = "1",
EnableIncrementalDatasetRefresh = true,
},
JobInstructions = new AzureNative.MachineLearningServices.Inputs.LabelingJobInstructionsArgs
{
Uri = "https://www.testjobInstructions.com/labeling1.txt",
},
LabelCategories =
{
{ "testCategory", new AzureNative.MachineLearningServices.Inputs.LabelCategoryArgs
{
AllowMultiSelect = false,
Classes =
{
{ "testClass1", new AzureNative.MachineLearningServices.Inputs.LabelClassArgs
{
DisplayName = "testClass1",
Subclasses =
{
{ "testclass1-1", new AzureNative.MachineLearningServices.Inputs.LabelClassArgs
{
DisplayName = "testClass1-1",
} },
},
} },
{ "testClass2", new AzureNative.MachineLearningServices.Inputs.LabelClassArgs
{
DisplayName = "testClass2",
} },
},
DisplayName = "testCategory",
} },
},
LabelingJobMediaProperties = new AzureNative.MachineLearningServices.Inputs.LabelingJobImagePropertiesArgs
{
AnnotationType = "BoundingBox",
MediaType = "Image",
},
MlAssistConfiguration = new AzureNative.MachineLearningServices.Inputs.MLAssistConfigurationArgs
{
InferencingComputeBinding = new AzureNative.MachineLearningServices.Inputs.ComputeBindingArgs
{
ComputeId = "inferencingcompute",
},
MlAssistEnabled = true,
ModelNamePrefix = "testmodel_1",
PrelabelAccuracyThreshold = 0.8,
TrainingComputeBinding = new AzureNative.MachineLearningServices.Inputs.ComputeBindingArgs
{
ComputeId = "trainingcompute",
},
},
Properties =
{
{ "additionalProp1", "string" },
{ "additionalProp2", "string" },
{ "additionalProp3", "string" },
},
Tags =
{
{ "additionalProp1", "string" },
{ "additionalProp2", "string" },
{ "additionalProp3", "string" },
},
},
ResourceGroupName = "workspace-1234",
WorkspaceName = "testworkspace",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.LabelingJob;
import com.pulumi.azurenative.machinelearningservices.LabelingJobArgs;
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 labelingJob = new LabelingJob("labelingJob", LabelingJobArgs.builder()
.labelingJobId("testLabelingJob")
.properties(Map.ofEntries(
Map.entry("datasetConfiguration", Map.ofEntries(
Map.entry("assetName", "testdataasset"),
Map.entry("datasetVersion", "1"),
Map.entry("enableIncrementalDatasetRefresh", true)
)),
Map.entry("jobInstructions", Map.of("uri", "https://www.testjobInstructions.com/labeling1.txt")),
Map.entry("labelCategories", Map.of("testCategory", Map.ofEntries(
Map.entry("allowMultiSelect", false),
Map.entry("classes", Map.ofEntries(
Map.entry("testClass1", Map.ofEntries(
Map.entry("displayName", "testClass1"),
Map.entry("subclasses", Map.of("testclass1-1", Map.of("displayName", "testClass1-1")))
)),
Map.entry("testClass2", Map.of("displayName", "testClass2"))
)),
Map.entry("displayName", "testCategory")
))),
Map.entry("labelingJobMediaProperties", Map.ofEntries(
Map.entry("annotationType", "BoundingBox"),
Map.entry("mediaType", "Image")
)),
Map.entry("mlAssistConfiguration", Map.ofEntries(
Map.entry("inferencingComputeBinding", Map.of("computeId", "inferencingcompute")),
Map.entry("mlAssistEnabled", true),
Map.entry("modelNamePrefix", "testmodel_1"),
Map.entry("prelabelAccuracyThreshold", 0.8),
Map.entry("trainingComputeBinding", Map.of("computeId", "trainingcompute"))
)),
Map.entry("properties", Map.ofEntries(
Map.entry("additionalProp1", "string"),
Map.entry("additionalProp2", "string"),
Map.entry("additionalProp3", "string")
)),
Map.entry("tags", Map.ofEntries(
Map.entry("additionalProp1", "string"),
Map.entry("additionalProp2", "string"),
Map.entry("additionalProp3", "string")
))
))
.resourceGroupName("workspace-1234")
.workspaceName("testworkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
labeling_job = azure_native.machinelearningservices.LabelingJob("labelingJob",
labeling_job_id="testLabelingJob",
properties=azure_native.machinelearningservices.LabelingJobPropertiesResponseArgs(
dataset_configuration=azure_native.machinelearningservices.LabelingDatasetConfigurationArgs(
asset_name="testdataasset",
dataset_version="1",
enable_incremental_dataset_refresh=True,
),
job_instructions=azure_native.machinelearningservices.LabelingJobInstructionsArgs(
uri="https://www.testjobInstructions.com/labeling1.txt",
),
label_categories={
"testCategory": azure_native.machinelearningservices.LabelCategoryArgs(
allow_multi_select=False,
classes={
"testClass1": {
"displayName": "testClass1",
"subclasses": {
"testclass1-1": azure_native.machinelearningservices.LabelClassArgs(
display_name="testClass1-1",
),
},
},
"testClass2": azure_native.machinelearningservices.LabelClassArgs(
display_name="testClass2",
),
},
display_name="testCategory",
),
},
labeling_job_media_properties=azure_native.machinelearningservices.LabelingJobImagePropertiesArgs(
annotation_type="BoundingBox",
media_type="Image",
),
ml_assist_configuration={
"inferencingComputeBinding": azure_native.machinelearningservices.ComputeBindingArgs(
compute_id="inferencingcompute",
),
"mlAssistEnabled": True,
"modelNamePrefix": "testmodel_1",
"prelabelAccuracyThreshold": 0.8,
"trainingComputeBinding": azure_native.machinelearningservices.ComputeBindingArgs(
compute_id="trainingcompute",
),
},
properties={
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
tags={
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
),
resource_group_name="workspace-1234",
workspace_name="testworkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const labelingJob = new azure_native.machinelearningservices.LabelingJob("labelingJob", {
labelingJobId: "testLabelingJob",
properties: {
datasetConfiguration: {
assetName: "testdataasset",
datasetVersion: "1",
enableIncrementalDatasetRefresh: true,
},
jobInstructions: {
uri: "https://www.testjobInstructions.com/labeling1.txt",
},
labelCategories: {
testCategory: {
allowMultiSelect: false,
classes: {
testClass1: {
displayName: "testClass1",
subclasses: {
"testclass1-1": {
displayName: "testClass1-1",
},
},
},
testClass2: {
displayName: "testClass2",
},
},
displayName: "testCategory",
},
},
labelingJobMediaProperties: {
annotationType: "BoundingBox",
mediaType: "Image",
},
mlAssistConfiguration: {
inferencingComputeBinding: {
computeId: "inferencingcompute",
},
mlAssistEnabled: true,
modelNamePrefix: "testmodel_1",
prelabelAccuracyThreshold: 0.8,
trainingComputeBinding: {
computeId: "trainingcompute",
},
},
properties: {
additionalProp1: "string",
additionalProp2: "string",
additionalProp3: "string",
},
tags: {
additionalProp1: "string",
additionalProp2: "string",
additionalProp3: "string",
},
},
resourceGroupName: "workspace-1234",
workspaceName: "testworkspace",
});
resources:
labelingJob:
type: azure-native:machinelearningservices:LabelingJob
properties:
labelingJobId: testLabelingJob
properties:
datasetConfiguration:
assetName: testdataasset
datasetVersion: '1'
enableIncrementalDatasetRefresh: true
jobInstructions:
uri: https://www.testjobInstructions.com/labeling1.txt
labelCategories:
testCategory:
allowMultiSelect: false
classes:
testClass1:
displayName: testClass1
subclasses:
testclass1-1:
displayName: testClass1-1
testClass2:
displayName: testClass2
displayName: testCategory
labelingJobMediaProperties:
annotationType: BoundingBox
mediaType: Image
mlAssistConfiguration:
inferencingComputeBinding:
computeId: inferencingcompute
mlAssistEnabled: true
modelNamePrefix: testmodel_1
prelabelAccuracyThreshold: 0.8
trainingComputeBinding:
computeId: trainingcompute
properties:
additionalProp1: string
additionalProp2: string
additionalProp3: string
tags:
additionalProp1: string
additionalProp2: string
additionalProp3: string
resourceGroupName: workspace-1234
workspaceName: testworkspace
Create LabelingJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LabelingJob(name: string, args: LabelingJobArgs, opts?: CustomResourceOptions);
@overload
def LabelingJob(resource_name: str,
args: LabelingJobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LabelingJob(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
labeling_job_id: Optional[str] = None,
properties: Optional[LabelingJobPropertiesArgs] = None)
func NewLabelingJob(ctx *Context, name string, args LabelingJobArgs, opts ...ResourceOption) (*LabelingJob, error)
public LabelingJob(string name, LabelingJobArgs args, CustomResourceOptions? opts = null)
public LabelingJob(String name, LabelingJobArgs args)
public LabelingJob(String name, LabelingJobArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:LabelingJob
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 LabelingJobArgs
- 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 LabelingJobArgs
- 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 LabelingJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LabelingJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LabelingJobArgs
- 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 labelingJobResource = new AzureNative.Machinelearningservices.LabelingJob("labelingJobResource", new()
{
ResourceGroupName = "string",
WorkspaceName = "string",
LabelingJobId = "string",
Properties =
{
{ "datasetConfiguration",
{
{ "assetName", "string" },
{ "datasetVersion", "string" },
{ "enableIncrementalDatasetRefresh", false },
} },
{ "jobInstructions",
{
{ "uri", "string" },
} },
{ "labelCategories",
{
{ "string",
{
{ "classes",
{
{ "string",
{
{ "displayName", "string" },
{ "subclasses",
{
{ "string", labelClass },
} },
} },
} },
{ "allowMultiSelect", false },
{ "displayName", "string" },
} },
} },
{ "labelingJobMediaProperties",
{
{ "mediaType", "string" },
{ "annotationType", "string" },
} },
{ "mlAssistConfiguration",
{
{ "inferencingComputeBinding",
{
{ "computeId", "string" },
{ "nodeCount", 0 },
} },
{ "modelNamePrefix", "string" },
{ "trainingComputeBinding",
{
{ "computeId", "string" },
{ "nodeCount", 0 },
} },
{ "mlAssistEnabled", false },
{ "prelabelAccuracyThreshold", 0 },
} },
{ "properties",
{
{ "string", "string" },
} },
{ "tags",
{
{ "string", "string" },
} },
},
});
example, err := machinelearningservices.NewLabelingJob(ctx, "labelingJobResource", &machinelearningservices.LabelingJobArgs{
ResourceGroupName: "string",
WorkspaceName: "string",
LabelingJobId: "string",
Properties: map[string]interface{}{
"datasetConfiguration": map[string]interface{}{
"assetName": "string",
"datasetVersion": "string",
"enableIncrementalDatasetRefresh": false,
},
"jobInstructions": map[string]interface{}{
"uri": "string",
},
"labelCategories": map[string]interface{}{
"string": map[string]interface{}{
"classes": map[string]interface{}{
"string": map[string]interface{}{
"displayName": "string",
"subclasses": map[string]interface{}{
"string": labelClass,
},
},
},
"allowMultiSelect": false,
"displayName": "string",
},
},
"labelingJobMediaProperties": map[string]interface{}{
"mediaType": "string",
"annotationType": "string",
},
"mlAssistConfiguration": map[string]interface{}{
"inferencingComputeBinding": map[string]interface{}{
"computeId": "string",
"nodeCount": 0,
},
"modelNamePrefix": "string",
"trainingComputeBinding": map[string]interface{}{
"computeId": "string",
"nodeCount": 0,
},
"mlAssistEnabled": false,
"prelabelAccuracyThreshold": 0,
},
"properties": map[string]interface{}{
"string": "string",
},
"tags": map[string]interface{}{
"string": "string",
},
},
})
var labelingJobResource = new LabelingJob("labelingJobResource", LabelingJobArgs.builder()
.resourceGroupName("string")
.workspaceName("string")
.labelingJobId("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
labeling_job_resource = azure_native.machinelearningservices.LabelingJob("labelingJobResource",
resource_group_name=string,
workspace_name=string,
labeling_job_id=string,
properties={
datasetConfiguration: {
assetName: string,
datasetVersion: string,
enableIncrementalDatasetRefresh: False,
},
jobInstructions: {
uri: string,
},
labelCategories: {
string: {
classes: {
string: {
displayName: string,
subclasses: {
string: label_class,
},
},
},
allowMultiSelect: False,
displayName: string,
},
},
labelingJobMediaProperties: {
mediaType: string,
annotationType: string,
},
mlAssistConfiguration: {
inferencingComputeBinding: {
computeId: string,
nodeCount: 0,
},
modelNamePrefix: string,
trainingComputeBinding: {
computeId: string,
nodeCount: 0,
},
mlAssistEnabled: False,
prelabelAccuracyThreshold: 0,
},
properties: {
string: string,
},
tags: {
string: string,
},
})
const labelingJobResource = new azure_native.machinelearningservices.LabelingJob("labelingJobResource", {
resourceGroupName: "string",
workspaceName: "string",
labelingJobId: "string",
properties: {
datasetConfiguration: {
assetName: "string",
datasetVersion: "string",
enableIncrementalDatasetRefresh: false,
},
jobInstructions: {
uri: "string",
},
labelCategories: {
string: {
classes: {
string: {
displayName: "string",
subclasses: {
string: labelClass,
},
},
},
allowMultiSelect: false,
displayName: "string",
},
},
labelingJobMediaProperties: {
mediaType: "string",
annotationType: "string",
},
mlAssistConfiguration: {
inferencingComputeBinding: {
computeId: "string",
nodeCount: 0,
},
modelNamePrefix: "string",
trainingComputeBinding: {
computeId: "string",
nodeCount: 0,
},
mlAssistEnabled: false,
prelabelAccuracyThreshold: 0,
},
properties: {
string: "string",
},
tags: {
string: "string",
},
},
});
type: azure-native:machinelearningservices:LabelingJob
properties:
labelingJobId: string
properties:
datasetConfiguration:
assetName: string
datasetVersion: string
enableIncrementalDatasetRefresh: false
jobInstructions:
uri: string
labelCategories:
string:
allowMultiSelect: false
classes:
string:
displayName: string
subclasses:
string: ${labelClass}
displayName: string
labelingJobMediaProperties:
annotationType: string
mediaType: string
mlAssistConfiguration:
inferencingComputeBinding:
computeId: string
nodeCount: 0
mlAssistEnabled: false
modelNamePrefix: string
prelabelAccuracyThreshold: 0
trainingComputeBinding:
computeId: string
nodeCount: 0
properties:
string: string
tags:
string: string
resourceGroupName: string
workspaceName: string
LabelingJob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The LabelingJob resource accepts the following input properties:
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Labeling
Job stringId - Name and identifier for LabelingJob.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Labeling Job Properties - Definition of a labeling job.
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Labeling
Job stringId - Name and identifier for LabelingJob.
- Properties
Labeling
Job Properties Args - Definition of a labeling job.
- resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- labeling
Job StringId - Name and identifier for LabelingJob.
- properties
Labeling
Job Properties - Definition of a labeling job.
- resource
Group stringName - Name of the resource group in which workspace is located.
- workspace
Name string - Name of Azure Machine Learning workspace.
- labeling
Job stringId - Name and identifier for LabelingJob.
- properties
Labeling
Job Properties - Definition of a labeling job.
- resource_
group_ strname - Name of the resource group in which workspace is located.
- workspace_
name str - Name of Azure Machine Learning workspace.
- labeling_
job_ strid - Name and identifier for LabelingJob.
- properties
Labeling
Job Properties Args - Definition of a labeling job.
- resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- labeling
Job StringId - Name and identifier for LabelingJob.
- properties Property Map
- Definition of a labeling job.
Outputs
All input properties are implicitly available as output properties. Additionally, the LabelingJob resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource entity.
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource provider and type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource entity.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource provider and type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource entity.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- The resource provider and type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource entity.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- The resource provider and type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource entity.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- The resource provider and type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource entity.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The resource provider and type.
Supporting Types
ComputeBinding, ComputeBindingArgs
- compute_
id str - ID of the compute resource.
- node_
count int - Number of nodes.
ComputeBindingResponse, ComputeBindingResponseArgs
- compute_
id str - ID of the compute resource.
- node_
count int - Number of nodes.
ImageAnnotationType, ImageAnnotationTypeArgs
- Classification
- Classification
- Bounding
Box - BoundingBox
- Instance
Segmentation - InstanceSegmentation
- Image
Annotation Type Classification - Classification
- Image
Annotation Type Bounding Box - BoundingBox
- Image
Annotation Type Instance Segmentation - InstanceSegmentation
- Classification
- Classification
- Bounding
Box - BoundingBox
- Instance
Segmentation - InstanceSegmentation
- Classification
- Classification
- Bounding
Box - BoundingBox
- Instance
Segmentation - InstanceSegmentation
- CLASSIFICATION
- Classification
- BOUNDING_BOX
- BoundingBox
- INSTANCE_SEGMENTATION
- InstanceSegmentation
- "Classification"
- Classification
- "Bounding
Box" - BoundingBox
- "Instance
Segmentation" - InstanceSegmentation
LabelCategory, LabelCategoryArgs
- Classes
Dictionary<string, Pulumi.
Azure Native. Machine Learning Services. Inputs. Label Class> - Dictionary of label classes in this category.
- Allow
Multi boolSelect - Indicates whether it is allowed to select multiple classes in this category.
- Display
Name string - Display name of the label category.
- Classes
map[string]Label
Class - Dictionary of label classes in this category.
- Allow
Multi boolSelect - Indicates whether it is allowed to select multiple classes in this category.
- Display
Name string - Display name of the label category.
- classes
Map<String,Label
Class> - Dictionary of label classes in this category.
- allow
Multi BooleanSelect - Indicates whether it is allowed to select multiple classes in this category.
- display
Name String - Display name of the label category.
- classes
{[key: string]: Label
Class} - Dictionary of label classes in this category.
- allow
Multi booleanSelect - Indicates whether it is allowed to select multiple classes in this category.
- display
Name string - Display name of the label category.
- classes
Mapping[str, Label
Class] - Dictionary of label classes in this category.
- allow_
multi_ boolselect - Indicates whether it is allowed to select multiple classes in this category.
- display_
name str - Display name of the label category.
- classes Map<Property Map>
- Dictionary of label classes in this category.
- allow
Multi BooleanSelect - Indicates whether it is allowed to select multiple classes in this category.
- display
Name String - Display name of the label category.
LabelCategoryResponse, LabelCategoryResponseArgs
- Classes
Dictionary<string, Pulumi.
Azure Native. Machine Learning Services. Inputs. Label Class Response> - Dictionary of label classes in this category.
- Allow
Multi boolSelect - Indicates whether it is allowed to select multiple classes in this category.
- Display
Name string - Display name of the label category.
- Classes
map[string]Label
Class Response - Dictionary of label classes in this category.
- Allow
Multi boolSelect - Indicates whether it is allowed to select multiple classes in this category.
- Display
Name string - Display name of the label category.
- classes
Map<String,Label
Class Response> - Dictionary of label classes in this category.
- allow
Multi BooleanSelect - Indicates whether it is allowed to select multiple classes in this category.
- display
Name String - Display name of the label category.
- classes
{[key: string]: Label
Class Response} - Dictionary of label classes in this category.
- allow
Multi booleanSelect - Indicates whether it is allowed to select multiple classes in this category.
- display
Name string - Display name of the label category.
- classes
Mapping[str, Label
Class Response] - Dictionary of label classes in this category.
- allow_
multi_ boolselect - Indicates whether it is allowed to select multiple classes in this category.
- display_
name str - Display name of the label category.
- classes Map<Property Map>
- Dictionary of label classes in this category.
- allow
Multi BooleanSelect - Indicates whether it is allowed to select multiple classes in this category.
- display
Name String - Display name of the label category.
LabelClass, LabelClassArgs
- Display
Name string - Display name of the label class.
- Subclasses
Dictionary<string, Pulumi.
Azure Native. Machine Learning Services. Inputs. Label Class> - Dictionary of subclasses of the label class.
- Display
Name string - Display name of the label class.
- Subclasses
map[string]Label
Class - Dictionary of subclasses of the label class.
- display
Name String - Display name of the label class.
- subclasses
Map<String,Label
Class> - Dictionary of subclasses of the label class.
- display
Name string - Display name of the label class.
- subclasses
{[key: string]: Label
Class} - Dictionary of subclasses of the label class.
- display_
name str - Display name of the label class.
- subclasses
Mapping[str, Label
Class] - Dictionary of subclasses of the label class.
- display
Name String - Display name of the label class.
- subclasses Map<Property Map>
- Dictionary of subclasses of the label class.
LabelClassResponse, LabelClassResponseArgs
- Display
Name string - Display name of the label class.
- Subclasses
Dictionary<string, Pulumi.
Azure Native. Machine Learning Services. Inputs. Label Class Response> - Dictionary of subclasses of the label class.
- Display
Name string - Display name of the label class.
- Subclasses
map[string]Label
Class Response - Dictionary of subclasses of the label class.
- display
Name String - Display name of the label class.
- subclasses
Map<String,Label
Class Response> - Dictionary of subclasses of the label class.
- display
Name string - Display name of the label class.
- subclasses
{[key: string]: Label
Class Response} - Dictionary of subclasses of the label class.
- display_
name str - Display name of the label class.
- subclasses
Mapping[str, Label
Class Response] - Dictionary of subclasses of the label class.
- display
Name String - Display name of the label class.
- subclasses Map<Property Map>
- Dictionary of subclasses of the label class.
LabelingDatasetConfiguration, LabelingDatasetConfigurationArgs
- Asset
Name string - Name of the data asset to perform labeling.
- Dataset
Version string - AML dataset version.
- Enable
Incremental boolDataset Refresh - Indicates whether to enable incremental dataset refresh.
- Asset
Name string - Name of the data asset to perform labeling.
- Dataset
Version string - AML dataset version.
- Enable
Incremental boolDataset Refresh - Indicates whether to enable incremental dataset refresh.
- asset
Name String - Name of the data asset to perform labeling.
- dataset
Version String - AML dataset version.
- enable
Incremental BooleanDataset Refresh - Indicates whether to enable incremental dataset refresh.
- asset
Name string - Name of the data asset to perform labeling.
- dataset
Version string - AML dataset version.
- enable
Incremental booleanDataset Refresh - Indicates whether to enable incremental dataset refresh.
- asset_
name str - Name of the data asset to perform labeling.
- dataset_
version str - AML dataset version.
- enable_
incremental_ booldataset_ refresh - Indicates whether to enable incremental dataset refresh.
- asset
Name String - Name of the data asset to perform labeling.
- dataset
Version String - AML dataset version.
- enable
Incremental BooleanDataset Refresh - Indicates whether to enable incremental dataset refresh.
LabelingDatasetConfigurationResponse, LabelingDatasetConfigurationResponseArgs
- Asset
Name string - Name of the data asset to perform labeling.
- Dataset
Version string - AML dataset version.
- Enable
Incremental boolDataset Refresh - Indicates whether to enable incremental dataset refresh.
- Asset
Name string - Name of the data asset to perform labeling.
- Dataset
Version string - AML dataset version.
- Enable
Incremental boolDataset Refresh - Indicates whether to enable incremental dataset refresh.
- asset
Name String - Name of the data asset to perform labeling.
- dataset
Version String - AML dataset version.
- enable
Incremental BooleanDataset Refresh - Indicates whether to enable incremental dataset refresh.
- asset
Name string - Name of the data asset to perform labeling.
- dataset
Version string - AML dataset version.
- enable
Incremental booleanDataset Refresh - Indicates whether to enable incremental dataset refresh.
- asset_
name str - Name of the data asset to perform labeling.
- dataset_
version str - AML dataset version.
- enable_
incremental_ booldataset_ refresh - Indicates whether to enable incremental dataset refresh.
- asset
Name String - Name of the data asset to perform labeling.
- dataset
Version String - AML dataset version.
- enable
Incremental BooleanDataset Refresh - Indicates whether to enable incremental dataset refresh.
LabelingJobImageProperties, LabelingJobImagePropertiesArgs
- Media
Type string | Pulumi.Azure Native. Machine Learning Services. Media Type - Media type of data asset.
- Annotation
Type string | Pulumi.Azure Native. Machine Learning Services. Image Annotation Type - Annotation type of image labeling tasks.
- Media
Type string | MediaType - Media type of data asset.
- Annotation
Type string | ImageAnnotation Type - Annotation type of image labeling tasks.
- media
Type String | MediaType - Media type of data asset.
- annotation
Type String | ImageAnnotation Type - Annotation type of image labeling tasks.
- media
Type string | MediaType - Media type of data asset.
- annotation
Type string | ImageAnnotation Type - Annotation type of image labeling tasks.
- media_
type str | MediaType - Media type of data asset.
- annotation_
type str | ImageAnnotation Type - Annotation type of image labeling tasks.
- media
Type String | "Image" | "Text" - Media type of data asset.
- annotation
Type String | "Classification" | "BoundingBox" | "Instance Segmentation" - Annotation type of image labeling tasks.
LabelingJobImagePropertiesResponse, LabelingJobImagePropertiesResponseArgs
- Media
Type string - Media type of data asset.
- Annotation
Type string - Annotation type of image labeling tasks.
- Media
Type string - Media type of data asset.
- Annotation
Type string - Annotation type of image labeling tasks.
- media
Type String - Media type of data asset.
- annotation
Type String - Annotation type of image labeling tasks.
- media
Type string - Media type of data asset.
- annotation
Type string - Annotation type of image labeling tasks.
- media_
type str - Media type of data asset.
- annotation_
type str - Annotation type of image labeling tasks.
- media
Type String - Media type of data asset.
- annotation
Type String - Annotation type of image labeling tasks.
LabelingJobInstructions, LabelingJobInstructionsArgs
- Uri string
- The link to a page with detailed labeling instructions for labelers.
- Uri string
- The link to a page with detailed labeling instructions for labelers.
- uri String
- The link to a page with detailed labeling instructions for labelers.
- uri string
- The link to a page with detailed labeling instructions for labelers.
- uri str
- The link to a page with detailed labeling instructions for labelers.
- uri String
- The link to a page with detailed labeling instructions for labelers.
LabelingJobInstructionsResponse, LabelingJobInstructionsResponseArgs
- Uri string
- The link to a page with detailed labeling instructions for labelers.
- Uri string
- The link to a page with detailed labeling instructions for labelers.
- uri String
- The link to a page with detailed labeling instructions for labelers.
- uri string
- The link to a page with detailed labeling instructions for labelers.
- uri str
- The link to a page with detailed labeling instructions for labelers.
- uri String
- The link to a page with detailed labeling instructions for labelers.
LabelingJobProperties, LabelingJobPropertiesArgs
- Dataset
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Labeling Dataset Configuration - Dataset configuration for the job.
- Job
Instructions Pulumi.Azure Native. Machine Learning Services. Inputs. Labeling Job Instructions - Instructions for the job.
- Label
Categories Dictionary<string, Pulumi.Azure Native. Machine Learning Services. Inputs. Label Category> - Label categories of the job.
- Labeling
Job Pulumi.Media Properties Azure Native. Machine Learning Services. Inputs. Labeling Job Image Properties - Media specific properties in a labeling job.
- Ml
Assist Pulumi.Configuration Azure Native. Machine Learning Services. Inputs. MLAssist Configuration - Machine learning assisted configuration for the job.
- Properties Dictionary<string, string>
- The job property dictionary. Properties can be added, but not removed or altered.
- Dictionary<string, string>
- The job tag dictionary. Tags can be added, removed, and updated.
- Dataset
Configuration LabelingDataset Configuration - Dataset configuration for the job.
- Job
Instructions LabelingJob Instructions - Instructions for the job.
- Label
Categories map[string]LabelCategory - Label categories of the job.
- Labeling
Job LabelingMedia Properties Job Image Properties - Media specific properties in a labeling job.
- Ml
Assist MLAssistConfiguration Configuration - Machine learning assisted configuration for the job.
- Properties map[string]string
- The job property dictionary. Properties can be added, but not removed or altered.
- map[string]string
- The job tag dictionary. Tags can be added, removed, and updated.
- dataset
Configuration LabelingDataset Configuration - Dataset configuration for the job.
- job
Instructions LabelingJob Instructions - Instructions for the job.
- label
Categories Map<String,LabelCategory> - Label categories of the job.
- labeling
Job LabelingMedia Properties Job Image Properties - Media specific properties in a labeling job.
- ml
Assist MLAssistConfiguration Configuration - Machine learning assisted configuration for the job.
- properties Map<String,String>
- The job property dictionary. Properties can be added, but not removed or altered.
- Map<String,String>
- The job tag dictionary. Tags can be added, removed, and updated.
- dataset
Configuration LabelingDataset Configuration - Dataset configuration for the job.
- job
Instructions LabelingJob Instructions - Instructions for the job.
- label
Categories {[key: string]: LabelCategory} - Label categories of the job.
- labeling
Job LabelingMedia Properties Job Image Properties - Media specific properties in a labeling job.
- ml
Assist MLAssistConfiguration Configuration - Machine learning assisted configuration for the job.
- properties {[key: string]: string}
- The job property dictionary. Properties can be added, but not removed or altered.
- {[key: string]: string}
- The job tag dictionary. Tags can be added, removed, and updated.
- dataset_
configuration LabelingDataset Configuration - Dataset configuration for the job.
- job_
instructions LabelingJob Instructions - Instructions for the job.
- label_
categories Mapping[str, LabelCategory] - Label categories of the job.
- labeling_
job_ Labelingmedia_ properties Job Image Properties - Media specific properties in a labeling job.
- ml_
assist_ MLAssistconfiguration Configuration - Machine learning assisted configuration for the job.
- properties Mapping[str, str]
- The job property dictionary. Properties can be added, but not removed or altered.
- Mapping[str, str]
- The job tag dictionary. Tags can be added, removed, and updated.
- dataset
Configuration Property Map - Dataset configuration for the job.
- job
Instructions Property Map - Instructions for the job.
- label
Categories Map<Property Map> - Label categories of the job.
- labeling
Job Property MapMedia Properties - Media specific properties in a labeling job.
- ml
Assist Property MapConfiguration - Machine learning assisted configuration for the job.
- properties Map<String>
- The job property dictionary. Properties can be added, but not removed or altered.
- Map<String>
- The job tag dictionary. Tags can be added, removed, and updated.
LabelingJobPropertiesResponse, LabelingJobPropertiesResponseArgs
- Created
Time stringUtc - Created time of the job in UTC timezone.
- Dataset
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Labeling Dataset Configuration Response - Dataset configuration for the job.
- Job
Instructions Pulumi.Azure Native. Machine Learning Services. Inputs. Labeling Job Instructions Response - Instructions for the job.
- Label
Categories Dictionary<string, Pulumi.Azure Native. Machine Learning Services. Inputs. Label Category Response> - Label categories of the job.
- Labeling
Job Pulumi.Media Properties Azure Native. Machine Learning Services. Inputs. Labeling Job Image Properties Response - Media specific properties in a labeling job.
- Progress
Metrics Pulumi.Azure Native. Machine Learning Services. Inputs. Progress Metrics Response - Progress metrics of the job.
- Project
Id string - Internal id of the job(Previously called project).
- Status string
- Status of the job.
- Status
Messages List<Pulumi.Azure Native. Machine Learning Services. Inputs. Status Message Response> - Status messages of the job.
- Ml
Assist Pulumi.Configuration Azure Native. Machine Learning Services. Inputs. MLAssist Configuration Response - Machine learning assisted configuration for the job.
- Properties Dictionary<string, string>
- The job property dictionary. Properties can be added, but not removed or altered.
- Dictionary<string, string>
- The job tag dictionary. Tags can be added, removed, and updated.
- Created
Time stringUtc - Created time of the job in UTC timezone.
- Dataset
Configuration LabelingDataset Configuration Response - Dataset configuration for the job.
- Job
Instructions LabelingJob Instructions Response - Instructions for the job.
- Label
Categories map[string]LabelCategory Response - Label categories of the job.
- Labeling
Job LabelingMedia Properties Job Image Properties Response - Media specific properties in a labeling job.
- Progress
Metrics ProgressMetrics Response - Progress metrics of the job.
- Project
Id string - Internal id of the job(Previously called project).
- Status string
- Status of the job.
- Status
Messages []StatusMessage Response - Status messages of the job.
- Ml
Assist MLAssistConfiguration Configuration Response - Machine learning assisted configuration for the job.
- Properties map[string]string
- The job property dictionary. Properties can be added, but not removed or altered.
- map[string]string
- The job tag dictionary. Tags can be added, removed, and updated.
- created
Time StringUtc - Created time of the job in UTC timezone.
- dataset
Configuration LabelingDataset Configuration Response - Dataset configuration for the job.
- job
Instructions LabelingJob Instructions Response - Instructions for the job.
- label
Categories Map<String,LabelCategory Response> - Label categories of the job.
- labeling
Job LabelingMedia Properties Job Image Properties Response - Media specific properties in a labeling job.
- progress
Metrics ProgressMetrics Response - Progress metrics of the job.
- project
Id String - Internal id of the job(Previously called project).
- status String
- Status of the job.
- status
Messages List<StatusMessage Response> - Status messages of the job.
- ml
Assist MLAssistConfiguration Configuration Response - Machine learning assisted configuration for the job.
- properties Map<String,String>
- The job property dictionary. Properties can be added, but not removed or altered.
- Map<String,String>
- The job tag dictionary. Tags can be added, removed, and updated.
- created
Time stringUtc - Created time of the job in UTC timezone.
- dataset
Configuration LabelingDataset Configuration Response - Dataset configuration for the job.
- job
Instructions LabelingJob Instructions Response - Instructions for the job.
- label
Categories {[key: string]: LabelCategory Response} - Label categories of the job.
- labeling
Job LabelingMedia Properties Job Image Properties Response - Media specific properties in a labeling job.
- progress
Metrics ProgressMetrics Response - Progress metrics of the job.
- project
Id string - Internal id of the job(Previously called project).
- status string
- Status of the job.
- status
Messages StatusMessage Response[] - Status messages of the job.
- ml
Assist MLAssistConfiguration Configuration Response - Machine learning assisted configuration for the job.
- properties {[key: string]: string}
- The job property dictionary. Properties can be added, but not removed or altered.
- {[key: string]: string}
- The job tag dictionary. Tags can be added, removed, and updated.
- created_
time_ strutc - Created time of the job in UTC timezone.
- dataset_
configuration LabelingDataset Configuration Response - Dataset configuration for the job.
- job_
instructions LabelingJob Instructions Response - Instructions for the job.
- label_
categories Mapping[str, LabelCategory Response] - Label categories of the job.
- labeling_
job_ Labelingmedia_ properties Job Image Properties Response - Media specific properties in a labeling job.
- progress_
metrics ProgressMetrics Response - Progress metrics of the job.
- project_
id str - Internal id of the job(Previously called project).
- status str
- Status of the job.
- status_
messages Sequence[StatusMessage Response] - Status messages of the job.
- ml_
assist_ MLAssistconfiguration Configuration Response - Machine learning assisted configuration for the job.
- properties Mapping[str, str]
- The job property dictionary. Properties can be added, but not removed or altered.
- Mapping[str, str]
- The job tag dictionary. Tags can be added, removed, and updated.
- created
Time StringUtc - Created time of the job in UTC timezone.
- dataset
Configuration Property Map - Dataset configuration for the job.
- job
Instructions Property Map - Instructions for the job.
- label
Categories Map<Property Map> - Label categories of the job.
- labeling
Job Property MapMedia Properties - Media specific properties in a labeling job.
- progress
Metrics Property Map - Progress metrics of the job.
- project
Id String - Internal id of the job(Previously called project).
- status String
- Status of the job.
- status
Messages List<Property Map> - Status messages of the job.
- ml
Assist Property MapConfiguration - Machine learning assisted configuration for the job.
- properties Map<String>
- The job property dictionary. Properties can be added, but not removed or altered.
- Map<String>
- The job tag dictionary. Tags can be added, removed, and updated.
MLAssistConfiguration, MLAssistConfigurationArgs
- Inferencing
Compute Pulumi.Binding Azure Native. Machine Learning Services. Inputs. Compute Binding - The compute designated for inferencing.
- Model
Name stringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- Training
Compute Pulumi.Binding Azure Native. Machine Learning Services. Inputs. Compute Binding - The compute designated for training.
- Ml
Assist boolEnabled - Indicates whether MLAssist feature is enabled.
- Prelabel
Accuracy doubleThreshold - Prelabel accuracy threshold used in MLAssist feature.
- Inferencing
Compute ComputeBinding Binding - The compute designated for inferencing.
- Model
Name stringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- Training
Compute ComputeBinding Binding - The compute designated for training.
- Ml
Assist boolEnabled - Indicates whether MLAssist feature is enabled.
- Prelabel
Accuracy float64Threshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing
Compute ComputeBinding Binding - The compute designated for inferencing.
- model
Name StringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training
Compute ComputeBinding Binding - The compute designated for training.
- ml
Assist BooleanEnabled - Indicates whether MLAssist feature is enabled.
- prelabel
Accuracy DoubleThreshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing
Compute ComputeBinding Binding - The compute designated for inferencing.
- model
Name stringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training
Compute ComputeBinding Binding - The compute designated for training.
- ml
Assist booleanEnabled - Indicates whether MLAssist feature is enabled.
- prelabel
Accuracy numberThreshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing_
compute_ Computebinding Binding - The compute designated for inferencing.
- model_
name_ strprefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training_
compute_ Computebinding Binding - The compute designated for training.
- ml_
assist_ boolenabled - Indicates whether MLAssist feature is enabled.
- prelabel_
accuracy_ floatthreshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing
Compute Property MapBinding - The compute designated for inferencing.
- model
Name StringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training
Compute Property MapBinding - The compute designated for training.
- ml
Assist BooleanEnabled - Indicates whether MLAssist feature is enabled.
- prelabel
Accuracy NumberThreshold - Prelabel accuracy threshold used in MLAssist feature.
MLAssistConfigurationResponse, MLAssistConfigurationResponseArgs
- Inferencing
Compute Pulumi.Binding Azure Native. Machine Learning Services. Inputs. Compute Binding Response - The compute designated for inferencing.
- Model
Name stringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- Training
Compute Pulumi.Binding Azure Native. Machine Learning Services. Inputs. Compute Binding Response - The compute designated for training.
- Ml
Assist boolEnabled - Indicates whether MLAssist feature is enabled.
- Prelabel
Accuracy doubleThreshold - Prelabel accuracy threshold used in MLAssist feature.
- Inferencing
Compute ComputeBinding Binding Response - The compute designated for inferencing.
- Model
Name stringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- Training
Compute ComputeBinding Binding Response - The compute designated for training.
- Ml
Assist boolEnabled - Indicates whether MLAssist feature is enabled.
- Prelabel
Accuracy float64Threshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing
Compute ComputeBinding Binding Response - The compute designated for inferencing.
- model
Name StringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training
Compute ComputeBinding Binding Response - The compute designated for training.
- ml
Assist BooleanEnabled - Indicates whether MLAssist feature is enabled.
- prelabel
Accuracy DoubleThreshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing
Compute ComputeBinding Binding Response - The compute designated for inferencing.
- model
Name stringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training
Compute ComputeBinding Binding Response - The compute designated for training.
- ml
Assist booleanEnabled - Indicates whether MLAssist feature is enabled.
- prelabel
Accuracy numberThreshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing_
compute_ Computebinding Binding Response - The compute designated for inferencing.
- model_
name_ strprefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training_
compute_ Computebinding Binding Response - The compute designated for training.
- ml_
assist_ boolenabled - Indicates whether MLAssist feature is enabled.
- prelabel_
accuracy_ floatthreshold - Prelabel accuracy threshold used in MLAssist feature.
- inferencing
Compute Property MapBinding - The compute designated for inferencing.
- model
Name StringPrefix - Name prefix to use for machine learning model. For each iteration modelName will be appended with iteration e.g.{modelName}_{i}.
- training
Compute Property MapBinding - The compute designated for training.
- ml
Assist BooleanEnabled - Indicates whether MLAssist feature is enabled.
- prelabel
Accuracy NumberThreshold - Prelabel accuracy threshold used in MLAssist feature.
MediaType, MediaTypeArgs
- Image
- Image
- Text
- Text
- Media
Type Image - Image
- Media
Type Text - Text
- Image
- Image
- Text
- Text
- Image
- Image
- Text
- Text
- IMAGE
- Image
- TEXT
- Text
- "Image"
- Image
- "Text"
- Text
ProgressMetricsResponse, ProgressMetricsResponseArgs
- Completed
Datapoint doubleCount - The completed datapoint count.
- Incremental
Dataset stringLast Refresh Time - The time of last successful incremental dataset refresh in UTC.
- Skipped
Datapoint doubleCount - The skipped datapoint count.
- Total
Datapoint doubleCount - The total datapoint count.
- Completed
Datapoint float64Count - The completed datapoint count.
- Incremental
Dataset stringLast Refresh Time - The time of last successful incremental dataset refresh in UTC.
- Skipped
Datapoint float64Count - The skipped datapoint count.
- Total
Datapoint float64Count - The total datapoint count.
- completed
Datapoint DoubleCount - The completed datapoint count.
- incremental
Dataset StringLast Refresh Time - The time of last successful incremental dataset refresh in UTC.
- skipped
Datapoint DoubleCount - The skipped datapoint count.
- total
Datapoint DoubleCount - The total datapoint count.
- completed
Datapoint numberCount - The completed datapoint count.
- incremental
Dataset stringLast Refresh Time - The time of last successful incremental dataset refresh in UTC.
- skipped
Datapoint numberCount - The skipped datapoint count.
- total
Datapoint numberCount - The total datapoint count.
- completed_
datapoint_ floatcount - The completed datapoint count.
- incremental_
dataset_ strlast_ refresh_ time - The time of last successful incremental dataset refresh in UTC.
- skipped_
datapoint_ floatcount - The skipped datapoint count.
- total_
datapoint_ floatcount - The total datapoint count.
- completed
Datapoint NumberCount - The completed datapoint count.
- incremental
Dataset StringLast Refresh Time - The time of last successful incremental dataset refresh in UTC.
- skipped
Datapoint NumberCount - The skipped datapoint count.
- total
Datapoint NumberCount - The total datapoint count.
StatusMessageResponse, StatusMessageResponseArgs
- Code string
- Service-defined message code.
- Created
Time stringUtc - Time in UTC at which the message was created.
- Level string
- Severity level of the status message.
- Message string
- A human-readable representation of the message code.
- Code string
- Service-defined message code.
- Created
Time stringUtc - Time in UTC at which the message was created.
- Level string
- Severity level of the status message.
- Message string
- A human-readable representation of the message code.
- code String
- Service-defined message code.
- created
Time StringUtc - Time in UTC at which the message was created.
- level String
- Severity level of the status message.
- message String
- A human-readable representation of the message code.
- code string
- Service-defined message code.
- created
Time stringUtc - Time in UTC at which the message was created.
- level string
- Severity level of the status message.
- message string
- A human-readable representation of the message code.
- code str
- Service-defined message code.
- created_
time_ strutc - Time in UTC at which the message was created.
- level str
- Severity level of the status message.
- message str
- A human-readable representation of the message code.
- code String
- Service-defined message code.
- created
Time StringUtc - Time in UTC at which the message was created.
- level String
- Severity level of the status message.
- message String
- A human-readable representation of the message code.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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:machinelearningservices:LabelingJob testLabelingJob /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/labelingJobs/testLabelingJob
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0