pulumi/sdk
Pat Gavlin 855f1fd1cd
Revise host mode. (#5317)
* Revise host mode.

The current implementation of host mode uses a `pulumi host` command and
an ad-hoc communication protocol between the engine and client to
connect a language host after the host has begun listening. The most
significant disadvantages of this approach are the communication
protocol (which currently requires the use of stdout), the host-specific
command, and the difficulty of accommodating the typical program-bound
lifetime for an update.

These changes reimplement host mode by adding engine support for
connecting to an existing language runtime service rather than launching
a plugin. This capability is provided via an engine-specific language
runtime, `client`, which accepts the address of the existing languge
runtime service as a runtime option. The CLI exposes this runtime via
the `--client` flag to the `up` and `preview` commands, which similarly
accepts the address of an existing language runtime service as an
argument. These changes also adjust the automation API to consume the
new host mode implementation.
2020-09-14 17:40:17 -07:00
..
dotnet Prevent concurrency issues when completing tasks (#5324) 2020-09-11 14:34:43 +02:00
go Revise host mode. (#5317) 2020-09-14 17:40:17 -07:00
nodejs Install plugin dependencies (#5353) 2020-09-14 13:54:26 -07:00
proto Initial support for remote component construction. (#5280) 2020-09-07 19:33:55 -07:00
python Install plugin dependencies (#5353) 2020-09-14 13:54:26 -07:00
go.mod Install plugin dependencies (#5353) 2020-09-14 13:54:26 -07:00
go.sum Install plugin dependencies (#5353) 2020-09-14 13:54:26 -07:00
README.md Updating .NET references 2020-04-27 12:42:11 -07:00

Pulumi Language SDKs

This directory contains the Pulumi SDKs for all supported languages.

Please see the respective READMEs for information about installing and using these libraries:

The language providers work by implementing gRPC interfaces defined in proto/.