LogpushOwnershipChallenge

class LogpushOwnershipChallenge : KotlinCustomResource

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleLogpushOwnershipChallenge = new cloudflare.LogpushOwnershipChallenge("example_logpush_ownership_challenge", {
destinationConf: "s3://mybucket/logs?region=us-west-2",
zoneId: "zone_id",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_logpush_ownership_challenge = cloudflare.LogpushOwnershipChallenge("example_logpush_ownership_challenge",
destination_conf="s3://mybucket/logs?region=us-west-2",
zone_id="zone_id")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleLogpushOwnershipChallenge = new Cloudflare.LogpushOwnershipChallenge("example_logpush_ownership_challenge", new()
{
DestinationConf = "s3://mybucket/logs?region=us-west-2",
ZoneId = "zone_id",
});
});
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewLogpushOwnershipChallenge(ctx, "example_logpush_ownership_challenge", &cloudflare.LogpushOwnershipChallengeArgs{
DestinationConf: pulumi.String("s3://mybucket/logs?region=us-west-2"),
ZoneId: pulumi.String("zone_id"),
})
if err != nil {
return err
}
return nil
})
}
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 exampleLogpushOwnershipChallenge = new LogpushOwnershipChallenge("exampleLogpushOwnershipChallenge", LogpushOwnershipChallengeArgs.builder()
.destinationConf("s3://mybucket/logs?region=us-west-2")
.zoneId("zone_id")
.build());
}
}
resources:
exampleLogpushOwnershipChallenge:
type: cloudflare:LogpushOwnershipChallenge
name: example_logpush_ownership_challenge
properties:
destinationConf: s3://mybucket/logs?region=us-west-2
zoneId: zone_id

Properties

Link copied to clipboard
val accountId: Output<String>?

The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.

Link copied to clipboard
val destinationConf: Output<String>

Uniquely identifies a resource (such as an s3 bucket) where data will be pushed. Additional configuration parameters supported by the destination may be included.

Link copied to clipboard
val filename: Output<String>
Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val message: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val valid: Output<Boolean>
Link copied to clipboard
val zoneId: Output<String>?

The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.