amlsdk
No long description provided.
Installation
dagger install github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254cEntrypoint
Return Type
Amlsdk Example
dagger -m github.com/ibuildthecloud/daggerverse/amlsdk@214762c0b6c5b6510cfa70e35be22118840d254c call \
func (m *MyModule) Example() *dagger.Amlsdk {
return dag.
Amlsdk()
}@function
def example() -> dagger.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-runtimefunc (m *MyModule) Example(modSource , subPath , introspectionJson ) {
return dag.
Amlsdk().
Moduleruntime(modSource, subPath, introspectionJson)
}@function
def example(modsource: , subpath: , introspectionjson: ) -> :
return (
dag.amlsdk()
.moduleruntime(modsource, subpath, introspectionjson)
)@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 \
codegenfunc (m *MyModule) Example(modSource , subPath , introspectionJson ) {
return dag.
Amlsdk().
Codegen(modSource, subPath, introspectionJson)
}@function
def example(modsource: , subpath: , introspectionjson: ) -> :
return (
dag.amlsdk()
.codegen(modsource, subpath, introspectionjson)
)@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 \
basefunc (m *MyModule) Example() {
return dag.
Amlsdk().
Base()
}@function
def example() -> :
return (
dag.amlsdk()
.base()
)@func()
example(): {
return dag
.amlsdk()
.base()
}