getLogs

suspend fun getLogs(argument: GetLogsPlainArgs): GetLogsResult

docker.getLogs provides logs from specific container

Return

A collection of values returned by getLogs.

Parameters

argument

A collection of arguments for invoking getLogs.


suspend fun getLogs(details: Boolean? = null, discardHeaders: Boolean? = null, follow: Boolean? = null, logsListStringEnabled: Boolean? = null, name: String, showStderr: Boolean? = null, showStdout: Boolean? = null, since: String? = null, tail: String? = null, timestamps: Boolean? = null, until: String? = null): GetLogsResult

Return

A collection of values returned by getLogs.

Parameters

details
discardHeaders

Discard headers that docker appends to each log entry

follow
logsListStringEnabled

If true populate computed value logs_list_string

name

The name of the Docker Container

showStderr
showStdout
since
tail
timestamps
until

See also


suspend fun getLogs(argument: suspend GetLogsPlainArgsBuilder.() -> Unit): GetLogsResult

Return

A collection of values returned by getLogs.

Parameters

argument

Builder for com.pulumi.docker.kotlin.inputs.GetLogsPlainArgs.

See also