com.pulumi.cloudflare.kotlin.EmailRoutingCatchAll.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin
import com.pulumi.cloudflare.kotlin.outputs.EmailRoutingCatchAllAction
import com.pulumi.cloudflare.kotlin.outputs.EmailRoutingCatchAllMatcher
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 com.pulumi.cloudflare.kotlin.outputs.EmailRoutingCatchAllAction.Companion.toKotlin as emailRoutingCatchAllActionToKotlin
import com.pulumi.cloudflare.kotlin.outputs.EmailRoutingCatchAllMatcher.Companion.toKotlin as emailRoutingCatchAllMatcherToKotlin
/**
* Builder for [EmailRoutingCatchAll].
*/
@PulumiTagMarker
public class EmailRoutingCatchAllResourceBuilder internal constructor() {
public var name: String? = null
public var args: EmailRoutingCatchAllArgs = EmailRoutingCatchAllArgs()
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 EmailRoutingCatchAllArgsBuilder.() -> Unit) {
val builder = EmailRoutingCatchAllArgsBuilder()
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(): EmailRoutingCatchAll {
val builtJavaResource = com.pulumi.cloudflare.EmailRoutingCatchAll(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return EmailRoutingCatchAll(builtJavaResource)
}
}
/**
* Provides a resource for managing Email Routing Addresses catch all behaviour.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as cloudflare from "@pulumi/cloudflare";
* const example = new cloudflare.EmailRoutingCatchAll("example", {
* zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
* name: "example catch all",
* enabled: true,
* matchers: [{
* type: "all",
* }],
* actions: [{
* type: "forward",
* values: ["destinationaddress@example.net"],
* }],
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* example = cloudflare.EmailRoutingCatchAll("example",
* zone_id="0da42c8d2132a9ddaf714f9e7c920711",
* name="example catch all",
* enabled=True,
* matchers=[{
* "type": "all",
* }],
* actions=[{
* "type": "forward",
* "values": ["destinationaddress@example.net"],
* }])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var example = new Cloudflare.EmailRoutingCatchAll("example", new()
* {
* ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
* Name = "example catch all",
* Enabled = true,
* Matchers = new[]
* {
* new Cloudflare.Inputs.EmailRoutingCatchAllMatcherArgs
* {
* Type = "all",
* },
* },
* Actions = new[]
* {
* new Cloudflare.Inputs.EmailRoutingCatchAllActionArgs
* {
* Type = "forward",
* Values = new[]
* {
* "[email protected]",
* },
* },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := cloudflare.NewEmailRoutingCatchAll(ctx, "example", &cloudflare.EmailRoutingCatchAllArgs{
* ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
* Name: pulumi.String("example catch all"),
* Enabled: pulumi.Bool(true),
* Matchers: cloudflare.EmailRoutingCatchAllMatcherArray{
* &cloudflare.EmailRoutingCatchAllMatcherArgs{
* Type: pulumi.String("all"),
* },
* },
* Actions: cloudflare.EmailRoutingCatchAllActionArray{
* &cloudflare.EmailRoutingCatchAllActionArgs{
* Type: pulumi.String("forward"),
* Values: pulumi.StringArray{
* pulumi.String("[email protected]"),
* },
* },
* },
* })
* 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.cloudflare.EmailRoutingCatchAll;
* import com.pulumi.cloudflare.EmailRoutingCatchAllArgs;
* import com.pulumi.cloudflare.inputs.EmailRoutingCatchAllMatcherArgs;
* import com.pulumi.cloudflare.inputs.EmailRoutingCatchAllActionArgs;
* 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 EmailRoutingCatchAll("example", EmailRoutingCatchAllArgs.builder()
* .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
* .name("example catch all")
* .enabled(true)
* .matchers(EmailRoutingCatchAllMatcherArgs.builder()
* .type("all")
* .build())
* .actions(EmailRoutingCatchAllActionArgs.builder()
* .type("forward")
* .values("[email protected]")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: cloudflare:EmailRoutingCatchAll
* properties:
* zoneId: 0da42c8d2132a9ddaf714f9e7c920711
* name: example catch all
* enabled: true
* matchers:
* - type: all
* actions:
* - type: forward
* values:
* - [email protected]
* ```
*
*/
public class EmailRoutingCatchAll internal constructor(
override val javaResource: com.pulumi.cloudflare.EmailRoutingCatchAll,
) : KotlinCustomResource(javaResource, EmailRoutingCatchAllMapper) {
/**
* List actions patterns.
*/
public val actions: Output>
get() = javaResource.actions().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
emailRoutingCatchAllActionToKotlin(args0)
})
})
})
/**
* Routing rule status.
*/
public val enabled: Output?
get() = javaResource.enabled().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Matching patterns to forward to your actions.
*/
public val matchers: Output>
get() = javaResource.matchers().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
emailRoutingCatchAllMatcherToKotlin(args0)
})
})
})
/**
* Routing rule name.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Routing rule identifier.
*/
public val tag: Output
get() = javaResource.tag().applyValue({ args0 -> args0 })
/**
* The zone identifier to target for the resource.
*/
public val zoneId: Output
get() = javaResource.zoneId().applyValue({ args0 -> args0 })
}
public object EmailRoutingCatchAllMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.cloudflare.EmailRoutingCatchAll::class == javaResource::class
override fun map(javaResource: Resource): EmailRoutingCatchAll = EmailRoutingCatchAll(
javaResource
as com.pulumi.cloudflare.EmailRoutingCatchAll,
)
}
/**
* @see [EmailRoutingCatchAll].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [EmailRoutingCatchAll].
*/
public suspend fun emailRoutingCatchAll(
name: String,
block: suspend EmailRoutingCatchAllResourceBuilder.() -> Unit,
): EmailRoutingCatchAll {
val builder = EmailRoutingCatchAllResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [EmailRoutingCatchAll].
* @param name The _unique_ name of the resulting resource.
*/
public fun emailRoutingCatchAll(name: String): EmailRoutingCatchAll {
val builder = EmailRoutingCatchAllResourceBuilder()
builder.name(name)
return builder.build()
}