Dagger
Search

encircle

No long description provided.

Installation

dagger install github.com/kpenfound/dagger-modules/encircle@5f1da981030dfc8931b0543190369301926bf003

Entrypoint

Return Type
Encircle
Example
dagger -m github.com/kpenfound/dagger-modules/encircle@5f1da981030dfc8931b0543190369301926bf003 call \
func (m *MyModule) Example() *dagger.Encircle  {
	return dag.
			Encircle()
}
@function
def example() -> dagger.Encircle:
	return (
		dag.encircle()
	)
@func()
example(): Encircle {
	return dag
		.encircle()
}

Types

Encircle 🔗

myFunction() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
stringArgString !-No description provided
Example
dagger -m github.com/kpenfound/dagger-modules/encircle@5f1da981030dfc8931b0543190369301926bf003 call \
 my-function --string-arg string
func (m *MyModule) Example(stringArg string) *dagger.Container  {
	return dag.
			Encircle().
			MyFunction(stringArg)
}
@function
def example(string_arg: str) -> dagger.Container:
	return (
		dag.encircle()
		.my_function(string_arg)
	)
@func()
example(stringArg: string): Container {
	return dag
		.encircle()
		.myFunction(stringArg)
}

encircleJob() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
dDirectory !-No description provided
jobString !-No description provided
Example
dagger -m github.com/kpenfound/dagger-modules/encircle@5f1da981030dfc8931b0543190369301926bf003 call \
 encircle-job --d DIR_PATH --job string
func (m *MyModule) Example(ctx context.Context, d *dagger.Directory, job string) string  {
	return dag.
			Encircle().
			EncircleJob(ctx, d, job)
}
@function
async def example(d: dagger.Directory, job: str) -> str:
	return await (
		dag.encircle()
		.encircle_job(d, job)
	)
@func()
async example(d: Directory, job: string): Promise<string> {
	return dag
		.encircle()
		.encircleJob(d, job)
}

encircleWorkflow() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
dDirectory !-No description provided
workflowString !-No description provided
Example
dagger -m github.com/kpenfound/dagger-modules/encircle@5f1da981030dfc8931b0543190369301926bf003 call \
 encircle-workflow --d DIR_PATH --workflow string
func (m *MyModule) Example(ctx context.Context, d *dagger.Directory, workflow string) string  {
	return dag.
			Encircle().
			EncircleWorkflow(ctx, d, workflow)
}
@function
async def example(d: dagger.Directory, workflow: str) -> str:
	return await (
		dag.encircle()
		.encircle_workflow(d, workflow)
	)
@func()
async example(d: Directory, workflow: string): Promise<string> {
	return dag
		.encircle()
		.encircleWorkflow(d, workflow)
}