AccessBookmark

class AccessBookmark : KotlinCustomResource

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>

Properties

Link copied to clipboard
val accountId: Output<String>

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

Link copied to clipboard

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

Link copied to clipboard
val domain: Output<String>

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

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

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

Link copied to clipboard
val name: Output<String>

Name of the bookmark application.

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 zoneId: Output<String>

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