1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataLabellingService
  5. Dataset
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataLabellingService.Dataset

Explore with Pulumi AI

This resource provides the Dataset resource in Oracle Cloud Infrastructure Data Labeling Service service.

Creates a new Dataset.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDataset = new oci.datalabellingservice.Dataset("test_dataset", {
    annotationFormat: datasetAnnotationFormat,
    compartmentId: compartmentId,
    datasetFormatDetails: {
        formatType: datasetDatasetFormatDetailsFormatType,
        textFileTypeMetadata: {
            columnIndex: datasetDatasetFormatDetailsTextFileTypeMetadataColumnIndex,
            formatType: datasetDatasetFormatDetailsTextFileTypeMetadataFormatType,
            columnDelimiter: datasetDatasetFormatDetailsTextFileTypeMetadataColumnDelimiter,
            columnName: datasetDatasetFormatDetailsTextFileTypeMetadataColumnName,
            escapeCharacter: datasetDatasetFormatDetailsTextFileTypeMetadataEscapeCharacter,
            lineDelimiter: datasetDatasetFormatDetailsTextFileTypeMetadataLineDelimiter,
        },
    },
    datasetSourceDetails: {
        bucket: datasetDatasetSourceDetailsBucket,
        namespace: datasetDatasetSourceDetailsNamespace,
        sourceType: datasetDatasetSourceDetailsSourceType,
        prefix: datasetDatasetSourceDetailsPrefix,
    },
    labelSet: {
        items: [{
            name: datasetLabelSetItemsName,
        }],
    },
    definedTags: datasetDefinedTags,
    description: datasetDescription,
    displayName: datasetDisplayName,
    freeformTags: datasetFreeformTags,
    initialImportDatasetConfiguration: {
        importFormat: {
            name: datasetInitialImportDatasetConfigurationImportFormatName,
            version: datasetInitialImportDatasetConfigurationImportFormatVersion,
        },
        importMetadataPath: {
            bucket: datasetInitialImportDatasetConfigurationImportMetadataPathBucket,
            namespace: datasetInitialImportDatasetConfigurationImportMetadataPathNamespace,
            path: datasetInitialImportDatasetConfigurationImportMetadataPathPath,
            sourceType: datasetInitialImportDatasetConfigurationImportMetadataPathSourceType,
        },
    },
    initialRecordGenerationConfiguration: {},
    labelingInstructions: datasetLabelingInstructions,
});
Copy
import pulumi
import pulumi_oci as oci

