elixir-sdk
No long description provided.
Installation
dagger install github.com/wingyplus/dagger/sdk/elixir@25c162ef833a8424ef2ad7c8e8e7e85381eb0931
Entrypoint
Return Type
ElixirSdk !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
sdkSourceDir | Directory | - | No description provided |
Example
func (m *myModule) example() *ElixirSdk {
return dag.
ElixirSdk()
}
Types
ElixirSdk 🔗
sdkSourceDir() 🔗
Return Type
Directory !
Example
func (m *myModule) example() *Directory {
return dag.
ElixirSdk().
SdkSourceDir()
}
requiredPaths() 🔗
Return Type
[String ! ] !
Example
func (m *myModule) example(ctx context.Context) []string {
return dag.
ElixirSdk().
RequiredPaths(ctx)
}
container() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
ElixirSdk().
Container()
}
moduleRuntime() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modSource | ModuleSource ! | - | No description provided |
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(modSource *ModuleSource, introspectionJson *File) *Container {
return dag.
ElixirSdk().
ModuleRuntime(modSource, introspectionJson)
}
codegen() 🔗
Return Type
GeneratedCode !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modSource | ModuleSource ! | - | No description provided |
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(modSource *ModuleSource, introspectionJson *File) *GeneratedCode {
return dag.
ElixirSdk().
Codegen(modSource, introspectionJson)
}
common() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modSource | ModuleSource ! | - | No description provided |
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(modSource *ModuleSource, introspectionJson *File) *Container {
return dag.
ElixirSdk().
Common(modSource, introspectionJson)
}
base() 🔗
Return Type
ElixirSdk !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modSource | ModuleSource ! | - | No description provided |
subPath | String ! | - | No description provided |
Example
func (m *myModule) example(modSource *ModuleSource, subPath string) *ElixirSdk {
return dag.
ElixirSdk().
Base(modSource, subPath)
}
withNewElixirPackage() 🔗
Generate a new Elixir package named by modName
. This step will ignored if the
package already generated.
Return Type
ElixirSdk !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modName | String ! | - | No description provided |
Example
func (m *myModule) example(modName string) *ElixirSdk {
return dag.
ElixirSdk().
WithNewElixirPackage(modName)
}
withSdk() 🔗
Generate the SDK into the container.
Return Type
ElixirSdk !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(introspectionJson *File) *ElixirSdk {
return dag.
ElixirSdk().
WithSdk(introspectionJson)
}
withDaggerCodegen() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
ElixirSdk().
WithDaggerCodegen()
}
generateCode() 🔗
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
introspectionJson | File ! | - | No description provided |
Example
func (m *myModule) example(introspectionJson *File) *Directory {
return dag.
ElixirSdk().
GenerateCode(introspectionJson)
}