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.powerbi.kotlin.PowerBIResource.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.powerbi.kotlin
import com.pulumi.azurenative.powerbi.kotlin.outputs.PrivateEndpointConnectionResponse
import com.pulumi.azurenative.powerbi.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.List
import kotlin.collections.Map
import com.pulumi.azurenative.powerbi.kotlin.outputs.PrivateEndpointConnectionResponse.Companion.toKotlin as privateEndpointConnectionResponseToKotlin
import com.pulumi.azurenative.powerbi.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [PowerBIResource].
*/
@PulumiTagMarker
public class PowerBIResourceResourceBuilder internal constructor() {
public var name: String? = null
public var args: PowerBIResourceArgs = PowerBIResourceArgs()
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 PowerBIResourceArgsBuilder.() -> Unit) {
val builder = PowerBIResourceArgsBuilder()
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(): PowerBIResource {
val builtJavaResource = com.pulumi.azurenative.powerbi.PowerBIResource(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return PowerBIResource(builtJavaResource)
}
}
/**
*
* Azure REST API version: 2020-06-01. Prior API version in Azure Native 1.x: 2020-06-01.
* ## Example Usage
* ### Creates or updates private link service resource
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var powerBIResource = new AzureNative.PowerBI.PowerBIResource("powerBIResource", new()
* {
* AzureResourceName = "azureResourceName",
* Location = "global",
* ResourceGroupName = "resourceGroup",
* Tags =
* {
* { "tag1", "value1" },
* { "tag2", "value2" },
* },
* TenantId = "ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f",
* });
* });
* ```
* ```go
* package main
* import (
* powerbi "github.com/pulumi/pulumi-azure-native-sdk/powerbi/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := powerbi.NewPowerBIResource(ctx, "powerBIResource", &powerbi.PowerBIResourceArgs{
* AzureResourceName: pulumi.String("azureResourceName"),
* Location: pulumi.String("global"),
* ResourceGroupName: pulumi.String("resourceGroup"),
* Tags: pulumi.StringMap{
* "tag1": pulumi.String("value1"),
* "tag2": pulumi.String("value2"),
* },
* TenantId: pulumi.String("ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f"),
* })
* 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.powerbi.PowerBIResource;
* import com.pulumi.azurenative.powerbi.PowerBIResourceArgs;
* 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 powerBIResource = new PowerBIResource("powerBIResource", PowerBIResourceArgs.builder()
* .azureResourceName("azureResourceName")
* .location("global")
* .resourceGroupName("resourceGroup")
* .tags(Map.ofEntries(
* Map.entry("tag1", "value1"),
* Map.entry("tag2", "value2")
* ))
* .tenantId("ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:powerbi:PowerBIResource myPrivateLinkServiceResource /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBI/privateLinkServicesForPowerBI/{azureResourceName}
* ```
*/
public class PowerBIResource internal constructor(
override val javaResource: com.pulumi.azurenative.powerbi.PowerBIResource,
) : KotlinCustomResource(javaResource, PowerBIResourceMapper) {
/**
* Specifies the location of the resource.
*/
public val location: Output?
get() = javaResource.location().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Specifies the name of the resource.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Specifies the private endpoint connections of the resource.
*/
public val privateEndpointConnections: Output>?
get() = javaResource.privateEndpointConnections().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
privateEndpointConnectionResponseToKotlin(args0)
})
})
}).orElse(null)
})
/**
* The system metadata relating to this resource.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* Specifies the tags of the resource.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* Specifies the tenant id of the resource.
*/
public val tenantId: Output?
get() = javaResource.tenantId().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Specifies the type of the resource.
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object PowerBIResourceMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.powerbi.PowerBIResource::class == javaResource::class
override fun map(javaResource: Resource): PowerBIResource = PowerBIResource(
javaResource as
com.pulumi.azurenative.powerbi.PowerBIResource,
)
}
/**
* @see [PowerBIResource].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [PowerBIResource].
*/
public suspend fun powerBIResource(
name: String,
block: suspend PowerBIResourceResourceBuilder.() -> Unit,
): PowerBIResource {
val builder = PowerBIResourceResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [PowerBIResource].
* @param name The _unique_ name of the resulting resource.
*/
public fun powerBIResource(name: String): PowerBIResource {
val builder = PowerBIResourceResourceBuilder()
builder.name(name)
return builder.build()
}