All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.eventgrid.kotlin.Topic.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.eventgrid.kotlin

import com.pulumi.azure.eventgrid.kotlin.outputs.TopicIdentity
import com.pulumi.azure.eventgrid.kotlin.outputs.TopicInboundIpRule
import com.pulumi.azure.eventgrid.kotlin.outputs.TopicInputMappingDefaultValues
import com.pulumi.azure.eventgrid.kotlin.outputs.TopicInputMappingFields
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.azure.eventgrid.kotlin.outputs.TopicIdentity.Companion.toKotlin as topicIdentityToKotlin
import com.pulumi.azure.eventgrid.kotlin.outputs.TopicInboundIpRule.Companion.toKotlin as topicInboundIpRuleToKotlin
import com.pulumi.azure.eventgrid.kotlin.outputs.TopicInputMappingDefaultValues.Companion.toKotlin as topicInputMappingDefaultValuesToKotlin
import com.pulumi.azure.eventgrid.kotlin.outputs.TopicInputMappingFields.Companion.toKotlin as topicInputMappingFieldsToKotlin

/**
 * Builder for [Topic].
 */
@PulumiTagMarker
public class TopicResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: TopicArgs = TopicArgs()

    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 TopicArgsBuilder.() -> Unit) {
        val builder = TopicArgsBuilder()
        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.opts(block)
    }

    internal fun build(): Topic {
        val builtJavaResource = com.pulumi.azure.eventgrid.Topic(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return Topic(builtJavaResource)
    }
}

/**
 * Manages an EventGrid Topic
 * > **Note:** at this time EventGrid Topic's are only available in a limited number of regions.
 * ## Example Usage
 * ```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.eventgrid.Topic;
 * import com.pulumi.azure.eventgrid.TopicArgs;
 * 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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
 *             .location("West Europe")
 *             .build());
 *         var exampleTopic = new Topic("exampleTopic", TopicArgs.builder()
 *             .location(exampleResourceGroup.location())
 *             .resourceGroupName(exampleResourceGroup.name())
 *             .tags(Map.of("environment", "Production"))
 *             .build());
 *     }
 * }
 * ```
 * ## Import
 * EventGrid Topic's can be imported using the `resource id`, e.g.
 * ```sh
 *  $ pulumi import azure:eventgrid/topic:Topic topic1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.EventGrid/topics/topic1
 * ```
 *
 */
public class Topic internal constructor(
    override val javaResource: com.pulumi.azure.eventgrid.Topic,
) : KotlinCustomResource(javaResource, TopicMapper) {
    /**
     * The Endpoint associated with the EventGrid Topic.
     */
    public val endpoint: Output
        get() = javaResource.endpoint().applyValue({ args0 -> args0 })

    /**
     * An `identity` block as defined below.
     */
    public val identity: Output?
        get() = javaResource.identity().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    topicIdentityToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * One or more `inbound_ip_rule` blocks as defined below.
     */
    public val inboundIpRules: Output>?
        get() = javaResource.inboundIpRules().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 ->
                        topicInboundIpRuleToKotlin(args0)
                    })
                })
            }).orElse(null)
        })

    /**
     * A `input_mapping_default_values` block as defined below. Changing this forces a new resource to be created.
     */
    public val inputMappingDefaultValues: Output?
        get() = javaResource.inputMappingDefaultValues().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> topicInputMappingDefaultValuesToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * A `input_mapping_fields` block as defined below. Changing this forces a new resource to be created.
     */
    public val inputMappingFields: Output?
        get() = javaResource.inputMappingFields().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> topicInputMappingFieldsToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
     */
    public val inputSchema: Output?
        get() = javaResource.inputSchema().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Whether local authentication methods is enabled for the EventGrid Topic. Defaults to `true`.
     */
    public val localAuthEnabled: Output?
        get() = javaResource.localAuthEnabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
     */
    public val location: Output
        get() = javaResource.location().applyValue({ args0 -> args0 })

    /**
     * Specifies the name of the EventGrid Topic resource. Changing this forces a new resource to be created.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * The Primary Shared Access Key associated with the EventGrid Topic.
     */
    public val primaryAccessKey: Output
        get() = javaResource.primaryAccessKey().applyValue({ args0 -> args0 })

    /**
     * Whether or not public network access is allowed for this server. Defaults to `true`.
     */
    public val publicNetworkAccessEnabled: Output?
        get() = javaResource.publicNetworkAccessEnabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The name of the resource group in which the EventGrid Topic exists. Changing this forces a new resource to be created.
     */
    public val resourceGroupName: Output
        get() = javaResource.resourceGroupName().applyValue({ args0 -> args0 })

    /**
     * The Secondary Shared Access Key associated with the EventGrid Topic.
     */
    public val secondaryAccessKey: Output
        get() = javaResource.secondaryAccessKey().applyValue({ args0 -> args0 })

    /**
     * A mapping of tags to assign to 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)
        })
}

public object TopicMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.azure.eventgrid.Topic::class == javaResource::class

    override fun map(javaResource: Resource): Topic = Topic(
        javaResource as
            com.pulumi.azure.eventgrid.Topic,
    )
}

/**
 * @see [Topic].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [Topic].
 */
public suspend fun topic(name: String, block: suspend TopicResourceBuilder.() -> Unit): Topic {
    val builder = TopicResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [Topic].
 * @param name The _unique_ name of the resulting resource.
 */
public fun topic(name: String): Topic {
    val builder = TopicResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy