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.portal.kotlin.Dashboard.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.portal.kotlin
import com.pulumi.azurenative.portal.kotlin.outputs.DashboardPropertiesWithProvisioningStateResponse
import com.pulumi.azurenative.portal.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 kotlin.collections.Map
import com.pulumi.azurenative.portal.kotlin.outputs.DashboardPropertiesWithProvisioningStateResponse.Companion.toKotlin as dashboardPropertiesWithProvisioningStateResponseToKotlin
import com.pulumi.azurenative.portal.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [Dashboard].
*/
@PulumiTagMarker
public class DashboardResourceBuilder internal constructor() {
public var name: String? = null
public var args: DashboardArgs = DashboardArgs()
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 DashboardArgsBuilder.() -> Unit) {
val builder = DashboardArgsBuilder()
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(): Dashboard {
val builtJavaResource = com.pulumi.azurenative.portal.Dashboard(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Dashboard(builtJavaResource)
}
}
/**
* The shared dashboard resource definition.
* Azure REST API version: 2020-09-01-preview. Prior API version in Azure Native 1.x: 2020-09-01-preview.
* Other available API versions: 2019-01-01-preview, 2022-12-01-preview.
* ## Example Usage
* ### Create or update a Dashboard
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var dashboard = new AzureNative.Portal.Dashboard("dashboard", new()
* {
* DashboardName = "testDashboard",
* Location = "eastus",
* Properties = new AzureNative.Portal.Inputs.DashboardPropertiesWithProvisioningStateArgs
* {
* Lenses = new[]
* {
* new AzureNative.Portal.Inputs.DashboardLensArgs
* {
* Order = 1,
* Parts = new[]
* {
* new AzureNative.Portal.Inputs.DashboardPartsArgs
* {
* Position = new AzureNative.Portal.Inputs.DashboardPartsPositionArgs
* {
* ColSpan = 3,
* RowSpan = 4,
* X = 1,
* Y = 2,
* },
* },
* new AzureNative.Portal.Inputs.DashboardPartsArgs
* {
* Position = new AzureNative.Portal.Inputs.DashboardPartsPositionArgs
* {
* ColSpan = 6,
* RowSpan = 6,
* X = 5,
* Y = 5,
* },
* },
* },
* },
* new AzureNative.Portal.Inputs.DashboardLensArgs
* {
* Order = 2,
* Parts = new() { },
* },
* },
* Metadata = new Dictionary
* {
* ["metadata"] = new Dictionary
* {
* ["ColSpan"] = 2,
* ["RowSpan"] = 1,
* ["X"] = 4,
* ["Y"] = 3,
* },
* },
* },
* ResourceGroupName = "testRG",
* Tags =
* {
* { "aKey", "aValue" },
* { "anotherKey", "anotherValue" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* portal "github.com/pulumi/pulumi-azure-native-sdk/portal/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := portal.NewDashboard(ctx, "dashboard", &portal.DashboardArgs{
* DashboardName: pulumi.String("testDashboard"),
* Location: pulumi.String("eastus"),
* Properties: &portal.DashboardPropertiesWithProvisioningStateArgs{
* Lenses: portal.DashboardLensArray{
* &portal.DashboardLensArgs{
* Order: pulumi.Int(1),
* Parts: portal.DashboardPartsArray{
* &portal.DashboardPartsArgs{
* Position: &portal.DashboardPartsPositionArgs{
* ColSpan: pulumi.Int(3),
* RowSpan: pulumi.Int(4),
* X: pulumi.Int(1),
* Y: pulumi.Int(2),
* },
* },
* &portal.DashboardPartsArgs{
* Position: &portal.DashboardPartsPositionArgs{
* ColSpan: pulumi.Int(6),
* RowSpan: pulumi.Int(6),
* X: pulumi.Int(5),
* Y: pulumi.Int(5),
* },
* },
* },
* },
* &portal.DashboardLensArgs{
* Order: pulumi.Int(2),
* Parts: portal.DashboardPartsArray{},
* },
* },
* Metadata: pulumi.Any(map[string]interface{}{
* "metadata": map[string]interface{}{
* "ColSpan": 2,
* "RowSpan": 1,
* "X": 4,
* "Y": 3,
* },
* }),
* },
* ResourceGroupName: pulumi.String("testRG"),
* Tags: pulumi.StringMap{
* "aKey": pulumi.String("aValue"),
* "anotherKey": pulumi.String("anotherValue"),
* },
* })
* 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.portal.Dashboard;
* import com.pulumi.azurenative.portal.DashboardArgs;
* import com.pulumi.azurenative.portal.inputs.DashboardPropertiesWithProvisioningStateArgs;
* 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 dashboard = new Dashboard("dashboard", DashboardArgs.builder()
* .dashboardName("testDashboard")
* .location("eastus")
* .properties(DashboardPropertiesWithProvisioningStateArgs.builder()
* .lenses(
* DashboardLensArgs.builder()
* .order(1)
* .parts(
* DashboardPartsArgs.builder()
* .position(DashboardPartsPositionArgs.builder()
* .colSpan(3)
* .rowSpan(4)
* .x(1)
* .y(2)
* .build())
* .build(),
* DashboardPartsArgs.builder()
* .position(DashboardPartsPositionArgs.builder()
* .colSpan(6)
* .rowSpan(6)
* .x(5)
* .y(5)
* .build())
* .build())
* .build(),
* DashboardLensArgs.builder()
* .order(2)
* .parts()
* .build())
* .metadata(Map.of("metadata", Map.ofEntries(
* Map.entry("ColSpan", 2),
* Map.entry("RowSpan", 1),
* Map.entry("X", 4),
* Map.entry("Y", 3)
* )))
* .build())
* .resourceGroupName("testRG")
* .tags(Map.ofEntries(
* Map.entry("aKey", "aValue"),
* Map.entry("anotherKey", "anotherValue")
* ))
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:portal:Dashboard testDashboard /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}
* ```
*/
public class Dashboard internal constructor(
override val javaResource: com.pulumi.azurenative.portal.Dashboard,
) : KotlinCustomResource(javaResource, DashboardMapper) {
/**
* The geo-location where the resource lives
*/
public val location: Output
get() = javaResource.location().applyValue({ args0 -> args0 })
/**
* The name of the resource
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The resource-specific properties for this resource.
*/
public val properties: Output
get() = javaResource.properties().applyValue({ args0 ->
args0.let({ args0 ->
dashboardPropertiesWithProvisioningStateResponseToKotlin(args0)
})
})
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* Resource tags.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* 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 DashboardMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.portal.Dashboard::class == javaResource::class
override fun map(javaResource: Resource): Dashboard = Dashboard(
javaResource as
com.pulumi.azurenative.portal.Dashboard,
)
}
/**
* @see [Dashboard].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Dashboard].
*/
public suspend fun dashboard(name: String, block: suspend DashboardResourceBuilder.() -> Unit): Dashboard {
val builder = DashboardResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Dashboard].
* @param name The _unique_ name of the resulting resource.
*/
public fun dashboard(name: String): Dashboard {
val builder = DashboardResourceBuilder()
builder.name(name)
return builder.build()
}