test_dataset = oci.data_labelling_service.Dataset("test_dataset",
    annotation_format=dataset_annotation_format,
    compartment_id=compartment_id,
    dataset_format_details={
        "format_type": dataset_dataset_format_details_format_type,
        "text_file_type_metadata": {
            "column_index": dataset_dataset_format_details_text_file_type_metadata_column_index,
            "format_type": dataset_dataset_format_details_text_file_type_metadata_format_type,
            "column_delimiter": dataset_dataset_format_details_text_file_type_metadata_column_delimiter,
            "column_name": dataset_dataset_format_details_text_file_type_metadata_column_name,
            "escape_character": dataset_dataset_format_details_text_file_type_metadata_escape_character,
            "line_delimiter": dataset_dataset_format_details_text_file_type_metadata_line_delimiter,
        },
    },
    dataset_source_details={
        "bucket": dataset_dataset_source_details_bucket,
        "namespace": dataset_dataset_source_details_namespace,
        "source_type": dataset_dataset_source_details_source_type,
        "prefix": dataset_dataset_source_details_prefix,
    },
    label_set={
        "items": [{
            "name": dataset_label_set_items_name,
        }],
    },
    defined_tags=dataset_defined_tags,
    description=dataset_description,
    display_name=dataset_display_name,
    freeform_tags=dataset_freeform_tags,
    initial_import_dataset_configuration={
        "import_format": {
            "name": dataset_initial_import_dataset_configuration_import_format_name,
            "version": dataset_initial_import_dataset_configuration_import_format_version,
        },
        "import_metadata_path": {
            "bucket": dataset_initial_import_dataset_configuration_import_metadata_path_bucket,
            "namespace": dataset_initial_import_dataset_configuration_import_metadata_path_namespace,
            "path": dataset_initial_import_dataset_configuration_import_metadata_path_path,
            "source_type": dataset_initial_import_dataset_configuration_import_metadata_path_source_type,
        },
    },
    initial_record_generation_configuration={},
    labeling_instructions=dataset_labeling_instructions)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datalabellingservice"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datalabellingservice.NewDataset(ctx, "test_dataset", &datalabellingservice.DatasetArgs{
			AnnotationFormat: pulumi.Any(datasetAnnotationFormat),
			CompartmentId:    pulumi.Any(compartmentId),
			DatasetFormatDetails: &datalabellingservice.DatasetDatasetFormatDetailsArgs{
				FormatType: pulumi.Any(datasetDatasetFormatDetailsFormatType),
				TextFileTypeMetadata: &datalabellingservice.DatasetDatasetFormatDetailsTextFileTypeMetadataArgs{
					ColumnIndex:     pulumi.Any(datasetDatasetFormatDetailsTextFileTypeMetadataColumnIndex),
					FormatType:      pulumi.Any(datasetDatasetFormatDetailsTextFileTypeMetadataFormatType),
					ColumnDelimiter: pulumi.Any(datasetDatasetFormatDetailsTextFileTypeMetadataColumnDelimiter),
					ColumnName:      pulumi.Any(datasetDatasetFormatDetailsTextFileTypeMetadataColumnName),
					EscapeCharacter: pulumi.Any(datasetDatasetFormatDetailsTextFileTypeMetadataEscapeCharacter),
					LineDelimiter:   pulumi.Any(datasetDatasetFormatDetailsTextFileTypeMetadataLineDelimiter),
				},
			},
			DatasetSourceDetails: &datalabellingservice.DatasetDatasetSourceDetailsArgs{
				Bucket:     pulumi.Any(datasetDatasetSourceDetailsBucket),
				Namespace:  pulumi.Any(datasetDatasetSourceDetailsNamespace),
				SourceType: pulumi.Any(datasetDatasetSourceDetailsSourceType),
				Prefix:     pulumi.Any(datasetDatasetSourceDetailsPrefix),
			},
			LabelSet: &datalabellingservice.DatasetLabelSetArgs{
				Items: datalabellingservice.DatasetLabelSetItemArray{
					&datalabellingservice.DatasetLabelSetItemArgs{
						Name: pulumi.Any(datasetLabelSetItemsName),
					},
				},
			},
			DefinedTags:  pulumi.Any(datasetDefinedTags),
			Description:  pulumi.Any(datasetDescription),
			DisplayName:  pulumi.Any(datasetDisplayName),
			FreeformTags: pulumi.Any(datasetFreeformTags),
			InitialImportDatasetConfiguration: &datalabellingservice.DatasetInitialImportDatasetConfigurationArgs{
				ImportFormat: &datalabellingservice.DatasetInitialImportDatasetConfigurationImportFormatArgs{
					Name:    pulumi.Any(datasetInitialImportDatasetConfigurationImportFormatName),
					Version: pulumi.Any(datasetInitialImportDatasetConfigurationImportFormatVersion),
				},
				ImportMetadataPath: &datalabellingservice.DatasetInitialImportDatasetConfigurationImportMetadataPathArgs{
					Bucket:     pulumi.Any(datasetInitialImportDatasetConfigurationImportMetadataPathBucket),
					Namespace:  pulumi.Any(datasetInitialImportDatasetConfigurationImportMetadataPathNamespace),
					Path:       pulumi.Any(datasetInitialImportDatasetConfigurationImportMetadataPathPath),
					SourceType: pulumi.Any(datasetInitialImportDatasetConfigurationImportMetadataPathSourceType),
				},
			},
			InitialRecordGenerationConfiguration: &datalabellingservice.DatasetInitialRecordGenerationConfigurationArgs{},
			LabelingInstructions:                 pulumi.Any(datasetLabelingInstructions),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDataset = new Oci.DataLabellingService.Dataset("test_dataset", new()
    {
        AnnotationFormat = datasetAnnotationFormat,
        CompartmentId = compartmentId,
        DatasetFormatDetails = new Oci.DataLabellingService.Inputs.DatasetDatasetFormatDetailsArgs
        {
            FormatType = datasetDatasetFormatDetailsFormatType,
            TextFileTypeMetadata = new Oci.DataLabellingService.Inputs.DatasetDatasetFormatDetailsTextFileTypeMetadataArgs
            {
                ColumnIndex = datasetDatasetFormatDetailsTextFileTypeMetadataColumnIndex,
                FormatType = datasetDatasetFormatDetailsTextFileTypeMetadataFormatType,
                ColumnDelimiter = datasetDatasetFormatDetailsTextFileTypeMetadataColumnDelimiter,
                ColumnName = datasetDatasetFormatDetailsTextFileTypeMetadataColumnName,
                EscapeCharacter = datasetDatasetFormatDetailsTextFileTypeMetadataEscapeCharacter,
                LineDelimiter = datasetDatasetFormatDetailsTextFileTypeMetadataLineDelimiter,
            },
        },
        DatasetSourceDetails = new Oci.DataLabellingService.Inputs.DatasetDatasetSourceDetailsArgs
        {
            Bucket = datasetDatasetSourceDetailsBucket,
            Namespace = datasetDatasetSourceDetailsNamespace,
            SourceType = datasetDatasetSourceDetailsSourceType,
            Prefix = datasetDatasetSourceDetailsPrefix,
        },
        LabelSet = new Oci.DataLabellingService.Inputs.DatasetLabelSetArgs
        {
            Items = new[]
            {
                new Oci.DataLabellingService.Inputs.DatasetLabelSetItemArgs
                {
                    Name = datasetLabelSetItemsName,
                },
            },
        },
        DefinedTags = datasetDefinedTags,
        Description = datasetDescription,
        DisplayName = datasetDisplayName,
        FreeformTags = datasetFreeformTags,
        InitialImportDatasetConfiguration = new Oci.DataLabellingService.Inputs.DatasetInitialImportDatasetConfigurationArgs
        {
            ImportFormat = new Oci.DataLabellingService.Inputs.DatasetInitialImportDatasetConfigurationImportFormatArgs
            {
                Name = datasetInitialImportDatasetConfigurationImportFormatName,
                Version = datasetInitialImportDatasetConfigurationImportFormatVersion,
            },
            ImportMetadataPath = new Oci.DataLabellingService.Inputs.DatasetInitialImportDatasetConfigurationImportMetadataPathArgs
            {
                Bucket = datasetInitialImportDatasetConfigurationImportMetadataPathBucket,
                Namespace = datasetInitialImportDatasetConfigurationImportMetadataPathNamespace,
                Path = datasetInitialImportDatasetConfigurationImportMetadataPathPath,
                SourceType = datasetInitialImportDatasetConfigurationImportMetadataPathSourceType,
            },
        },
        InitialRecordGenerationConfiguration = null,
        LabelingInstructions = datasetLabelingInstructions,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataLabellingService.Dataset;
import com.pulumi.oci.DataLabellingService.DatasetArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetDatasetFormatDetailsArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetDatasetFormatDetailsTextFileTypeMetadataArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetDatasetSourceDetailsArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetLabelSetArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetInitialImportDatasetConfigurationArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetInitialImportDatasetConfigurationImportFormatArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetInitialImportDatasetConfigurationImportMetadataPathArgs;
import com.pulumi.oci.DataLabellingService.inputs.DatasetInitialRecordGenerationConfigurationArgs;
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 testDataset = new Dataset("testDataset", DatasetArgs.builder()
            .annotationFormat(datasetAnnotationFormat)
            .compartmentId(compartmentId)
            .datasetFormatDetails(DatasetDatasetFormatDetailsArgs.builder()
                .formatType(datasetDatasetFormatDetailsFormatType)
                .textFileTypeMetadata(DatasetDatasetFormatDetailsTextFileTypeMetadataArgs.builder()
                    .columnIndex(datasetDatasetFormatDetailsTextFileTypeMetadataColumnIndex)
                    .formatType(datasetDatasetFormatDetailsTextFileTypeMetadataFormatType)
                    .columnDelimiter(datasetDatasetFormatDetailsTextFileTypeMetadataColumnDelimiter)
                    .columnName(datasetDatasetFormatDetailsTextFileTypeMetadataColumnName)
                    .escapeCharacter(datasetDatasetFormatDetailsTextFileTypeMetadataEscapeCharacter)
                    .lineDelimiter(datasetDatasetFormatDetailsTextFileTypeMetadataLineDelimiter)
                    .build())
                .build())
            .datasetSourceDetails(DatasetDatasetSourceDetailsArgs.builder()
                .bucket(datasetDatasetSourceDetailsBucket)
                .namespace(datasetDatasetSourceDetailsNamespace)
                .sourceType(datasetDatasetSourceDetailsSourceType)
                .prefix(datasetDatasetSourceDetailsPrefix)
                .build())
            .labelSet(DatasetLabelSetArgs.builder()
                .items(DatasetLabelSetItemArgs.builder()
                    .name(datasetLabelSetItemsName)
                    .build())
                .build())
            .definedTags(datasetDefinedTags)
            .description(datasetDescription)
            .displayName(datasetDisplayName)
            .freeformTags(datasetFreeformTags)
            .initialImportDatasetConfiguration(DatasetInitialImportDatasetConfigurationArgs.builder()
                .importFormat(DatasetInitialImportDatasetConfigurationImportFormatArgs.builder()
                    .name(datasetInitialImportDatasetConfigurationImportFormatName)
                    .version(datasetInitialImportDatasetConfigurationImportFormatVersion)
                    .build())
                .importMetadataPath(DatasetInitialImportDatasetConfigurationImportMetadataPathArgs.builder()
                    .bucket(datasetInitialImportDatasetConfigurationImportMetadataPathBucket)
                    .namespace(datasetInitialImportDatasetConfigurationImportMetadataPathNamespace)
                    .path(datasetInitialImportDatasetConfigurationImportMetadataPathPath)
                    .sourceType(datasetInitialImportDatasetConfigurationImportMetadataPathSourceType)
                    .build())
                .build())
            .initialRecordGenerationConfiguration(DatasetInitialRecordGenerationConfigurationArgs.builder()
                .build())
            .labelingInstructions(datasetLabelingInstructions)
            .build());

    }
}
Copy
resources:
  testDataset:
    type: oci:DataLabellingService:Dataset
    name: test_dataset
    properties:
      annotationFormat: ${datasetAnnotationFormat}
      compartmentId: ${compartmentId}
      datasetFormatDetails:
        formatType: ${datasetDatasetFormatDetailsFormatType}
        textFileTypeMetadata:
          columnIndex: ${datasetDatasetFormatDetailsTextFileTypeMetadataColumnIndex}
          formatType: ${datasetDatasetFormatDetailsTextFileTypeMetadataFormatType}
          columnDelimiter: ${datasetDatasetFormatDetailsTextFileTypeMetadataColumnDelimiter}
          columnName: ${datasetDatasetFormatDetailsTextFileTypeMetadataColumnName}
          escapeCharacter: ${datasetDatasetFormatDetailsTextFileTypeMetadataEscapeCharacter}
          lineDelimiter: ${datasetDatasetFormatDetailsTextFileTypeMetadataLineDelimiter}
      datasetSourceDetails:
        bucket: ${datasetDatasetSourceDetailsBucket}
        namespace: ${datasetDatasetSourceDetailsNamespace}
        sourceType: ${datasetDatasetSourceDetailsSourceType}
        prefix: ${datasetDatasetSourceDetailsPrefix}
      labelSet:
        items:
          - name: ${datasetLabelSetItemsName}
      definedTags: ${datasetDefinedTags}
      description: ${datasetDescription}
      displayName: ${datasetDisplayName}
      freeformTags: ${datasetFreeformTags}
      initialImportDatasetConfiguration:
        importFormat:
          name: ${datasetInitialImportDatasetConfigurationImportFormatName}
          version: ${datasetInitialImportDatasetConfigurationImportFormatVersion}
        importMetadataPath:
          bucket: ${datasetInitialImportDatasetConfigurationImportMetadataPathBucket}
          namespace: ${datasetInitialImportDatasetConfigurationImportMetadataPathNamespace}
          path: ${datasetInitialImportDatasetConfigurationImportMetadataPathPath}
          sourceType: ${datasetInitialImportDatasetConfigurationImportMetadataPathSourceType}
      initialRecordGenerationConfiguration: {}
      labelingInstructions: ${datasetLabelingInstructions}
Copy

Create Dataset Resource

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

Constructor syntax

new Dataset(name: string, args: DatasetArgs, opts?: CustomResourceOptions);
@overload
def Dataset(resource_name: str,
            args: DatasetArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Dataset(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            annotation_format: Optional[str] = None,
            compartment_id: Optional[str] = None,
            dataset_format_details: Optional[_datalabellingservice.DatasetDatasetFormatDetailsArgs] = None,
            dataset_source_details: Optional[_datalabellingservice.DatasetDatasetSourceDetailsArgs] = None,
            label_set: Optional[_datalabellingservice.DatasetLabelSetArgs] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            initial_import_dataset_configuration: Optional[_datalabellingservice.DatasetInitialImportDatasetConfigurationArgs] = None,
            initial_record_generation_configuration: Optional[_datalabellingservice.DatasetInitialRecordGenerationConfigurationArgs] = None,
            labeling_instructions: Optional[str] = None)
func NewDataset(ctx *Context, name string, args DatasetArgs, opts ...ResourceOption) (*Dataset, error)
public Dataset(string name, DatasetArgs args, CustomResourceOptions? opts = null)
public Dataset(String name, DatasetArgs args)
public Dataset(String name, DatasetArgs args, CustomResourceOptions options)
type: oci:DataLabellingService:Dataset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DatasetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DatasetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DatasetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DatasetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DatasetArgs
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 datasetResource = new Oci.DataLabellingService.Dataset("datasetResource", new()
{
    AnnotationFormat = "string",
    CompartmentId = "string",
    DatasetFormatDetails = new Oci.DataLabellingService.Inputs.DatasetDatasetFormatDetailsArgs
    {
        FormatType = "string",
        TextFileTypeMetadata = new Oci.DataLabellingService.Inputs.DatasetDatasetFormatDetailsTextFileTypeMetadataArgs
        {
            ColumnIndex = 0,
            FormatType = "string",
            ColumnDelimiter = "string",
            ColumnName = "string",
            EscapeCharacter = "string",
            LineDelimiter = "string",
        },
    },
    DatasetSourceDetails = new Oci.DataLabellingService.Inputs.DatasetDatasetSourceDetailsArgs
    {
        Bucket = "string",
        Namespace = "string",
        SourceType = "string",
        Prefix = "string",
    },
    LabelSet = new Oci.DataLabellingService.Inputs.DatasetLabelSetArgs
    {
        Items = new[]
        {
            new Oci.DataLabellingService.Inputs.DatasetLabelSetItemArgs
            {
                Name = "string",
            },
        },
    },
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    InitialImportDatasetConfiguration = new Oci.DataLabellingService.Inputs.DatasetInitialImportDatasetConfigurationArgs
    {
        ImportFormat = new Oci.DataLabellingService.Inputs.DatasetInitialImportDatasetConfigurationImportFormatArgs
        {
            Name = "string",
            Version = "string",
        },
        ImportMetadataPath = new Oci.DataLabellingService.Inputs.DatasetInitialImportDatasetConfigurationImportMetadataPathArgs
        {
            Bucket = "string",
            Namespace = "string",
            Path = "string",
            SourceType = "string",
        },
    },
    InitialRecordGenerationConfiguration = null,
    LabelingInstructions = "string",
});
Copy
example, err := datalabellingservice.NewDataset(ctx, "datasetResource", &datalabellingservice.DatasetArgs{
	AnnotationFormat: pulumi.String("string"),
	CompartmentId:    pulumi.String("string"),
	DatasetFormatDetails: &datalabellingservice.DatasetDatasetFormatDetailsArgs{
		FormatType: pulumi.String("string"),
		TextFileTypeMetadata: &datalabellingservice.DatasetDatasetFormatDetailsTextFileTypeMetadataArgs{
			ColumnIndex:     pulumi.Int(0),
			FormatType:      pulumi.String("string"),
			ColumnDelimiter: pulumi.String("string"),
			ColumnName:      pulumi.String("string"),
			EscapeCharacter: pulumi.String("string"),
			LineDelimiter:   pulumi.String("string"),
		},
	},
	DatasetSourceDetails: &datalabellingservice.DatasetDatasetSourceDetailsArgs{
		Bucket:     pulumi.String("string"),
		Namespace:  pulumi.String("string"),
		SourceType: pulumi.String("string"),
		Prefix:     pulumi.String("string"),
	},
	LabelSet: &datalabellingservice.DatasetLabelSetArgs{
		Items: datalabellingservice.DatasetLabelSetItemArray{
			&datalabellingservice.DatasetLabelSetItemArgs{
				Name: pulumi.String("string"),
			},
		},
	},
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	InitialImportDatasetConfiguration: &datalabellingservice.DatasetInitialImportDatasetConfigurationArgs{
		ImportFormat: &datalabellingservice.DatasetInitialImportDatasetConfigurationImportFormatArgs{
			Name:    pulumi.String("string"),
			Version: pulumi.String("string"),
		},
		ImportMetadataPath: &datalabellingservice.DatasetInitialImportDatasetConfigurationImportMetadataPathArgs{
			Bucket:     pulumi.String("string"),
			Namespace:  pulumi.String("string"),
			Path:       pulumi.String("string"),
			SourceType: pulumi.String("string"),
		},
	},
	InitialRecordGenerationConfiguration: &datalabellingservice.DatasetInitialRecordGenerationConfigurationArgs{},
	LabelingInstructions:                 pulumi.String("string"),
})
Copy
var datasetResource = new Dataset("datasetResource", DatasetArgs.builder()
    .annotationFormat("string")
    .compartmentId("string")
    .datasetFormatDetails(DatasetDatasetFormatDetailsArgs.builder()
        .formatType("string")
        .textFileTypeMetadata(DatasetDatasetFormatDetailsTextFileTypeMetadataArgs.builder()
            .columnIndex(0)
            .formatType("string")
            .columnDelimiter("string")
            .columnName("string")
            .escapeCharacter("string")
            .lineDelimiter("string")
            .build())
        .build())
    .datasetSourceDetails(DatasetDatasetSourceDetailsArgs.builder()
        .bucket("string")
        .namespace("string")
        .sourceType("string")
        .prefix("string")
        .build())
    .labelSet(DatasetLabelSetArgs.builder()
        .items(DatasetLabelSetItemArgs.builder()
            .name("string")
            .build())
        .build())
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .initialImportDatasetConfiguration(DatasetInitialImportDatasetConfigurationArgs.builder()
        .importFormat(DatasetInitialImportDatasetConfigurationImportFormatArgs.builder()
            .name("string")
            .version("string")
            .build())
        .importMetadataPath(DatasetInitialImportDatasetConfigurationImportMetadataPathArgs.builder()
            .bucket("string")
            .namespace("string")
            .path("string")
            .sourceType("string")
            .build())
        .build())
    .initialRecordGenerationConfiguration()
    .labelingInstructions("string")
    .build());
Copy
dataset_resource = oci.data_labelling_service.Dataset("datasetResource",
    annotation_format="string",
    compartment_id="string",
    dataset_format_details={
        "format_type": "string",
        "text_file_type_metadata": {
            "column_index": 0,
            "format_type": "string",
            "column_delimiter": "string",
            "column_name": "string",
            "escape_character": "string",
            "line_delimiter": "string",
        },
    },
    dataset_source_details={
        "bucket": "string",
        "namespace": "string",
        "source_type": "string",
        "prefix": "string",
    },
    label_set={
        "items": [{
            "name": "string",
        }],
    },
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    initial_import_dataset_configuration={
        "import_format": {
            "name": "string",
            "version": "string",
        },
        "import_metadata_path": {
            "bucket": "string",
            "namespace": "string",
            "path": "string",
            "source_type": "string",
        },
    },
    initial_record_generation_configuration={},
    labeling_instructions="string")
Copy
const datasetResource = new oci.datalabellingservice.Dataset("datasetResource", {
    annotationFormat: "string",
    compartmentId: "string",
    datasetFormatDetails: {
        formatType: "string",
        textFileTypeMetadata: {
            columnIndex: 0,
            formatType: "string",
            columnDelimiter: "string",
            columnName: "string",
            escapeCharacter: "string",
            lineDelimiter: "string",
        },
    },
    datasetSourceDetails: {
        bucket: "string",
        namespace: "string",
        sourceType: "string",
        prefix: "string",
    },
    labelSet: {
        items: [{
            name: "string",
        }],
    },
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    initialImportDatasetConfiguration: {
        importFormat: {
            name: "string",
            version: "string",
        },
        importMetadataPath: {
            bucket: "string",
            namespace: "string",
            path: "string",
            sourceType: "string",
        },
    },
    initialRecordGenerationConfiguration: {},
    labelingInstructions: "string",
});
Copy
type: oci:DataLabellingService:Dataset
properties:
    annotationFormat: string
    compartmentId: string
    datasetFormatDetails:
        formatType: string
        textFileTypeMetadata:
            columnDelimiter: string
            columnIndex: 0
            columnName: string
            escapeCharacter: string
            formatType: string
            lineDelimiter: string
    datasetSourceDetails:
        bucket: string
        namespace: string
        prefix: string
        sourceType: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    initialImportDatasetConfiguration:
        importFormat:
            name: string
            version: string
        importMetadataPath:
            bucket: string
            namespace: string
            path: string
            sourceType: string
    initialRecordGenerationConfiguration: {}
    labelSet:
        items:
            - name: string
    labelingInstructions: string
Copy

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

AnnotationFormat
This property is required.
Changes to this property will trigger replacement.
string
The annotation format name required for labeling records.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment of the resource.
DatasetFormatDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetFormatDetails
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
DatasetSourceDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetSourceDetails
This allows the customer to specify the source of the dataset.
LabelSet This property is required. DatasetLabelSet
An ordered collection of labels that are unique by name.
DefinedTags Dictionary<string, string>
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
Description string
(Updatable) A user provided description of the dataset
DisplayName string
(Updatable) A user-friendly display name for the resource.
FreeformTags Dictionary<string, string>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
InitialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfiguration
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
InitialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfiguration
The initial generate records configuration. It generates records from the dataset's source.
LabelingInstructions string

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AnnotationFormat
This property is required.
Changes to this property will trigger replacement.
string
The annotation format name required for labeling records.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment of the resource.
DatasetFormatDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetFormatDetailsArgs
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
DatasetSourceDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetSourceDetailsArgs
This allows the customer to specify the source of the dataset.
LabelSet This property is required. DatasetLabelSetArgs
An ordered collection of labels that are unique by name.
DefinedTags map[string]string
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
Description string
(Updatable) A user provided description of the dataset
DisplayName string
(Updatable) A user-friendly display name for the resource.
FreeformTags map[string]string
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
InitialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfigurationArgs
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
InitialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfigurationArgs
The initial generate records configuration. It generates records from the dataset's source.
LabelingInstructions string

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

annotationFormat
This property is required.
Changes to this property will trigger replacement.
String
The annotation format name required for labeling records.
compartmentId This property is required. String
(Updatable) The OCID of the compartment of the resource.
datasetFormatDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetFormatDetails
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
datasetSourceDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetSourceDetails
This allows the customer to specify the source of the dataset.
labelSet This property is required. DatasetLabelSet
An ordered collection of labels that are unique by name.
definedTags Map<String,String>
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description String
(Updatable) A user provided description of the dataset
displayName String
(Updatable) A user-friendly display name for the resource.
freeformTags Map<String,String>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfiguration
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfiguration
The initial generate records configuration. It generates records from the dataset's source.
labelingInstructions String

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

annotationFormat
This property is required.
Changes to this property will trigger replacement.
string
The annotation format name required for labeling records.
compartmentId This property is required. string
(Updatable) The OCID of the compartment of the resource.
datasetFormatDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetFormatDetails
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
datasetSourceDetails
This property is required.
Changes to this property will trigger replacement.
DatasetDatasetSourceDetails
This allows the customer to specify the source of the dataset.
labelSet This property is required. DatasetLabelSet
An ordered collection of labels that are unique by name.
definedTags {[key: string]: string}
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description string
(Updatable) A user provided description of the dataset
displayName string
(Updatable) A user-friendly display name for the resource.
freeformTags {[key: string]: string}
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfiguration
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfiguration
The initial generate records configuration. It generates records from the dataset's source.
labelingInstructions string

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

annotation_format
This property is required.
Changes to this property will trigger replacement.
str
The annotation format name required for labeling records.
compartment_id This property is required. str
(Updatable) The OCID of the compartment of the resource.
dataset_format_details
This property is required.
Changes to this property will trigger replacement.
datalabellingservice.DatasetDatasetFormatDetailsArgs
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
dataset_source_details
This property is required.
Changes to this property will trigger replacement.
datalabellingservice.DatasetDatasetSourceDetailsArgs
This allows the customer to specify the source of the dataset.
label_set This property is required. datalabellingservice.DatasetLabelSetArgs
An ordered collection of labels that are unique by name.
defined_tags Mapping[str, str]
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description str
(Updatable) A user provided description of the dataset
display_name str
(Updatable) A user-friendly display name for the resource.
freeform_tags Mapping[str, str]
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initial_import_dataset_configuration Changes to this property will trigger replacement. datalabellingservice.DatasetInitialImportDatasetConfigurationArgs
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initial_record_generation_configuration Changes to this property will trigger replacement. datalabellingservice.DatasetInitialRecordGenerationConfigurationArgs
The initial generate records configuration. It generates records from the dataset's source.
labeling_instructions str

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

annotationFormat
This property is required.
Changes to this property will trigger replacement.
String
The annotation format name required for labeling records.
compartmentId This property is required. String
(Updatable) The OCID of the compartment of the resource.
datasetFormatDetails
This property is required.
Changes to this property will trigger replacement.
Property Map
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
datasetSourceDetails
This property is required.
Changes to this property will trigger replacement.
Property Map
This allows the customer to specify the source of the dataset.
labelSet This property is required. Property Map
An ordered collection of labels that are unique by name.
definedTags Map<String>
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description String
(Updatable) A user provided description of the dataset
displayName String
(Updatable) A user-friendly display name for the resource.
freeformTags Map<String>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initialImportDatasetConfiguration Changes to this property will trigger replacement. Property Map
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initialRecordGenerationConfiguration Changes to this property will trigger replacement. Property Map
The initial generate records configuration. It generates records from the dataset's source.
labelingInstructions String

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

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

AdditionalProperties Dictionary<string, string>
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
LifecycleSubstate string
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
State string
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
TimeCreated string
The date and time the resource was created, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
AdditionalProperties map[string]string
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
LifecycleSubstate string
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
State string
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
TimeCreated string
The date and time the resource was created, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additionalProperties Map<String,String>
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycleSubstate String
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state String
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
timeCreated String
The date and time the resource was created, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additionalProperties {[key: string]: string}
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycleSubstate string
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state string
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
timeCreated string
The date and time the resource was created, in the timestamp format defined by RFC3339.
timeUpdated string
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additional_properties Mapping[str, str]
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycle_substate str
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state str
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
time_created str
The date and time the resource was created, in the timestamp format defined by RFC3339.
time_updated str
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additionalProperties Map<String>
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycleSubstate String
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state String
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
timeCreated String
The date and time the resource was created, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the timestamp format defined by RFC3339.

Look up Existing Dataset Resource

Get an existing Dataset resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DatasetState, opts?: CustomResourceOptions): Dataset
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        additional_properties: Optional[Mapping[str, str]] = None,
        annotation_format: Optional[str] = None,
        compartment_id: Optional[str] = None,
        dataset_format_details: Optional[_datalabellingservice.DatasetDatasetFormatDetailsArgs] = None,
        dataset_source_details: Optional[_datalabellingservice.DatasetDatasetSourceDetailsArgs] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        initial_import_dataset_configuration: Optional[_datalabellingservice.DatasetInitialImportDatasetConfigurationArgs] = None,
        initial_record_generation_configuration: Optional[_datalabellingservice.DatasetInitialRecordGenerationConfigurationArgs] = None,
        label_set: Optional[_datalabellingservice.DatasetLabelSetArgs] = None,
        labeling_instructions: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        lifecycle_substate: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> Dataset
func GetDataset(ctx *Context, name string, id IDInput, state *DatasetState, opts ...ResourceOption) (*Dataset, error)
public static Dataset Get(string name, Input<string> id, DatasetState? state, CustomResourceOptions? opts = null)
public static Dataset get(String name, Output<String> id, DatasetState state, CustomResourceOptions options)
resources:  _:    type: oci:DataLabellingService:Dataset    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AdditionalProperties Dictionary<string, string>
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
AnnotationFormat Changes to this property will trigger replacement. string
The annotation format name required for labeling records.
CompartmentId string
(Updatable) The OCID of the compartment of the resource.
DatasetFormatDetails Changes to this property will trigger replacement. DatasetDatasetFormatDetails
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
DatasetSourceDetails Changes to this property will trigger replacement. DatasetDatasetSourceDetails
This allows the customer to specify the source of the dataset.
DefinedTags Dictionary<string, string>
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
Description string
(Updatable) A user provided description of the dataset
DisplayName string
(Updatable) A user-friendly display name for the resource.
FreeformTags Dictionary<string, string>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
InitialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfiguration
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
InitialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfiguration
The initial generate records configuration. It generates records from the dataset's source.
LabelSet DatasetLabelSet
An ordered collection of labels that are unique by name.
LabelingInstructions string

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
LifecycleSubstate string
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
State string
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
TimeCreated string
The date and time the resource was created, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
AdditionalProperties map[string]string
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
AnnotationFormat Changes to this property will trigger replacement. string
The annotation format name required for labeling records.
CompartmentId string
(Updatable) The OCID of the compartment of the resource.
DatasetFormatDetails Changes to this property will trigger replacement. DatasetDatasetFormatDetailsArgs
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
DatasetSourceDetails Changes to this property will trigger replacement. DatasetDatasetSourceDetailsArgs
This allows the customer to specify the source of the dataset.
DefinedTags map[string]string
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
Description string
(Updatable) A user provided description of the dataset
DisplayName string
(Updatable) A user-friendly display name for the resource.
FreeformTags map[string]string
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
InitialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfigurationArgs
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
InitialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfigurationArgs
The initial generate records configuration. It generates records from the dataset's source.
LabelSet DatasetLabelSetArgs
An ordered collection of labels that are unique by name.
LabelingInstructions string

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

LifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
LifecycleSubstate string
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
State string
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
TimeCreated string
The date and time the resource was created, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additionalProperties Map<String,String>
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
annotationFormat Changes to this property will trigger replacement. String
The annotation format name required for labeling records.
compartmentId String
(Updatable) The OCID of the compartment of the resource.
datasetFormatDetails Changes to this property will trigger replacement. DatasetDatasetFormatDetails
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
datasetSourceDetails Changes to this property will trigger replacement. DatasetDatasetSourceDetails
This allows the customer to specify the source of the dataset.
definedTags Map<String,String>
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description String
(Updatable) A user provided description of the dataset
displayName String
(Updatable) A user-friendly display name for the resource.
freeformTags Map<String,String>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfiguration
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfiguration
The initial generate records configuration. It generates records from the dataset's source.
labelSet DatasetLabelSet
An ordered collection of labels that are unique by name.
labelingInstructions String

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycleSubstate String
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state String
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
timeCreated String
The date and time the resource was created, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additionalProperties {[key: string]: string}
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
annotationFormat Changes to this property will trigger replacement. string
The annotation format name required for labeling records.
compartmentId string
(Updatable) The OCID of the compartment of the resource.
datasetFormatDetails Changes to this property will trigger replacement. DatasetDatasetFormatDetails
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
datasetSourceDetails Changes to this property will trigger replacement. DatasetDatasetSourceDetails
This allows the customer to specify the source of the dataset.
definedTags {[key: string]: string}
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description string
(Updatable) A user provided description of the dataset
displayName string
(Updatable) A user-friendly display name for the resource.
freeformTags {[key: string]: string}
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initialImportDatasetConfiguration Changes to this property will trigger replacement. DatasetInitialImportDatasetConfiguration
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initialRecordGenerationConfiguration Changes to this property will trigger replacement. DatasetInitialRecordGenerationConfiguration
The initial generate records configuration. It generates records from the dataset's source.
labelSet DatasetLabelSet
An ordered collection of labels that are unique by name.
labelingInstructions string

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

lifecycleDetails string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycleSubstate string
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state string
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
timeCreated string
The date and time the resource was created, in the timestamp format defined by RFC3339.
timeUpdated string
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additional_properties Mapping[str, str]
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
annotation_format Changes to this property will trigger replacement. str
The annotation format name required for labeling records.
compartment_id str
(Updatable) The OCID of the compartment of the resource.
dataset_format_details Changes to this property will trigger replacement. datalabellingservice.DatasetDatasetFormatDetailsArgs
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
dataset_source_details Changes to this property will trigger replacement. datalabellingservice.DatasetDatasetSourceDetailsArgs
This allows the customer to specify the source of the dataset.
defined_tags Mapping[str, str]
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description str
(Updatable) A user provided description of the dataset
display_name str
(Updatable) A user-friendly display name for the resource.
freeform_tags Mapping[str, str]
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initial_import_dataset_configuration Changes to this property will trigger replacement. datalabellingservice.DatasetInitialImportDatasetConfigurationArgs
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initial_record_generation_configuration Changes to this property will trigger replacement. datalabellingservice.DatasetInitialRecordGenerationConfigurationArgs
The initial generate records configuration. It generates records from the dataset's source.
label_set datalabellingservice.DatasetLabelSetArgs
An ordered collection of labels that are unique by name.
labeling_instructions str

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

lifecycle_details str
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycle_substate str
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state str
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
time_created str
The date and time the resource was created, in the timestamp format defined by RFC3339.
time_updated str
The date and time the resource was last updated, in the timestamp format defined by RFC3339.
additionalProperties Map<String>
A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
annotationFormat Changes to this property will trigger replacement. String
The annotation format name required for labeling records.
compartmentId String
(Updatable) The OCID of the compartment of the resource.
datasetFormatDetails Changes to this property will trigger replacement. Property Map
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
datasetSourceDetails Changes to this property will trigger replacement. Property Map
This allows the customer to specify the source of the dataset.
definedTags Map<String>
(Updatable) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
description String
(Updatable) A user provided description of the dataset
displayName String
(Updatable) A user-friendly display name for the resource.
freeformTags Map<String>
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: {"bar-key": "value"}
initialImportDatasetConfiguration Changes to this property will trigger replacement. Property Map
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
initialRecordGenerationConfiguration Changes to this property will trigger replacement. Property Map
The initial generate records configuration. It generates records from the dataset's source.
labelSet Property Map
An ordered collection of labels that are unique by name.
labelingInstructions String

