amlsdk
No long description provided.
Installation
dagger install github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254c
Entrypoint
Return Type
Amlsdk
Example
dagger -m github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254c call \
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
Name | Type | Default Value | Description |
---|---|---|---|
modSource | Directory ! | - | No description provided |
subPath | StringKind ! | - | No description provided |
introspectionJson | StringKind ! | - | No description provided |
Example
dagger -m github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254c call \
module-runtime
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
Name | Type | Default Value | Description |
---|---|---|---|
modSource | Directory ! | - | No description provided |
subPath | StringKind ! | - | No description provided |
introspectionJson | StringKind ! | - | No description provided |
Example
dagger -m github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254c call \
codegen
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
dagger -m github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254c call \
base
func (m *myModule) example() {
return dag.
Amlsdk().
Base()
}
@function
def example() -> :
return (
dag.amlsdk()
.base()
)
@func()
example(): {
return dag
.amlsdk()
.base()
}