All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azurenative.machinelearningservices.kotlin.CodeContainer.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.machinelearningservices.kotlin
import com.pulumi.azurenative.machinelearningservices.kotlin.outputs.CodeContainerResponse
import com.pulumi.azurenative.machinelearningservices.kotlin.outputs.SystemDataResponse
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import com.pulumi.azurenative.machinelearningservices.kotlin.outputs.CodeContainerResponse.Companion.toKotlin as codeContainerResponseToKotlin
import com.pulumi.azurenative.machinelearningservices.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [CodeContainer].
*/
@PulumiTagMarker
public class CodeContainerResourceBuilder internal constructor() {
public var name: String? = null
public var args: CodeContainerArgs = CodeContainerArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend CodeContainerArgsBuilder.() -> Unit) {
val builder = CodeContainerArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): CodeContainer {
val builtJavaResource =
com.pulumi.azurenative.machinelearningservices.CodeContainer(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return CodeContainer(builtJavaResource)
}
}
/**
* 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 Code Container.
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var codeContainer = new AzureNative.MachineLearningServices.CodeContainer("codeContainer", new()
* {
* CodeContainerProperties = new AzureNative.MachineLearningServices.Inputs.CodeContainerArgs
* {
* Description = "string",
* Tags =
* {
* { "tag1", "value1" },
* { "tag2", "value2" },
* },
* },
* Name = "testContainer",
* ResourceGroupName = "testrg123",
* WorkspaceName = "testworkspace",
* });
* });
* ```
* ```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.NewCodeContainer(ctx, "codeContainer", &machinelearningservices.CodeContainerArgs{
* CodeContainerProperties: &machinelearningservices.CodeContainerTypeArgs{
* Description: pulumi.String("string"),
* Tags: pulumi.StringMap{
* "tag1": pulumi.String("value1"),
* "tag2": pulumi.String("value2"),
* },
* },
* Name: pulumi.String("testContainer"),
* ResourceGroupName: pulumi.String("testrg123"),
* WorkspaceName: pulumi.String("testworkspace"),
* })
* 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.CodeContainer;
* import com.pulumi.azurenative.machinelearningservices.CodeContainerArgs;
* import com.pulumi.azurenative.machinelearningservices.inputs.CodeContainerArgs;
* 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 codeContainer = new CodeContainer("codeContainer", CodeContainerArgs.builder()
* .codeContainerProperties(CodeContainerArgs.builder()
* .description("string")
* .tags(Map.ofEntries(
* Map.entry("tag1", "value1"),
* Map.entry("tag2", "value2")
* ))
* .build())
* .name("testContainer")
* .resourceGroupName("testrg123")
* .workspaceName("testworkspace")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:machinelearningservices:CodeContainer testContainer /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/codes/{name}
* ```
*/
public class CodeContainer internal constructor(
override val javaResource: com.pulumi.azurenative.machinelearningservices.CodeContainer,
) : KotlinCustomResource(javaResource, CodeContainerMapper) {
/**
* [Required] Additional attributes of the entity.
*/
public val codeContainerProperties: Output
get() = javaResource.codeContainerProperties().applyValue({ args0 ->
args0.let({ args0 ->
codeContainerResponseToKotlin(args0)
})
})
/**
* The name of the resource
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object CodeContainerMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.machinelearningservices.CodeContainer::class == javaResource::class
override fun map(javaResource: Resource): CodeContainer = CodeContainer(
javaResource as
com.pulumi.azurenative.machinelearningservices.CodeContainer,
)
}
/**
* @see [CodeContainer].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [CodeContainer].
*/
public suspend fun codeContainer(
name: String,
block: suspend CodeContainerResourceBuilder.() -> Unit,
): CodeContainer {
val builder = CodeContainerResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [CodeContainer].
* @param name The _unique_ name of the resulting resource.
*/
public fun codeContainer(name: String): CodeContainer {
val builder = CodeContainerResourceBuilder()
builder.name(name)
return builder.build()
}