(Updatable) The labeling instructions for human labelers in rich text format

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

lifecycleDetails String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycleSubstate String
The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
state String
The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
timeCreated String
The date and time the resource was created, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the timestamp format defined by RFC3339.

Supporting Types

DatasetDatasetFormatDetails
, DatasetDatasetFormatDetailsArgs

FormatType
This property is required.
Changes to this property will trigger replacement.
string
The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.
TextFileTypeMetadata Changes to this property will trigger replacement. DatasetDatasetFormatDetailsTextFileTypeMetadata
Metadata for files with text content.
FormatType
This property is required.
Changes to this property will trigger replacement.
string
The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.
TextFileTypeMetadata Changes to this property will trigger replacement. DatasetDatasetFormatDetailsTextFileTypeMetadata
Metadata for files with text content.
formatType
This property is required.
Changes to this property will trigger replacement.
String
The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.
textFileTypeMetadata Changes to this property will trigger replacement. DatasetDatasetFormatDetailsTextFileTypeMetadata
Metadata for files with text content.
formatType
This property is required.
Changes to this property will trigger replacement.
string
The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.
textFileTypeMetadata Changes to this property will trigger replacement. DatasetDatasetFormatDetailsTextFileTypeMetadata
Metadata for files with text content.
format_type
This property is required.
Changes to this property will trigger replacement.
str
The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.
text_file_type_metadata Changes to this property will trigger replacement. datalabellingservice.DatasetDatasetFormatDetailsTextFileTypeMetadata
Metadata for files with text content.
formatType
This property is required.
Changes to this property will trigger replacement.
String
The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.
textFileTypeMetadata Changes to this property will trigger replacement. Property Map
Metadata for files with text content.

DatasetDatasetFormatDetailsTextFileTypeMetadata
, DatasetDatasetFormatDetailsTextFileTypeMetadataArgs

ColumnIndex
This property is required.
Changes to this property will trigger replacement.
int
The index of a selected column. This is a zero-based index.
FormatType
This property is required.
Changes to this property will trigger replacement.
string
It defines the format type of text files.
ColumnDelimiter Changes to this property will trigger replacement. string
A column delimiter
ColumnName Changes to this property will trigger replacement. string
The name of a selected column.
EscapeCharacter Changes to this property will trigger replacement. string
An escape character.
LineDelimiter Changes to this property will trigger replacement. string
A line delimiter.
ColumnIndex
This property is required.
Changes to this property will trigger replacement.
int
The index of a selected column. This is a zero-based index.
FormatType
This property is required.
Changes to this property will trigger replacement.
string
It defines the format type of text files.
ColumnDelimiter Changes to this property will trigger replacement. string
A column delimiter
ColumnName Changes to this property will trigger replacement. string
The name of a selected column.
EscapeCharacter Changes to this property will trigger replacement. string
An escape character.
LineDelimiter Changes to this property will trigger replacement. string
A line delimiter.
columnIndex
This property is required.
Changes to this property will trigger replacement.
Integer
The index of a selected column. This is a zero-based index.
formatType
This property is required.
Changes to this property will trigger replacement.
String
It defines the format type of text files.
columnDelimiter Changes to this property will trigger replacement. String
A column delimiter
columnName Changes to this property will trigger replacement. String
The name of a selected column.
escapeCharacter Changes to this property will trigger replacement. String
An escape character.
lineDelimiter Changes to this property will trigger replacement. String
A line delimiter.
columnIndex
This property is required.
Changes to this property will trigger replacement.
number
The index of a selected column. This is a zero-based index.
formatType
This property is required.
Changes to this property will trigger replacement.
string
It defines the format type of text files.
columnDelimiter Changes to this property will trigger replacement. string
A column delimiter
columnName Changes to this property will trigger replacement. string
The name of a selected column.
escapeCharacter Changes to this property will trigger replacement. string
An escape character.
lineDelimiter Changes to this property will trigger replacement. string
A line delimiter.
column_index
This property is required.
Changes to this property will trigger replacement.
int
The index of a selected column. This is a zero-based index.
format_type
This property is required.
Changes to this property will trigger replacement.
str
It defines the format type of text files.
column_delimiter Changes to this property will trigger replacement. str
A column delimiter
column_name Changes to this property will trigger replacement. str
The name of a selected column.
escape_character Changes to this property will trigger replacement. str
An escape character.
line_delimiter Changes to this property will trigger replacement. str
A line delimiter.
columnIndex
This property is required.
Changes to this property will trigger replacement.
Number
The index of a selected column. This is a zero-based index.
formatType
This property is required.
Changes to this property will trigger replacement.
String
It defines the format type of text files.
columnDelimiter Changes to this property will trigger replacement. String
A column delimiter
columnName Changes to this property will trigger replacement. String
The name of a selected column.
escapeCharacter Changes to this property will trigger replacement. String
An escape character.
lineDelimiter Changes to this property will trigger replacement. String
A line delimiter.

DatasetDatasetSourceDetails
, DatasetDatasetSourceDetailsArgs

Bucket
This property is required.
Changes to this property will trigger replacement.
string
The object storage bucket that contains the dataset data source.
Namespace
This property is required.
Changes to this property will trigger replacement.
string
The namespace of the bucket that contains the dataset data source.
SourceType
This property is required.
Changes to this property will trigger replacement.
string
The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.
Prefix Changes to this property will trigger replacement. string
A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.
Bucket
This property is required.
Changes to this property will trigger replacement.
string
The object storage bucket that contains the dataset data source.
Namespace
This property is required.
Changes to this property will trigger replacement.
string
The namespace of the bucket that contains the dataset data source.
SourceType
This property is required.
Changes to this property will trigger replacement.
string
The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.
Prefix Changes to this property will trigger replacement. string
A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.
bucket
This property is required.
Changes to this property will trigger replacement.
String
The object storage bucket that contains the dataset data source.
namespace
This property is required.
Changes to this property will trigger replacement.
String
The namespace of the bucket that contains the dataset data source.
sourceType
This property is required.
Changes to this property will trigger replacement.
String
The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.
prefix Changes to this property will trigger replacement. String
A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.
bucket
This property is required.
Changes to this property will trigger replacement.
string
The object storage bucket that contains the dataset data source.
namespace
This property is required.
Changes to this property will trigger replacement.
string
The namespace of the bucket that contains the dataset data source.
sourceType
This property is required.
Changes to this property will trigger replacement.
string
The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.
prefix Changes to this property will trigger replacement. string
A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.
bucket
This property is required.
Changes to this property will trigger replacement.
str
The object storage bucket that contains the dataset data source.
namespace
This property is required.
Changes to this property will trigger replacement.
str
The namespace of the bucket that contains the dataset data source.
source_type
This property is required.
Changes to this property will trigger replacement.
str
The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.
prefix Changes to this property will trigger replacement. str
A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.
bucket
This property is required.
Changes to this property will trigger replacement.
String
The object storage bucket that contains the dataset data source.
namespace
This property is required.
Changes to this property will trigger replacement.
String
The namespace of the bucket that contains the dataset data source.
sourceType
This property is required.
Changes to this property will trigger replacement.
String
The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.
prefix Changes to this property will trigger replacement. String
A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.

