RenameDatasetLabelsDetails¶
-
class
oci.data_labeling_service.models.
RenameDatasetLabelsDetails
(**kwargs)¶ Bases:
object
Renames a subset of Labels in the Dataset’s LabelSet. The Labels in the source LabelSet will be replaced with the Labels in the target LabelSet. Labels are correlated by index, i.e. the first Label in the source LabelSet will be replaced by the first Label in the target LabelSet. If the size of the source and target LabelSets are not equal, the request will be rejected.
Methods
__init__
(**kwargs)Initializes a new RenameDatasetLabelsDetails object with values from keyword arguments. Attributes
source_label_set
Gets the source_label_set of this RenameDatasetLabelsDetails. target_label_set
Gets the target_label_set of this RenameDatasetLabelsDetails. -
__init__
(**kwargs)¶ Initializes a new RenameDatasetLabelsDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - source_label_set (oci.data_labeling_service.models.LabelSet) – The value to assign to the source_label_set property of this RenameDatasetLabelsDetails.
- target_label_set (oci.data_labeling_service.models.LabelSet) – The value to assign to the target_label_set property of this RenameDatasetLabelsDetails.
-
source_label_set
¶ Gets the source_label_set of this RenameDatasetLabelsDetails.
Returns: The source_label_set of this RenameDatasetLabelsDetails. Return type: oci.data_labeling_service.models.LabelSet
-
target_label_set
¶ Gets the target_label_set of this RenameDatasetLabelsDetails.
Returns: The target_label_set of this RenameDatasetLabelsDetails. Return type: oci.data_labeling_service.models.LabelSet
-