com.pulumi.cloudflare.kotlin.LogpushOwnershipChallenge.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin
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
/**
* Builder for [LogpushOwnershipChallenge].
*/
@PulumiTagMarker
public class LogpushOwnershipChallengeResourceBuilder internal constructor() {
public var name: String? = null
public var args: LogpushOwnershipChallengeArgs = LogpushOwnershipChallengeArgs()
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 LogpushOwnershipChallengeArgsBuilder.() -> Unit) {
val builder = LogpushOwnershipChallengeArgsBuilder()
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(): LogpushOwnershipChallenge {
val builtJavaResource = com.pulumi.cloudflare.LogpushOwnershipChallenge(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return LogpushOwnershipChallenge(builtJavaResource)
}
}
/**
* Provides a resource which manages Cloudflare Logpush ownership
* challenges to use in a Logpush Job. On it's own, doesn't do much
* however this resource should be used in conjunction to create
* Logpush jobs.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as cloudflare from "@pulumi/cloudflare";
* const example = new cloudflare.LogpushOwnershipChallenge("example", {
* zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
* destinationConf: "s3://my-bucket-path?region=us-west-2",
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* example = cloudflare.LogpushOwnershipChallenge("example",
* zone_id="0da42c8d2132a9ddaf714f9e7c920711",
* destination_conf="s3://my-bucket-path?region=us-west-2")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var example = new Cloudflare.LogpushOwnershipChallenge("example", new()
* {
* ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
* DestinationConf = "s3://my-bucket-path?region=us-west-2",
* });
* });
* ```
* ```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.NewLogpushOwnershipChallenge(ctx, "example", &cloudflare.LogpushOwnershipChallengeArgs{
* ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
* DestinationConf: pulumi.String("s3://my-bucket-path?region=us-west-2"),
* })
* 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.LogpushOwnershipChallenge;
* import com.pulumi.cloudflare.LogpushOwnershipChallengeArgs;
* 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 LogpushOwnershipChallenge("example", LogpushOwnershipChallengeArgs.builder()
* .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
* .destinationConf("s3://my-bucket-path?region=us-west-2")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: cloudflare:LogpushOwnershipChallenge
* properties:
* zoneId: 0da42c8d2132a9ddaf714f9e7c920711
* destinationConf: s3://my-bucket-path?region=us-west-2
* ```
*
*/
public class LogpushOwnershipChallenge internal constructor(
override val javaResource: com.pulumi.cloudflare.LogpushOwnershipChallenge,
) : KotlinCustomResource(javaResource, LogpushOwnershipChallengeMapper) {
/**
* The account identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
*/
public val accountId: Output?
get() = javaResource.accountId().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Uniquely identifies a resource (such as an s3 bucket) where data will be pushed. Additional configuration parameters supported by the destination may be included. See [Logpush destination documentation](https://developers.cloudflare.com/logs/logpush/logpush-configuration-api/understanding-logpush-api/#destination). **Modifying this attribute will force creation of a new resource.**
*/
public val destinationConf: Output
get() = javaResource.destinationConf().applyValue({ args0 -> args0 })
/**
* The filename of the ownership challenge which contains the contents required for Logpush Job creation.
*/
public val ownershipChallengeFilename: Output
get() = javaResource.ownershipChallengeFilename().applyValue({ args0 -> args0 })
/**
* The zone identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
*/
public val zoneId: Output?
get() = javaResource.zoneId().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
}
public object LogpushOwnershipChallengeMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.cloudflare.LogpushOwnershipChallenge::class == javaResource::class
override fun map(javaResource: Resource): LogpushOwnershipChallenge =
LogpushOwnershipChallenge(javaResource as com.pulumi.cloudflare.LogpushOwnershipChallenge)
}
/**
* @see [LogpushOwnershipChallenge].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [LogpushOwnershipChallenge].
*/
public suspend fun logpushOwnershipChallenge(
name: String,
block: suspend LogpushOwnershipChallengeResourceBuilder.() -> Unit,
): LogpushOwnershipChallenge {
val builder = LogpushOwnershipChallengeResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [LogpushOwnershipChallenge].
* @param name The _unique_ name of the resulting resource.
*/
public fun logpushOwnershipChallenge(name: String): LogpushOwnershipChallenge {
val builder = LogpushOwnershipChallengeResourceBuilder()
builder.name(name)
return builder.build()
}