DatasetInitialImportDatasetConfiguration
, DatasetInitialImportDatasetConfigurationArgs

ImportFormat
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportFormat
File format details used for importing dataset
ImportMetadataPath
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportMetadataPath
Object storage path for the metadata file
ImportFormat
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportFormat
File format details used for importing dataset
ImportMetadataPath
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportMetadataPath
Object storage path for the metadata file
importFormat
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportFormat
File format details used for importing dataset
importMetadataPath
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportMetadataPath
Object storage path for the metadata file
importFormat
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportFormat
File format details used for importing dataset
importMetadataPath
This property is required.
Changes to this property will trigger replacement.
DatasetInitialImportDatasetConfigurationImportMetadataPath
Object storage path for the metadata file
import_format
This property is required.
Changes to this property will trigger replacement.
datalabellingservice.DatasetInitialImportDatasetConfigurationImportFormat
File format details used for importing dataset
import_metadata_path
This property is required.
Changes to this property will trigger replacement.
datalabellingservice.DatasetInitialImportDatasetConfigurationImportMetadataPath
Object storage path for the metadata file
importFormat
This property is required.
Changes to this property will trigger replacement.
Property Map
File format details used for importing dataset
importMetadataPath
This property is required.
Changes to this property will trigger replacement.
Property Map
Object storage path for the metadata file

DatasetInitialImportDatasetConfigurationImportFormat
, DatasetInitialImportDatasetConfigurationImportFormatArgs

Name
This property is required.
Changes to this property will trigger replacement.
string
Name of import format
Version Changes to this property will trigger replacement. string
Version of import format
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of import format
Version Changes to this property will trigger replacement. string
Version of import format
name
This property is required.
Changes to this property will trigger replacement.
String
Name of import format
version Changes to this property will trigger replacement. String
Version of import format
name
This property is required.
Changes to this property will trigger replacement.
string
Name of import format
version Changes to this property will trigger replacement. string
Version of import format
name
This property is required.
Changes to this property will trigger replacement.
str
Name of import format
version Changes to this property will trigger replacement. str
Version of import format
name
This property is required.
Changes to this property will trigger replacement.
String
Name of import format
version Changes to this property will trigger replacement. String
Version of import format

DatasetInitialImportDatasetConfigurationImportMetadataPath
, DatasetInitialImportDatasetConfigurationImportMetadataPathArgs

Bucket
This property is required.
Changes to this property will trigger replacement.
string
Bucket name
Namespace
This property is required.
Changes to this property will trigger replacement.
string
Bucket namespace name
Path
This property is required.
Changes to this property will trigger replacement.
string
Path for the metadata file.
SourceType
This property is required.
Changes to this property will trigger replacement.
string
The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
Bucket
This property is required.
Changes to this property will trigger replacement.
string
Bucket name
Namespace
This property is required.
Changes to this property will trigger replacement.
string
Bucket namespace name
Path
This property is required.
Changes to this property will trigger replacement.
string
Path for the metadata file.
SourceType
This property is required.
Changes to this property will trigger replacement.
string
The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
bucket
This property is required.
Changes to this property will trigger replacement.
String
Bucket name
namespace
This property is required.
Changes to this property will trigger replacement.
String
Bucket namespace name
path
This property is required.
Changes to this property will trigger replacement.
String
Path for the metadata file.
sourceType
This property is required.
Changes to this property will trigger replacement.
String
The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
bucket
This property is required.
Changes to this property will trigger replacement.
string
Bucket name
namespace
This property is required.
Changes to this property will trigger replacement.
string
Bucket namespace name
path
This property is required.
Changes to this property will trigger replacement.
string
Path for the metadata file.
sourceType
This property is required.
Changes to this property will trigger replacement.
string
The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
bucket
This property is required.
Changes to this property will trigger replacement.
str
Bucket name
namespace
This property is required.
Changes to this property will trigger replacement.
str
Bucket namespace name
path
This property is required.
Changes to this property will trigger replacement.
str
Path for the metadata file.
source_type
This property is required.
Changes to this property will trigger replacement.
str
The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
bucket
This property is required.
Changes to this property will trigger replacement.
String
Bucket name
namespace
This property is required.
Changes to this property will trigger replacement.
String
Bucket namespace name
path
This property is required.
Changes to this property will trigger replacement.
String
Path for the metadata file.
sourceType
This property is required.
Changes to this property will trigger replacement.
String
The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.

DatasetLabelSet
, DatasetLabelSetArgs

Items This property is required. List<DatasetLabelSetItem>
An ordered collection of labels that are unique by name.
Items This property is required. []DatasetLabelSetItem
An ordered collection of labels that are unique by name.
items This property is required. List<DatasetLabelSetItem>
An ordered collection of labels that are unique by name.
items This property is required. DatasetLabelSetItem[]
An ordered collection of labels that are unique by name.
items This property is required. Sequence[datalabellingservice.DatasetLabelSetItem]
An ordered collection of labels that are unique by name.
items This property is required. List<Property Map>
An ordered collection of labels that are unique by name.

DatasetLabelSetItem
, DatasetLabelSetItemArgs

Name This property is required. string
An unique name for a label within its dataset.
Name This property is required. string
An unique name for a label within its dataset.
name This property is required. String
An unique name for a label within its dataset.
name This property is required. string
An unique name for a label within its dataset.
name This property is required. str
An unique name for a label within its dataset.
name This property is required. String
An unique name for a label within its dataset.

Import

Datasets can be imported using the id, e.g.

$ pulumi import oci:DataLabellingService/dataset:Dataset test_dataset "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.