![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.machinelearningservices.kotlin.ModelVersionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.machinelearningservices.kotlin
import com.pulumi.azurenative.machinelearningservices.ModelVersionArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Azure Resource Manager resource envelope.
* Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2021-03-01-preview.
* Other available API versions: 2021-03-01-preview, 2022-02-01-preview, 2023-04-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-10-01, 2024-01-01-preview, 2024-04-01, 2024-04-01-preview, 2024-07-01-preview.
* ## Example Usage
* ### CreateOrUpdate Workspace Model Version.
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var modelVersion = new AzureNative.MachineLearningServices.ModelVersion("modelVersion", new()
* {
* ModelVersionProperties = new AzureNative.MachineLearningServices.Inputs.ModelVersionArgs
* {
* Description = "string",
* Flavors =
* {
* { "string", new AzureNative.MachineLearningServices.Inputs.FlavorDataArgs
* {
* Data =
* {
* { "string", "string" },
* },
* } },
* },
* IsAnonymous = false,
* ModelType = "CustomModel",
* ModelUri = "string",
* Properties =
* {
* { "string", "string" },
* },
* Tags =
* {
* { "string", "string" },
* },
* },
* Name = "string",
* ResourceGroupName = "test-rg",
* Version = "string",
* WorkspaceName = "my-aml-workspace",
* });
* });
* ```
* ```go
* package main
* import (
* machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := machinelearningservices.NewModelVersion(ctx, "modelVersion", &machinelearningservices.ModelVersionArgs{
* ModelVersionProperties: &machinelearningservices.ModelVersionTypeArgs{
* Description: pulumi.String("string"),
* Flavors: machinelearningservices.FlavorDataMap{
* "string": &machinelearningservices.FlavorDataArgs{
* Data: pulumi.StringMap{
* "string": pulumi.String("string"),
* },
* },
* },
* IsAnonymous: pulumi.Bool(false),
* ModelType: pulumi.String("CustomModel"),
* ModelUri: pulumi.String("string"),
* Properties: pulumi.StringMap{
* "string": pulumi.String("string"),
* },
* Tags: pulumi.StringMap{
* "string": pulumi.String("string"),
* },
* },
* Name: pulumi.String("string"),
* ResourceGroupName: pulumi.String("test-rg"),
* Version: pulumi.String("string"),
* WorkspaceName: pulumi.String("my-aml-workspace"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.machinelearningservices.ModelVersion;
* import com.pulumi.azurenative.machinelearningservices.ModelVersionArgs;
* import com.pulumi.azurenative.machinelearningservices.inputs.ModelVersionArgs;
* 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 modelVersion = new ModelVersion("modelVersion", ModelVersionArgs.builder()
* .modelVersionProperties(ModelVersionArgs.builder()
* .description("string")
* .flavors(Map.of("string", Map.of("data", Map.of("string", "string"))))
* .isAnonymous(false)
* .modelType("CustomModel")
* .modelUri("string")
* .properties(Map.of("string", "string"))
* .tags(Map.of("string", "string"))
* .build())
* .name("string")
* .resourceGroupName("test-rg")
* .version("string")
* .workspaceName("my-aml-workspace")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:machinelearningservices:ModelVersion string /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/models/{name}/versions/{version}
* ```
* @property modelVersionProperties [Required] Additional attributes of the entity.
* @property name Container name. This is case-sensitive.
* @property resourceGroupName The name of the resource group. The name is case insensitive.
* @property version Version identifier. This is case-sensitive.
* @property workspaceName Name of Azure Machine Learning workspace.
*/
public data class ModelVersionArgs(
public val modelVersionProperties: Output? = null,
public val name: Output? = null,
public val resourceGroupName: Output? = null,
public val version: Output? = null,
public val workspaceName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.machinelearningservices.ModelVersionArgs =
com.pulumi.azurenative.machinelearningservices.ModelVersionArgs.builder()
.modelVersionProperties(
modelVersionProperties?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.name(name?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.version(version?.applyValue({ args0 -> args0 }))
.workspaceName(workspaceName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ModelVersionArgs].
*/
@PulumiTagMarker
public class ModelVersionArgsBuilder internal constructor() {
private var modelVersionProperties:
Output? = null
private var name: Output? = null
private var resourceGroupName: Output? = null
private var version: Output? = null
private var workspaceName: Output? = null
/**
* @param value [Required] Additional attributes of the entity.
*/
@JvmName("pvwdspoooknunrjb")
public suspend fun modelVersionProperties(`value`: Output) {
this.modelVersionProperties = value
}
/**
* @param value Container name. This is case-sensitive.
*/
@JvmName("rbpkssewidjxmcga")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The name of the resource group. The name is case insensitive.
*/
@JvmName("drojueusygwyxxqj")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value Version identifier. This is case-sensitive.
*/
@JvmName("gekamhieriqyjaoc")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value Name of Azure Machine Learning workspace.
*/
@JvmName("qtbystpvdvchdxbv")
public suspend fun workspaceName(`value`: Output) {
this.workspaceName = value
}
/**
* @param value [Required] Additional attributes of the entity.
*/
@JvmName("mjidqfnqwvirgysf")
public suspend fun modelVersionProperties(`value`: com.pulumi.azurenative.machinelearningservices.kotlin.inputs.ModelVersionArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.modelVersionProperties = mapped
}
/**
* @param argument [Required] Additional attributes of the entity.
*/
@JvmName("fdttyvltdsnjitbg")
public suspend fun modelVersionProperties(argument: suspend com.pulumi.azurenative.machinelearningservices.kotlin.inputs.ModelVersionArgsBuilder.() -> Unit) {
val toBeMapped =
com.pulumi.azurenative.machinelearningservices.kotlin.inputs.ModelVersionArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.modelVersionProperties = mapped
}
/**
* @param value Container name. This is case-sensitive.
*/
@JvmName("sdakyticbaxpucvb")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The name of the resource group. The name is case insensitive.
*/
@JvmName("qlkxvysuyenmdscv")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value Version identifier. This is case-sensitive.
*/
@JvmName("qqqjfiatqjjtvytb")
public suspend fun version(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.version = mapped
}
/**
* @param value Name of Azure Machine Learning workspace.
*/
@JvmName("xvvhrannojohfjpx")
public suspend fun workspaceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.workspaceName = mapped
}
internal fun build(): ModelVersionArgs = ModelVersionArgs(
modelVersionProperties = modelVersionProperties,
name = name,
resourceGroupName = resourceGroupName,
version = version,
workspaceName = workspaceName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy