intrinsic.solutions.deployments.create_grpc_channel
![]() View source on GitHub |
Creates a gRPC channel to a deployed solution.
intrinsic.solutions.deployments.create_grpc_channel(
grpc_channel_or_hostport: Optional[Union[grpc.Channel, str]] = None,
*,
address: Optional[str] = None,
org: Optional[str] = None,
solution: Optional[str] = None,
cluster: Optional[str] = None
) -> grpc.Channel
Args | |
|---|---|
gRPC channel to the intrinsic box or a string of the form "host:port" to connect to (creates a channel with default parameters). | |
Connect directly to an address (e.g. localhost). Only one of [project, solution] and address is allowed. | |
Organization of the solution to connect to. | |
Id (not display name!) of the solution to connect to. | |
Name of cluster to connect to (instead of specifying 'solution'). | |
Returns | |
|---|---|
A gRPC channel |
