LogpullRetention
Allows management of the Logpull Retention settings used to control whether or not to retain HTTP request logs.
Example Usage
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
class MyStack : Stack
{
public MyStack()
{
var example = new Cloudflare.LogpullRetention("example", new Cloudflare.LogpullRetentionArgs
{
Enabled = true,
ZoneId = "fb54f084ca7f7b732d3d3ecbd8ef7bf2",
});
}
}
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v2/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewLogpullRetention(ctx, "example", &cloudflare.LogpullRetentionArgs{
Enabled: pulumi.Bool(true),
ZoneId: pulumi.String("fb54f084ca7f7b732d3d3ecbd8ef7bf2"),
})
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.LogpullRetention("example",
enabled=True,
zone_id="fb54f084ca7f7b732d3d3ecbd8ef7bf2")
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.LogpullRetention("example", {
enabled: true,
zoneId: "fb54f084ca7f7b732d3d3ecbd8ef7bf2",
});
Create a LogpullRetention Resource
new LogpullRetention(name: string, args: LogpullRetentionArgs, opts?: CustomResourceOptions);
def LogpullRetention(resource_name: str, opts: Optional[ResourceOptions] = None, enabled: Optional[bool] = None, zone_id: Optional[str] = None)
func NewLogpullRetention(ctx *Context, name string, args LogpullRetentionArgs, opts ...ResourceOption) (*LogpullRetention, error)
public LogpullRetention(string name, LogpullRetentionArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args LogpullRetentionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args LogpullRetentionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogpullRetentionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
LogpullRetention Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The LogpullRetention resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the LogpullRetention resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
Look up an Existing LogpullRetention Resource
Get an existing LogpullRetention resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: LogpullRetentionState, opts?: CustomResourceOptions): LogpullRetention
@staticmethod
def get(resource_name: str, id: str, opts: Optional[ResourceOptions] = None, enabled: Optional[bool] = None, zone_id: Optional[str] = None) -> LogpullRetention
func GetLogpullRetention(ctx *Context, name string, id IDInput, state *LogpullRetentionState, opts ...ResourceOption) (*LogpullRetention, error)
public static LogpullRetention Get(string name, Input<string> id, LogpullRetentionState? state, CustomResourceOptions? opts = null)
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
Import
You can import existing Logpull Retention using the zone ID as the identifier.
$ pulumi import cloudflare:index/logpullRetention:LogpullRetention example fb54f084ca7f7b732d3d3ecbd8ef7bf2
Package Details
- Repository
- https://github.com/pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.