Dagger
Search

amlsdk

No long description provided.

Installation

dagger install github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254c

Entrypoint

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

Types

Amlsdk

moduleRuntime()

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
modSourceDirectory !-No description provided
subPathStringKind !-No description provided
introspectionJsonStringKind !-No description provided
Example
Function Amlsdk.moduleRuntime is not accessible from the amlsdk module
func (m *myModule) example(modSource , subPath , introspectionJson )   {
	return dag.
			Amlsdk().
			ModuleRuntime(modSource, subPath, introspectionJson)
}
@function
def example(mod_source: , sub_path: , introspection_json: ) -> :
	return (
		dag.amlsdk()
		.module_runtime(mod_source, sub_path, introspection_json)
	)
@func()
example(modSource: , subPath: , introspectionJson: ):  {
	return dag
		.amlsdk()
		.moduleRuntime(modSource, subPath, introspectionJson)
}

codegen()

Return Type
GeneratedCode !
Arguments
NameTypeDefault ValueDescription
modSourceDirectory !-No description provided
subPathStringKind !-No description provided
introspectionJsonStringKind !-No description provided
Example
Function Amlsdk.codegen is not accessible from the amlsdk module
func (m *myModule) example(modSource , subPath , introspectionJson )   {
	return dag.
			Amlsdk().
			Codegen(modSource, subPath, introspectionJson)
}
@function
def example(mod_source: , sub_path: , introspection_json: ) -> :
	return (
		dag.amlsdk()
		.codegen(mod_source, sub_path, introspection_json)
	)
@func()
example(modSource: , subPath: , introspectionJson: ):  {
	return dag
		.amlsdk()
		.codegen(modSource, subPath, introspectionJson)
}

base()

Return Type
Container !
Example
Function Amlsdk.base is not accessible from the amlsdk module
func (m *myModule) example()   {
	return dag.
			Amlsdk().
			Base()
}
@function
def example() -> :
	return (
		dag.amlsdk()
		.base()
	)
@func()
example():  {
	return dag
		.amlsdk()
		.base()
}