intrinsic.solutions.deployments.connect
![]() View source on GitHub |
Connects to a deployed solution.
intrinsic.solutions.deployments.connect(
grpc_channel_or_hostport: Optional[Union[grpc.Channel, str]] = None,
*,
grpc_channel: Optional[grpc.Channel] = None,
address: Optional[str] = None,
org: Optional[str] = None,
solution: Optional[str] = None,
cluster: Optional[str] = None,
options: Optional[Dict[str, Any]] = None
) -> 'Solution'
Args | |
|---|---|
gRPC channel or address. Deprecated: Use explicit | |
gRPC channel to use for connection. | |
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'). | |
An optional Dict[str, Any] containing additional options. | |
Raises | |
|---|---|
if parameter combination is incorrect. | |
Returns | |
|---|---|
A fully initialized Solution object that represents the deployed solution. |
