![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.machinelearningservices.kotlin.ModelContainerArgs.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.ModelContainerArgs.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 Container.
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var modelContainer = new AzureNative.MachineLearningServices.ModelContainer("modelContainer", new()
* {
* ModelContainerProperties = new AzureNative.MachineLearningServices.Inputs.ModelContainerArgs
* {
* Description = "Model container description",
* Tags =
* {
* { "tag1", "value1" },
* { "tag2", "value2" },
* },
* },
* Name = "testContainer",
* ResourceGroupName = "testrg123",
* WorkspaceName = "workspace123",
* });
* });
* ```
* ```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.NewModelContainer(ctx, "modelContainer", &machinelearningservices.ModelContainerArgs{
* ModelContainerProperties: &machinelearningservices.ModelContainerTypeArgs{
* Description: pulumi.String("Model container description"),
* Tags: pulumi.StringMap{
* "tag1": pulumi.String("value1"),
* "tag2": pulumi.String("value2"),
* },
* },
* Name: pulumi.String("testContainer"),
* ResourceGroupName: pulumi.String("testrg123"),
* WorkspaceName: pulumi.String("workspace123"),
* })
* 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.ModelContainer;
* import com.pulumi.azurenative.machinelearningservices.ModelContainerArgs;
* import com.pulumi.azurenative.machinelearningservices.inputs.ModelContainerArgs;
* 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 modelContainer = new ModelContainer("modelContainer", ModelContainerArgs.builder()
* .modelContainerProperties(ModelContainerArgs.builder()
* .description("Model container description")
* .tags(Map.ofEntries(
* Map.entry("tag1", "value1"),
* Map.entry("tag2", "value2")
* ))
* .build())
* .name("testContainer")
* .resourceGroupName("testrg123")
* .workspaceName("workspace123")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:machinelearningservices:ModelContainer testContainer /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/models/{name}
* ```
* @property modelContainerProperties [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 workspaceName Name of Azure Machine Learning workspace.
*/
public data class ModelContainerArgs(
public val modelContainerProperties: Output? =
null,
public val name: Output? = null,
public val resourceGroupName: Output? = null,
public val workspaceName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.machinelearningservices.ModelContainerArgs =
com.pulumi.azurenative.machinelearningservices.ModelContainerArgs.builder()
.modelContainerProperties(
modelContainerProperties?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.name(name?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.workspaceName(workspaceName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ModelContainerArgs].
*/
@PulumiTagMarker
public class ModelContainerArgsBuilder internal constructor() {
private var modelContainerProperties:
Output? =
null
private var name: Output? = null
private var resourceGroupName: Output? = null
private var workspaceName: Output? = null
/**
* @param value [Required] Additional attributes of the entity.
*/
@JvmName("ijgmrofjgcqiraqt")
public suspend fun modelContainerProperties(`value`: Output) {
this.modelContainerProperties = value
}
/**
* @param value Container name. This is case-sensitive.
*/
@JvmName("uvfpnhwnneotwnfh")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The name of the resource group. The name is case insensitive.
*/
@JvmName("bpdcqbpccosrctyf")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value Name of Azure Machine Learning workspace.
*/
@JvmName("mqjfiqxljsxpxill")
public suspend fun workspaceName(`value`: Output) {
this.workspaceName = value
}
/**
* @param value [Required] Additional attributes of the entity.
*/
@JvmName("uywiujaqdbnuwwff")
public suspend fun modelContainerProperties(`value`: com.pulumi.azurenative.machinelearningservices.kotlin.inputs.ModelContainerArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.modelContainerProperties = mapped
}
/**
* @param argument [Required] Additional attributes of the entity.
*/
@JvmName("urmairotthrmttsh")
public suspend fun modelContainerProperties(argument: suspend com.pulumi.azurenative.machinelearningservices.kotlin.inputs.ModelContainerArgsBuilder.() -> Unit) {
val toBeMapped =
com.pulumi.azurenative.machinelearningservices.kotlin.inputs.ModelContainerArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.modelContainerProperties = mapped
}
/**
* @param value Container name. This is case-sensitive.
*/
@JvmName("ynvnokehwmfyklvn")
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("vxvdpaeyovytsesi")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value Name of Azure Machine Learning workspace.
*/
@JvmName("ikedxnubtjgddyrs")
public suspend fun workspaceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.workspaceName = mapped
}
internal fun build(): ModelContainerArgs = ModelContainerArgs(
modelContainerProperties = modelContainerProperties,
name = name,
resourceGroupName = resourceGroupName,
workspaceName = workspaceName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy