Documentation ¶
Overview ¶
DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK ¶
DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
Index ¶
- func CopyResponse(resp *http.Response) *http.Response
- func CreateCacheKey(req *http.Request) string
- type Cache
- type GoCache
- type NoOpCache
- func (c NoOpCache) Clear()
- func (c NoOpCache) Delete(key string)
- func (c NoOpCache) Get(key string) *http.Response
- func (c NoOpCache) GetString(key string) string
- func (c NoOpCache) Has(key string) bool
- func (c NoOpCache) Set(key string, value *http.Response)
- func (c NoOpCache) SetString(key, value string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateCacheKey ¶
Types ¶
type Cache ¶
type Cache interface { Get(key string) *http.Response Set(key string, value *http.Response) GetString(key string) string SetString(key, value string) Delete(key string) Clear() Has(key string) bool }
func NewNoOpCache ¶
func NewNoOpCache() Cache
Click to show internal directories.
Click to hide internal directories.