cool-sdk
No long description provided.
Installation
dagger install bitbucket.org/dagger-modules/dagger-test-modules-public/cool-sdk@ca6493ac2a5ed309c44565121b7bdd20a17b1abbEntrypoint
Return Type
CoolSdkExample
dagger -m bitbucket.org/dagger-modules/dagger-test-modules-public/cool-sdk@ca6493ac2a5ed309c44565121b7bdd20a17b1abb call \
func (m *MyModule) Example() *dagger.CoolSdk  {
	return dag.
			CoolSdk()
}@function
def example() -> dagger.CoolSdk:
	return (
		dag.cool_sdk()
	)@func()
example(): CoolSdk {
	return dag
		.coolSdk()
}Types
CoolSdk 🔗
moduleRuntime() 🔗
Return Type
Container !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| modSource | ModuleSource ! | - | No description provided | 
| introspectionJson | File ! | - | No description provided | 
Example
echo 'Custom types are not supported in shell examples'func (m *MyModule) Example(modSource *dagger.ModuleSource, introspectionJson *dagger.File) *dagger.Container  {
	return dag.
			CoolSdk().
			ModuleRuntime(modSource, introspectionJson)
}@function
def example(mod_source: dagger.ModuleSource, introspection_json: dagger.File) -> dagger.Container:
	return (
		dag.cool_sdk()
		.module_runtime(mod_source, introspection_json)
	)@func()
example(modSource: ModuleSource, introspectionJson: File): Container {
	return dag
		.coolSdk()
		.moduleRuntime(modSource, introspectionJson)
}codegen() 🔗
Return Type
GeneratedCode !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| modSource | ModuleSource ! | - | No description provided | 
| introspectionJson | File ! | - | No description provided | 
Example
echo 'Custom types are not supported in shell examples'func (m *MyModule) Example(modSource *dagger.ModuleSource, introspectionJson *dagger.File) *dagger.GeneratedCode  {
	return dag.
			CoolSdk().
			Codegen(modSource, introspectionJson)
}@function
def example(mod_source: dagger.ModuleSource, introspection_json: dagger.File) -> dagger.GeneratedCode:
	return (
		dag.cool_sdk()
		.codegen(mod_source, introspection_json)
	)@func()
example(modSource: ModuleSource, introspectionJson: File): GeneratedCode {
	return dag
		.coolSdk()
		.codegen(modSource, introspectionJson)
}requiredPaths() 🔗
Return Type
[String ! ] !Example
dagger -m bitbucket.org/dagger-modules/dagger-test-modules-public/cool-sdk@ca6493ac2a5ed309c44565121b7bdd20a17b1abb call \
 required-pathsfunc (m *MyModule) Example(ctx context.Context) []string  {
	return dag.
			CoolSdk().
			RequiredPaths(ctx)
}@function
async def example() -> List[str]:
	return await (
		dag.cool_sdk()
		.required_paths()
	)@func()
async example(): Promise<string[]> {
	return dag
		.coolSdk()
		.requiredPaths()
}