Dagger
Search

launchdarkly

No long description provided.

Installation

dagger install github.com/levlaz/daggerverse/launchdarkly@57cbc7fcd528163cb7b8dd5420eaae910cf2ba19

Entrypoint

Return Type
Launchdarkly
Example
func (m *myModule) example() *Launchdarkly  {
	return dag.
			Launchdarkly()
}
@function
def example() -> dag.Launchdarkly:
	return (
		dag.launchdarkly()
	)
@func()
example(): Launchdarkly {
	return dag
		.launchdarkly()
}

Types

Launchdarkly

launchdarklyVersion()

LaunchDarkly Container version (default: latest)

Return Type
StringKind !
Example
Function Launchdarkly.LaunchdarklyVersion is not accessible from the launchdarkly module
func (m *myModule) example()   {
	return dag.
			Launchdarkly().
			LaunchdarklyVersion()
}
@function
def example() -> :
	return (
		dag.launchdarkly()
		.launchdarkly_version()
	)
@func()
example():  {
	return dag
		.launchdarkly()
		.launchdarklyVersion()
}

token()

LaunchDarkly token

Return Type
Secret !
Example
Function Launchdarkly.Token is not accessible from the launchdarkly module
func (m *myModule) example()   {
	return dag.
			Launchdarkly().
			Token()
}
@function
def example() -> :
	return (
		dag.launchdarkly()
		.token()
	)
@func()
example():  {
	return dag
		.launchdarkly()
		.token()
}

directory()

LaunchDarkly directory to scan (dir)

Return Type
Directory !
Example
Function Launchdarkly.Directory is not accessible from the launchdarkly module
func (m *myModule) example()   {
	return dag.
			Launchdarkly().
			Directory()
}
@function
def example() -> :
	return (
		dag.launchdarkly()
		.directory()
	)
@func()
example():  {
	return dag
		.launchdarkly()
		.directory()
}

project()

LaunchDarkly project id (projKey)

Return Type
StringKind !
Example
Function Launchdarkly.Project is not accessible from the launchdarkly module
func (m *myModule) example()   {
	return dag.
			Launchdarkly().
			Project()
}
@function
def example() -> :
	return (
		dag.launchdarkly()
		.project()
	)
@func()
example():  {
	return dag
		.launchdarkly()
		.project()
}

repo()

LaunchDarkly repo name (repoName)

Return Type
StringKind !
Example
Function Launchdarkly.Repo is not accessible from the launchdarkly module
func (m *myModule) example()   {
	return dag.
			Launchdarkly().
			Repo()
}
@function
def example() -> :
	return (
		dag.launchdarkly()
		.repo()
	)
@func()
example():  {
	return dag
		.launchdarkly()
		.repo()
}

find()

example usage: “dagger call find –token \(LD_ACCESS_TOKEN --project \)LD_PROJ_KEY –repo $LD_REPO_NAME –directory .”

Return Type
StringKind !
Arguments
NameTypeDefault ValueDescription
launchdarklyVersionStringKind -No description provided
tokenSecret !-No description provided
directoryDirectory !-No description provided
projectStringKind !-No description provided
repoStringKind !-No description provided
Example
Function Launchdarkly.find is not accessible from the launchdarkly module
func (m *myModule) example(token , directory , project , repo )   {
	return dag.
			Launchdarkly().
			Find(token, directory, project, repo)
}
@function
def example(token: , directory: , project: , repo: ) -> :
	return (
		dag.launchdarkly()
		.find(token, directory, project, repo)
	)
@func()
example(token: , directory: , project: , repo: ):  {
	return dag
		.launchdarkly()
		.find(token, directory, project, repo)
}