
com.pulumi.azurenative.machinelearningservices.kotlin.outputs.MLTableDataResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.machinelearningservices.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* MLTable data definition
* @property dataType Enum to determine the type of data.
* Expected value is 'mltable'.
* @property dataUri [Required] Uri of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330
* @property description The asset description text.
* @property isAnonymous If the name version are system generated (anonymous registration).
* @property isArchived Is the asset archived?
* @property properties The asset property dictionary.
* @property referencedUris Uris referenced in the MLTable definition (required for lineage)
* @property tags Tag dictionary. Tags can be added, removed, and updated.
*/
public data class MLTableDataResponse(
public val dataType: String,
public val dataUri: String,
public val description: String? = null,
public val isAnonymous: Boolean? = null,
public val isArchived: Boolean? = null,
public val properties: Map? = null,
public val referencedUris: List? = null,
public val tags: Map? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.machinelearningservices.outputs.MLTableDataResponse): MLTableDataResponse = MLTableDataResponse(
dataType = javaType.dataType(),
dataUri = javaType.dataUri(),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
isAnonymous = javaType.isAnonymous().map({ args0 -> args0 }).orElse(null),
isArchived = javaType.isArchived().map({ args0 -> args0 }).orElse(null),
properties = javaType.properties().map({ args0 -> args0.key.to(args0.value) }).toMap(),
referencedUris = javaType.referencedUris().map({ args0 -> args0 }),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy