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.azure.loganalytics.kotlin.QueryPackArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.loganalytics.kotlin
import com.pulumi.azure.loganalytics.QueryPackArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Manages a Log Analytics Query Pack.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "West Europe",
* });
* const exampleQueryPack = new azure.loganalytics.QueryPack("example", {
* name: "example-laqp",
* resourceGroupName: example.name,
* location: example.location,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_query_pack = azure.loganalytics.QueryPack("example",
* name="example-laqp",
* resource_group_name=example.name,
* location=example.location)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "example-resources",
* Location = "West Europe",
* });
* var exampleQueryPack = new Azure.LogAnalytics.QueryPack("example", new()
* {
* Name = "example-laqp",
* ResourceGroupName = example.Name,
* Location = example.Location,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/loganalytics"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* _, err = loganalytics.NewQueryPack(ctx, "example", &loganalytics.QueryPackArgs{
* Name: pulumi.String("example-laqp"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* })
* 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.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.loganalytics.QueryPack;
* import com.pulumi.azure.loganalytics.QueryPackArgs;
* 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("West Europe")
* .build());
* var exampleQueryPack = new QueryPack("exampleQueryPack", QueryPackArgs.builder()
* .name("example-laqp")
* .resourceGroupName(example.name())
* .location(example.location())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleQueryPack:
* type: azure:loganalytics:QueryPack
* name: example
* properties:
* name: example-laqp
* resourceGroupName: ${example.name}
* location: ${example.location}
* ```
*
* ## Import
* Log Analytics Query Packs can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:loganalytics/queryPack:QueryPack example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Microsoft.OperationalInsights/queryPacks/queryPack1
* ```
* @property location The Azure Region where the Log Analytics Query Pack should exist. Changing this forces a new resource to be created.
* @property name The name which should be used for this Log Analytics Query Pack. Changing this forces a new resource to be created.
* @property resourceGroupName The name of the Resource Group where the Log Analytics Query Pack should exist. Changing this forces a new resource to be created.
* @property tags A mapping of tags which should be assigned to the Log Analytics Query Pack.
*/
public data class QueryPackArgs(
public val location: Output? = null,
public val name: Output? = null,
public val resourceGroupName: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.loganalytics.QueryPackArgs =
com.pulumi.azure.loganalytics.QueryPackArgs.builder()
.location(location?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}),
).build()
}
/**
* Builder for [QueryPackArgs].
*/
@PulumiTagMarker
public class QueryPackArgsBuilder internal constructor() {
private var location: Output? = null
private var name: Output? = null
private var resourceGroupName: Output? = null
private var tags: Output>? = null
/**
* @param value The Azure Region where the Log Analytics Query Pack should exist. Changing this forces a new resource to be created.
*/
@JvmName("vybaimjopvpvbsuh")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value The name which should be used for this Log Analytics Query Pack. Changing this forces a new resource to be created.
*/
@JvmName("wehwhqtwaebmrqvb")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The name of the Resource Group where the Log Analytics Query Pack should exist. Changing this forces a new resource to be created.
*/
@JvmName("awfcaueunrpskyop")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value A mapping of tags which should be assigned to the Log Analytics Query Pack.
*/
@JvmName("gjbeeodwmjsmibbr")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
/**
* @param value The Azure Region where the Log Analytics Query Pack should exist. Changing this forces a new resource to be created.
*/
@JvmName("mbaalcelqhvmtuvv")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value The name which should be used for this Log Analytics Query Pack. Changing this forces a new resource to be created.
*/
@JvmName("nygwbojbvtefertf")
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 where the Log Analytics Query Pack should exist. Changing this forces a new resource to be created.
*/
@JvmName("jkbaujxyioggcbnl")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value A mapping of tags which should be assigned to the Log Analytics Query Pack.
*/
@JvmName("sxjrqxxnijpdgxcp")
public suspend fun tags(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tags = mapped
}
/**
* @param values A mapping of tags which should be assigned to the Log Analytics Query Pack.
*/
@JvmName("clvoucmwfinutbim")
public fun tags(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.tags = mapped
}
internal fun build(): QueryPackArgs = QueryPackArgs(
location = location,
name = name,
resourceGroupName = resourceGroupName,
tags = tags,
)
}