com.pulumi.cloudflare.kotlin.LogpullRetention.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 [LogpullRetention].
*/
@PulumiTagMarker
public class LogpullRetentionResourceBuilder internal constructor() {
public var name: String? = null
public var args: LogpullRetentionArgs = LogpullRetentionArgs()
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 LogpullRetentionArgsBuilder.() -> Unit) {
val builder = LogpullRetentionArgsBuilder()
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(): LogpullRetention {
val builtJavaResource = com.pulumi.cloudflare.LogpullRetention(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return LogpullRetention(builtJavaResource)
}
}
/**
* Allows management of the Logpull Retention settings used to control whether or not to retain HTTP request logs.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as cloudflare from "@pulumi/cloudflare";
* const example = new cloudflare.LogpullRetention("example", {
* zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
* enabled: true,
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* example = cloudflare.LogpullRetention("example",
* zone_id="0da42c8d2132a9ddaf714f9e7c920711",
* enabled=True)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var example = new Cloudflare.LogpullRetention("example", new()
* {
* ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
* Enabled = true,
* });
* });
* ```
* ```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.NewLogpullRetention(ctx, "example", &cloudflare.LogpullRetentionArgs{
* ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
* Enabled: pulumi.Bool(true),
* })
* 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.LogpullRetention;
* import com.pulumi.cloudflare.LogpullRetentionArgs;
* 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 LogpullRetention("example", LogpullRetentionArgs.builder()
* .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
* .enabled("true")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: cloudflare:LogpullRetention
* properties:
* zoneId: 0da42c8d2132a9ddaf714f9e7c920711
* enabled: 'true'
* ```
*
* ## Import
* ```sh
* $ pulumi import cloudflare:index/logpullRetention:LogpullRetention example
* ```
*/
public class LogpullRetention internal constructor(
override val javaResource: com.pulumi.cloudflare.LogpullRetention,
) : KotlinCustomResource(javaResource, LogpullRetentionMapper) {
/**
* Whether you wish to retain logs or not.
*/
public val enabled: Output
get() = javaResource.enabled().applyValue({ args0 -> args0 })
/**
* The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
public val zoneId: Output
get() = javaResource.zoneId().applyValue({ args0 -> args0 })
}
public object LogpullRetentionMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.cloudflare.LogpullRetention::class == javaResource::class
override fun map(javaResource: Resource): LogpullRetention = LogpullRetention(
javaResource as
com.pulumi.cloudflare.LogpullRetention,
)
}
/**
* @see [LogpullRetention].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [LogpullRetention].
*/
public suspend fun logpullRetention(
name: String,
block: suspend LogpullRetentionResourceBuilder.() -> Unit,
): LogpullRetention {
val builder = LogpullRetentionResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [LogpullRetention].
* @param name The _unique_ name of the resulting resource.
*/
public fun logpullRetention(name: String): LogpullRetention {
val builder = LogpullRetentionResourceBuilder()
builder.name(name)
return builder.build()
}