![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.LogpushOwnershipChallengeArgs.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.cloudflare.LogpushOwnershipChallengeArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* 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
* ```
*
* @property accountId The account identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
* @property destinationConf 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.**
* @property zoneId The zone identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
*/
public data class LogpushOwnershipChallengeArgs(
public val accountId: Output? = null,
public val destinationConf: Output? = null,
public val zoneId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.LogpushOwnershipChallengeArgs =
com.pulumi.cloudflare.LogpushOwnershipChallengeArgs.builder()
.accountId(accountId?.applyValue({ args0 -> args0 }))
.destinationConf(destinationConf?.applyValue({ args0 -> args0 }))
.zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LogpushOwnershipChallengeArgs].
*/
@PulumiTagMarker
public class LogpushOwnershipChallengeArgsBuilder internal constructor() {
private var accountId: Output? = null
private var destinationConf: Output? = null
private var zoneId: Output? = null
/**
* @param value The account identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
*/
@JvmName("rqwcgmnmtalcfbja")
public suspend fun accountId(`value`: Output) {
this.accountId = value
}
/**
* @param value 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.**
*/
@JvmName("ticgjunnwydmsvvr")
public suspend fun destinationConf(`value`: Output) {
this.destinationConf = value
}
/**
* @param value The zone identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
*/
@JvmName("tnrhqhjgepqyncbq")
public suspend fun zoneId(`value`: Output) {
this.zoneId = value
}
/**
* @param value The account identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
*/
@JvmName("qhhhwkcmdoscqskx")
public suspend fun accountId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.accountId = mapped
}
/**
* @param value 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.**
*/
@JvmName("ilqdxfguvajboiir")
public suspend fun destinationConf(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.destinationConf = mapped
}
/**
* @param value The zone identifier to target for the resource. Must provide only one of `account_id`, `zone_id`.
*/
@JvmName("leiwcubrqkhispic")
public suspend fun zoneId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.zoneId = mapped
}
internal fun build(): LogpushOwnershipChallengeArgs = LogpushOwnershipChallengeArgs(
accountId = accountId,
destinationConf = destinationConf,
zoneId = zoneId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy