a034ebfd27
* HCP link integration * update configure-git.yml * more OSS stuff * removing internal repos * adding a nil check * removing config test to be included in ENT only * updating hcp-sdk-go to v0.22.0 * remove Hostname and AuthURL link config params Co-authored-by: Chris Capurso <1036769+ccapurso@users.noreply.github.com>
21 lines
502 B
Go
21 lines
502 B
Go
package hcp_link
|
|
|
|
// SessionStatus is used to express the current status of the SCADA session.
|
|
type SessionStatus = string
|
|
|
|
const (
|
|
// Connected HCP link connection status when it is connected
|
|
Connected = SessionStatus("connected")
|
|
// Disconnected HCP link connection status when it is disconnected
|
|
Disconnected = SessionStatus("disconnected")
|
|
)
|
|
|
|
type WrappedHCPLinkVault struct {
|
|
HCPLinkVaultInterface
|
|
}
|
|
|
|
type HCPLinkVaultInterface interface {
|
|
Shutdown() error
|
|
GetScadaSessionStatus() string
|
|
}
|