package
1.54.0
Repository: https://github.com/lacework/go-sdk.git
Documentation: pkg.go.dev

# README

Lacework Domain

Use this package to disseminate a domain URL into account, cluster and whether or not it is an internal account.

Usage

Download the library into your $GOPATH:

$ go get github.com/lacework/go-sdk/lwdomain

Import the library into your tool:

import "github.com/lacework/go-sdk/lwdomain"

Examples

The following URL https://account.lacework.net would be disseminated into:

  • account as the account name
package main

import (
	"fmt"
	"os"

	"github.com/lacework/go-sdk/lwdomain"
)

func main() {
	domain, err := lwdomain.New("https://account.lacework.net")
	if err != nil {
		fmt.Printf("Error %s\n", err)
		os.Exit(1)
	}

	// Output: Lacework Account Name: account
	fmt.Println("Lacework Account Name: %s", domain.Account)
}

# Functions

New returns domain information from the provided URL For instance, the following URL: d, err := lwdomain.New("https://account.lacework.net") Would be disseminated into: - `account` as the account name - `fra` as the cluster name.