ListArgs

data class ListArgs(val accountId: Output<String>? = null, val description: Output<String>? = null, val items: Output<List<ListItemArgs>>? = null, val kind: Output<String>? = null, val name: Output<String>? = null) : ConvertibleToJava<ListArgs>

Example Usage

Import

$ pulumi import cloudflare:index/list:List example <account_id>/<list_id>

Constructors

Link copied to clipboard
constructor(accountId: Output<String>? = null, description: Output<String>? = null, items: Output<List<ListItemArgs>>? = null, kind: Output<String>? = null, name: Output<String>? = null)

Properties

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

The account identifier to target for the resource.

Link copied to clipboard
val description: Output<String>? = null

An optional description of the list.

Link copied to clipboard
val items: Output<List<ListItemArgs>>? = null

The items in the list.

Link copied to clipboard
val kind: Output<String>? = null

The type of items the list will contain. Must provide only one of: ip, redirect, hostname, asn..

Link copied to clipboard
val name: Output<String>? = null

The name of the list.

Functions

Link copied to clipboard
open override fun toJava(): ListArgs