flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud
flexibleengine.getModelartsDatasets
Explore with Pulumi AI
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud
Use this data source to get a list of ModelArts datasets.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const test = flexibleengine.getModelartsDatasets({
name: "your_dataset_name",
type: 1,
});
import pulumi
import pulumi_flexibleengine as flexibleengine
test = flexibleengine.get_modelarts_datasets(name="your_dataset_name",
type=1)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := flexibleengine.GetModelartsDatasets(ctx, &flexibleengine.GetModelartsDatasetsArgs{
Name: pulumi.StringRef("your_dataset_name"),
Type: pulumi.Float64Ref(1),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var test = Flexibleengine.GetModelartsDatasets.Invoke(new()
{
Name = "your_dataset_name",
Type = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.FlexibleengineFunctions;
import com.pulumi.flexibleengine.inputs.GetModelartsDatasetsArgs;
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) {
final var test = FlexibleengineFunctions.getModelartsDatasets(GetModelartsDatasetsArgs.builder()
.name("your_dataset_name")
.type(1)
.build());
}
}
variables:
test:
fn::invoke:
function: flexibleengine:getModelartsDatasets
arguments:
name: your_dataset_name
type: 1
Using getModelartsDatasets
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getModelartsDatasets(args: GetModelartsDatasetsArgs, opts?: InvokeOptions): Promise<GetModelartsDatasetsResult>
function getModelartsDatasetsOutput(args: GetModelartsDatasetsOutputArgs, opts?: InvokeOptions): Output<GetModelartsDatasetsResult>
def get_modelarts_datasets(id: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
type: Optional[float] = None,
opts: Optional[InvokeOptions] = None) -> GetModelartsDatasetsResult
def get_modelarts_datasets_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[float]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetModelartsDatasetsResult]
func GetModelartsDatasets(ctx *Context, args *GetModelartsDatasetsArgs, opts ...InvokeOption) (*GetModelartsDatasetsResult, error)
func GetModelartsDatasetsOutput(ctx *Context, args *GetModelartsDatasetsOutputArgs, opts ...InvokeOption) GetModelartsDatasetsResultOutput
> Note: This function is named GetModelartsDatasets
in the Go SDK.
public static class GetModelartsDatasets
{
public static Task<GetModelartsDatasetsResult> InvokeAsync(GetModelartsDatasetsArgs args, InvokeOptions? opts = null)
public static Output<GetModelartsDatasetsResult> Invoke(GetModelartsDatasetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetModelartsDatasetsResult> getModelartsDatasets(GetModelartsDatasetsArgs args, InvokeOptions options)
public static Output<GetModelartsDatasetsResult> getModelartsDatasets(GetModelartsDatasetsArgs args, InvokeOptions options)
fn::invoke:
function: flexibleengine:index/getModelartsDatasets:getModelartsDatasets
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- The ID of the dataset.
- Name string
- Specifies the name of datasets.
- Region string
- Specifies the region in which to obtain datasets. If omitted, the provider-level region will be used.
- Type double
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- Id string
- The ID of the dataset.
- Name string
- Specifies the name of datasets.
- Region string
- Specifies the region in which to obtain datasets. If omitted, the provider-level region will be used.
- Type float64
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- id String
- The ID of the dataset.
- name String
- Specifies the name of datasets.
- region String
- Specifies the region in which to obtain datasets. If omitted, the provider-level region will be used.
- type Double
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- id string
- The ID of the dataset.
- name string
- Specifies the name of datasets.
- region string
- Specifies the region in which to obtain datasets. If omitted, the provider-level region will be used.
- type number
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- id str
- The ID of the dataset.
- name str
- Specifies the name of datasets.
- region str
- Specifies the region in which to obtain datasets. If omitted, the provider-level region will be used.
- type float
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- id String
- The ID of the dataset.
- name String
- Specifies the name of datasets.
- region String
- Specifies the region in which to obtain datasets. If omitted, the provider-level region will be used.
- type Number
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
getModelartsDatasets Result
The following output properties are available:
- Datasets
List<Get
Modelarts Datasets Dataset> - Indicates a list of all datasets found. Structure is documented below.
- Id string
- The ID of the dataset.
- Region string
- Name string
- The name of label.
- Type double
- The field type. Valid values include:
String
,Short
,Int
,Long
,Double
,Float
,Byte
,Date
,Timestamp
,Bool
.
- Datasets
[]Get
Modelarts Datasets Dataset - Indicates a list of all datasets found. Structure is documented below.
- Id string
- The ID of the dataset.
- Region string
- Name string
- The name of label.
- Type float64
- The field type. Valid values include:
String
,Short
,Int
,Long
,Double
,Float
,Byte
,Date
,Timestamp
,Bool
.
- datasets
List<Get
Modelarts Datasets Dataset> - Indicates a list of all datasets found. Structure is documented below.
- id String
- The ID of the dataset.
- region String
- name String
- The name of label.
- type Double
- The field type. Valid values include:
String
,Short
,Int
,Long
,Double
,Float
,Byte
,Date
,Timestamp
,Bool
.
Supporting Types
GetModelartsDatasetsDataset
- Created
At string - The dataset creation time.
- Data
Format string - The dataset format. Valid values include:
Default
,CarbonData
: Carbon format(Supported only for table type dataset.). - Data
Sources List<GetModelarts Datasets Dataset Data Source> - The data sources which is used to imported the source data (such as pictures/files/audio, etc.) in this directory and subdirectories to the dataset. Structure is documented below.
- Description string
- The description of the dataset.
- Id string
- The ID of the dataset.
- Labels
List<Get
Modelarts Datasets Dataset Label> - The labels information. Structure is documented below.
- Name string
- Specifies the name of datasets.
- Output
Path string - The OBS path for storing output files such as labeled files.
- Schemas
List<Get
Modelarts Datasets Dataset Schema> - The schema information of source data when
type
is400
(Table Type). Structure is documented below. - Status double
- Dataset status. Valid values are as follows:
- 0: Creating.
- 1: Completed.
- 2: Deleting.
- 3: Deleted.
- 4: Exception.
- 5: Syncing.
- 6: Releasing.
- 7: Version switching.
- 8: Importing.
- Type double
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- Created
At string - The dataset creation time.
- Data
Format string - The dataset format. Valid values include:
Default
,CarbonData
: Carbon format(Supported only for table type dataset.). - Data
Sources []GetModelarts Datasets Dataset Data Source - The data sources which is used to imported the source data (such as pictures/files/audio, etc.) in this directory and subdirectories to the dataset. Structure is documented below.
- Description string
- The description of the dataset.
- Id string
- The ID of the dataset.
- Labels
[]Get
Modelarts Datasets Dataset Label - The labels information. Structure is documented below.
- Name string
- Specifies the name of datasets.
- Output
Path string - The OBS path for storing output files such as labeled files.
- Schemas
[]Get
Modelarts Datasets Dataset Schema - The schema information of source data when
type
is400
(Table Type). Structure is documented below. - Status float64
- Dataset status. Valid values are as follows:
- 0: Creating.
- 1: Completed.
- 2: Deleting.
- 3: Deleted.
- 4: Exception.
- 5: Syncing.
- 6: Releasing.
- 7: Version switching.
- 8: Importing.
- Type float64
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- created
At String - The dataset creation time.
- data
Format String - The dataset format. Valid values include:
Default
,CarbonData
: Carbon format(Supported only for table type dataset.). - data
Sources List<GetModelarts Datasets Dataset Data Source> - The data sources which is used to imported the source data (such as pictures/files/audio, etc.) in this directory and subdirectories to the dataset. Structure is documented below.
- description String
- The description of the dataset.
- id String
- The ID of the dataset.
- labels
List<Get
Modelarts Datasets Dataset Label> - The labels information. Structure is documented below.
- name String
- Specifies the name of datasets.
- output
Path String - The OBS path for storing output files such as labeled files.
- schemas
List<Get
Modelarts Datasets Dataset Schema> - The schema information of source data when
type
is400
(Table Type). Structure is documented below. - status Double
- Dataset status. Valid values are as follows:
- 0: Creating.
- 1: Completed.
- 2: Deleting.
- 3: Deleted.
- 4: Exception.
- 5: Syncing.
- 6: Releasing.
- 7: Version switching.
- 8: Importing.
- type Double
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- created
At string - The dataset creation time.
- data
Format string - The dataset format. Valid values include:
Default
,CarbonData
: Carbon format(Supported only for table type dataset.). - data
Sources GetModelarts Datasets Dataset Data Source[] - The data sources which is used to imported the source data (such as pictures/files/audio, etc.) in this directory and subdirectories to the dataset. Structure is documented below.
- description string
- The description of the dataset.
- id string
- The ID of the dataset.
- labels
Get
Modelarts Datasets Dataset Label[] - The labels information. Structure is documented below.
- name string
- Specifies the name of datasets.
- output
Path string - The OBS path for storing output files such as labeled files.
- schemas
Get
Modelarts Datasets Dataset Schema[] - The schema information of source data when
type
is400
(Table Type). Structure is documented below. - status number
- Dataset status. Valid values are as follows:
- 0: Creating.
- 1: Completed.
- 2: Deleting.
- 3: Deleted.
- 4: Exception.
- 5: Syncing.
- 6: Releasing.
- 7: Version switching.
- 8: Importing.
- type number
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- created_
at str - The dataset creation time.
- data_
format str - The dataset format. Valid values include:
Default
,CarbonData
: Carbon format(Supported only for table type dataset.). - data_
sources Sequence[GetModelarts Datasets Dataset Data Source] - The data sources which is used to imported the source data (such as pictures/files/audio, etc.) in this directory and subdirectories to the dataset. Structure is documented below.
- description str
- The description of the dataset.
- id str
- The ID of the dataset.
- labels
Sequence[Get
Modelarts Datasets Dataset Label] - The labels information. Structure is documented below.
- name str
- Specifies the name of datasets.
- output_
path str - The OBS path for storing output files such as labeled files.
- schemas
Sequence[Get
Modelarts Datasets Dataset Schema] - The schema information of source data when
type
is400
(Table Type). Structure is documented below. - status float
- Dataset status. Valid values are as follows:
- 0: Creating.
- 1: Completed.
- 2: Deleting.
- 3: Deleted.
- 4: Exception.
- 5: Syncing.
- 6: Releasing.
- 7: Version switching.
- 8: Importing.
- type float
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- created
At String - The dataset creation time.
- data
Format String - The dataset format. Valid values include:
Default
,CarbonData
: Carbon format(Supported only for table type dataset.). - data
Sources List<Property Map> - The data sources which is used to imported the source data (such as pictures/files/audio, etc.) in this directory and subdirectories to the dataset. Structure is documented below.
- description String
- The description of the dataset.
- id String
- The ID of the dataset.
- labels List<Property Map>
- The labels information. Structure is documented below.
- name String
- Specifies the name of datasets.
- output
Path String - The OBS path for storing output files such as labeled files.
- schemas List<Property Map>
- The schema information of source data when
type
is400
(Table Type). Structure is documented below. - status Number
- Dataset status. Valid values are as follows:
- 0: Creating.
- 1: Completed.
- 2: Deleting.
- 3: Deleted.
- 4: Exception.
- 5: Syncing.
- 6: Releasing.
- 7: Version switching.
- 8: Importing.
- type Number
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
GetModelartsDatasetsDatasetDataSource
- Data
Type double - The type of data source. Valid values are as follows:
- 0: OBS.
- 1: GaussDB(DWS).
- 2: DLI.
- 4: MRS.
- Path string
- The OBS path when
data_type
is0
(OBS) or the HDFS path whendata_type
is4
(MRS). All the file in this directory and subdirectories will be which be imported to the dataset. - With
Column boolHeader - Whether the data contains table header when the type of dataset is
400
(Table type).
- Data
Type float64 - The type of data source. Valid values are as follows:
- 0: OBS.
- 1: GaussDB(DWS).
- 2: DLI.
- 4: MRS.
- Path string
- The OBS path when
data_type
is0
(OBS) or the HDFS path whendata_type
is4
(MRS). All the file in this directory and subdirectories will be which be imported to the dataset. - With
Column boolHeader - Whether the data contains table header when the type of dataset is
400
(Table type).
- data
Type Double - The type of data source. Valid values are as follows:
- 0: OBS.
- 1: GaussDB(DWS).
- 2: DLI.
- 4: MRS.
- path String
- The OBS path when
data_type
is0
(OBS) or the HDFS path whendata_type
is4
(MRS). All the file in this directory and subdirectories will be which be imported to the dataset. - with
Column BooleanHeader - Whether the data contains table header when the type of dataset is
400
(Table type).
- data
Type number - The type of data source. Valid values are as follows:
- 0: OBS.
- 1: GaussDB(DWS).
- 2: DLI.
- 4: MRS.
- path string
- The OBS path when
data_type
is0
(OBS) or the HDFS path whendata_type
is4
(MRS). All the file in this directory and subdirectories will be which be imported to the dataset. - with
Column booleanHeader - Whether the data contains table header when the type of dataset is
400
(Table type).
- data_
type float - The type of data source. Valid values are as follows:
- 0: OBS.
- 1: GaussDB(DWS).
- 2: DLI.
- 4: MRS.
- path str
- The OBS path when
data_type
is0
(OBS) or the HDFS path whendata_type
is4
(MRS). All the file in this directory and subdirectories will be which be imported to the dataset. - with_
column_ boolheader - Whether the data contains table header when the type of dataset is
400
(Table type).
- data
Type Number - The type of data source. Valid values are as follows:
- 0: OBS.
- 1: GaussDB(DWS).
- 2: DLI.
- 4: MRS.
- path String
- The OBS path when
data_type
is0
(OBS) or the HDFS path whendata_type
is4
(MRS). All the file in this directory and subdirectories will be which be imported to the dataset. - with
Column BooleanHeader - Whether the data contains table header when the type of dataset is
400
(Table type).
GetModelartsDatasetsDatasetLabel
- Name string
- Specifies the name of datasets.
- Property
Color string - The color of label.
- Property
Shape string - The shape of label. Valid values include:
bndbox
,polygon
,circle
,line
,dashed
,point
,polyline
. - Property
Shortcut string - The shortcut of label.
- Name string
- Specifies the name of datasets.
- Property
Color string - The color of label.
- Property
Shape string - The shape of label. Valid values include:
bndbox
,polygon
,circle
,line
,dashed
,point
,polyline
. - Property
Shortcut string - The shortcut of label.
- name String
- Specifies the name of datasets.
- property
Color String - The color of label.
- property
Shape String - The shape of label. Valid values include:
bndbox
,polygon
,circle
,line
,dashed
,point
,polyline
. - property
Shortcut String - The shortcut of label.
- name string
- Specifies the name of datasets.
- property
Color string - The color of label.
- property
Shape string - The shape of label. Valid values include:
bndbox
,polygon
,circle
,line
,dashed
,point
,polyline
. - property
Shortcut string - The shortcut of label.
- name str
- Specifies the name of datasets.
- property_
color str - The color of label.
- property_
shape str - The shape of label. Valid values include:
bndbox
,polygon
,circle
,line
,dashed
,point
,polyline
. - property_
shortcut str - The shortcut of label.
- name String
- Specifies the name of datasets.
- property
Color String - The color of label.
- property
Shape String - The shape of label. Valid values include:
bndbox
,polygon
,circle
,line
,dashed
,point
,polyline
. - property
Shortcut String - The shortcut of label.
GetModelartsDatasetsDatasetSchema
- Name string
- Specifies the name of datasets.
- Type string
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- Name string
- Specifies the name of datasets.
- Type string
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- name String
- Specifies the name of datasets.
- type String
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- name string
- Specifies the name of datasets.
- type string
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- name str
- Specifies the name of datasets.
- type str
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
- name String
- Specifies the name of datasets.
- type String
- Specifies the type of datasets. The options are:
- 0: Image classification, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 1: Object detection, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 3: Image segmentation, supported formats:
.jpg
,.png
,.jpeg
,.bmp
. - 100: Text classification, supported formats:
.txt
,.csv
. - 200: Sound classification, Supported formats:
.wav
. - 400: Table type, supported formats: Carbon type.
- 600: Video, supported formats:
.mp4
- 900: Free format.
- 0: Image classification, supported formats:
Package Details
- Repository
- flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
- License
- Notes
- This Pulumi package is based on the
flexibleengine
Terraform Provider.
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud