mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-22 11:28:50 -05:00
16 lines
430 B
Go
16 lines
430 B
Go
package proto
|
|
|
|
import (
|
|
sdkproto "github.com/turbot/steampipe-plugin-sdk/v5/grpc/proto"
|
|
)
|
|
|
|
func SupportedOperationsFromSdk(s *sdkproto.GetSupportedOperationsResponse) *SupportedOperations {
|
|
return &SupportedOperations{
|
|
QueryCache: s.QueryCache,
|
|
MultipleConnections: s.MultipleConnections,
|
|
MessageStream: s.MessageStream,
|
|
SetCacheOptions: s.SetCacheOptions,
|
|
RateLimiters: s.RateLimiters,
|
|
}
|
|
}
|