AccessBookmarkArgs

data class AccessBookmarkArgs(val accountId: Output<String>? = null, val appLauncherVisible: Output<Boolean>? = null, val domain: Output<String>? = null, val logoUrl: Output<String>? = null, val name: Output<String>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<AccessBookmarkArgs>

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.AccessBookmark;
import com.pulumi.cloudflare.AccessBookmarkArgs;
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 myBookmarkApp = new AccessBookmark("myBookmarkApp", AccessBookmarkArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.appLauncherVisible(true)
.domain("example.com")
.logoUrl("https://example.com/example.png")
.name("My Bookmark App")
.build());
}
}

Import

$ pulumi import cloudflare:index/accessBookmark:AccessBookmark example <account_id>/<bookmark_id>

Constructors

Link copied to clipboard
constructor(accountId: Output<String>? = null, appLauncherVisible: Output<Boolean>? = null, domain: Output<String>? = null, logoUrl: Output<String>? = null, name: Output<String>? = null, zoneId: Output<String>? = null)

Properties

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

The account identifier to target for the resource. Conflicts with zone_id.

Link copied to clipboard
val appLauncherVisible: Output<Boolean>? = null

Option to show/hide the bookmark in the app launcher. Defaults to true.

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

The domain of the bookmark application. Can include subdomains, paths, or both.

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

The image URL for the logo shown in the app launcher dashboard.

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

Name of the bookmark application.

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

The zone identifier to target for the resource. Conflicts with account_id.

Functions

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