Dagger
Search

custom-api-tool

No long description provided.

Installation

dagger install github.com/orvis98/custom-api-tool@c91246fb8187db1ecbe7f68454bfb7c924bae355

Entrypoint

Return Type
CustomApiTool
Example
dagger -m github.com/orvis98/custom-api-tool@c91246fb8187db1ecbe7f68454bfb7c924bae355 call \
func (m *myModule) example() *CustomApiTool  {
	return dag.
			CustomApiTool()
}
@function
def example() -> dag.CustomApiTool:
	return (
		dag.custom_api_tool()
	)
@func()
example(): CustomApiTool {
	return dag
		.customApiTool()
}

Types

CustomApiTool 🔗

cue() 🔗

A container with CUE and a source directory.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -No description provided
Example
dagger -m github.com/orvis98/custom-api-tool@c91246fb8187db1ecbe7f68454bfb7c924bae355 call \
 cue
func (m *myModule) example() *Container  {
	return dag.
			CustomApiTool().
			Cue()
}
@function
def example() -> dagger.Container:
	return (
		dag.custom_api_tool()
		.cue()
	)
@func()
example(): Container {
	return dag
		.customApiTool()
		.cue()
}

genXrd() 🔗

Generate and print an XRD from a CustomAPI definition.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
apiFile !-No description provided
sourceDirectory -No description provided
Example
dagger -m github.com/orvis98/custom-api-tool@c91246fb8187db1ecbe7f68454bfb7c924bae355 call \
 gen-xrd --api file:path
func (m *myModule) example(ctx context.Context, api *File) string  {
	return dag.
			CustomApiTool().
			GenXrd(ctx, api)
}
@function
async def example(api: dagger.File) -> str:
	return await (
		dag.custom_api_tool()
		.gen_xrd(api)
	)
@func()
async example(api: File): Promise<string> {
	return dag
		.customApiTool()
		.genXrd(api)
}

genCompositions() 🔗

Generate and print Compositions from a CustomAPI definition.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
apiFile !-No description provided
sourceDirectory -No description provided
Example
dagger -m github.com/orvis98/custom-api-tool@c91246fb8187db1ecbe7f68454bfb7c924bae355 call \
 gen-compositions --api file:path
func (m *myModule) example(ctx context.Context, api *File) string  {
	return dag.
			CustomApiTool().
			GenCompositions(ctx, api)
}
@function
async def example(api: dagger.File) -> str:
	return await (
		dag.custom_api_tool()
		.gen_compositions(api)
	)
@func()
async example(api: File): Promise<string> {
	return dag
		.customApiTool()
		.genCompositions(api)
}

gen() 🔗

Generate and print XRD and Compositions from a CustomAPI definition.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
apiFile !-No description provided
sourceDirectory -No description provided
Example
dagger -m github.com/orvis98/custom-api-tool@c91246fb8187db1ecbe7f68454bfb7c924bae355 call \
 gen --api file:path
func (m *myModule) example(ctx context.Context, api *File) string  {
	return dag.
			CustomApiTool().
			Gen(ctx, api)
}
@function
async def example(api: dagger.File) -> str:
	return await (
		dag.custom_api_tool()
		.gen(api)
	)
@func()
async example(api: File): Promise<string> {
	return dag
		.customApiTool()
		.gen(api)
}

test() 🔗

Test a CustomAPI using a manifest and print the result.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
manifestFile !-No description provided
apiFile !-No description provided
sourceDirectory -No description provided
Example
dagger -m github.com/orvis98/custom-api-tool@c91246fb8187db1ecbe7f68454bfb7c924bae355 call \
 test --manifest file:path --api file:path
func (m *myModule) example(ctx context.Context, manifest *File, api *File) string  {
	return dag.
			CustomApiTool().
			Test(ctx, manifest, api)
}
@function
async def example(manifest: dagger.File, api: dagger.File) -> str:
	return await (
		dag.custom_api_tool()
		.test(manifest, api)
	)
@func()
async example(manifest: File, api: File): Promise<string> {
	return dag
		.customApiTool()
		.test(manifest, api)
}