@valon-technologies/gestalt
Preparing search index...
services/external_credential
ExternalCredentials
Class ExternalCredentials
Index
Constructors
constructor
Methods
connect
create
Credential
create
Credential
Raw
upsert
Credential
upsert
Credential
Raw
get
Credential
get
Credential
Raw
list
Credentials
list
Credentials
Raw
delete
Credential
delete
Credential
Raw
validate
Credential
Config
validate
Credential
Config
Raw
resolve
Credential
resolve
Credential
Raw
exchange
Credential
exchange
Credential
Raw
Constructors
constructor
new
ExternalCredentials
(
transport
:
Transport
,
options
?:
{
timeoutMs
?:
number
}
,
)
:
ExternalCredentials
Parameters
transport
:
Transport
Optional
options
:
{
timeoutMs
?:
number
}
Returns
ExternalCredentials
Methods
Static
connect
connect
(
options
?:
{
name
?:
string
;
timeoutMs
?:
number
}
)
:
ExternalCredentials
Parameters
Optional
options
:
{
name
?:
string
;
timeoutMs
?:
number
}
Returns
ExternalCredentials
create
Credential
createCredential
(
credential
?:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
,
)
:
Promise
<
ExternalCredential
>
Parameters
Optional
credential
:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
Returns
Promise
<
ExternalCredential
>
create
Credential
Raw
createCredentialRaw
(
request
:
{
credential
?:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
;
}
,
)
:
Promise
<
ExternalCredential
>
Parameters
request
:
{
credential
?:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
;
}
Returns
Promise
<
ExternalCredential
>
upsert
Credential
upsertCredential
(
credential
?:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
,
)
:
Promise
<
ExternalCredential
>
Parameters
Optional
credential
:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
Returns
Promise
<
ExternalCredential
>
upsert
Credential
Raw
upsertCredentialRaw
(
request
:
{
credential
?:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
;
}
,
)
:
Promise
<
ExternalCredential
>
Parameters
request
:
{
credential
?:
{
id
?:
string
;
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
;
metadataJson
?:
string
;
createdAt
?:
Date
;
updatedAt
?:
Date
;
credential
?:
|
{
case
:
undefined
;
value
?:
undefined
}
|
{
case
:
"grant"
;
value
:
{
accessToken
?:
string
;
refreshToken
?:
string
;
scope
?:
string
;
expiresAt
?:
Date
;
lastRefreshedAt
?:
Date
;
refreshErrorCount
?:
number
;
}
;
}
|
{
case
:
"client"
;
value
:
{
clientId
?:
string
;
clientSecret
?:
string
;
clientSecretExpiresAt
?:
Date
;
}
;
}
|
{
case
:
"opaque"
;
value
:
{
fields
?:
{
[
key
:
string
]:
string
}
}
}
;
}
;
}
Returns
Promise
<
ExternalCredential
>
get
Credential
getCredential
(
subject
:
string
,
audience
:
string
,
qualifier
:
string
,
)
:
Promise
<
ExternalCredential
>
Parameters
subject
:
string
audience
:
string
qualifier
:
string
Returns
Promise
<
ExternalCredential
>
get
Credential
Raw
getCredentialRaw
(
request
:
{
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
}
,
)
:
Promise
<
ExternalCredential
>
Parameters
request
:
{
subject
?:
string
;
audience
?:
string
;
qualifier
?:
string
}
Returns
Promise
<
ExternalCredential
>
list
Credentials
listCredentials
(
subject
:
string
,
options
?:
{
audience
?:
string
}
,
)
:
Promise
<
ExternalCredential
[]
>
Parameters
subject
:
string
Optional
options
:
{
audience
?:
string
}
Returns
Promise
<
ExternalCredential
[]
>
list
Credentials
Raw
listCredentialsRaw
(
request
:
{
subject
?:
string
;
audience
?:
string
}
,
)
:
Promise
<
ListExternalCredentialsResponse
>
Parameters
request
:
{
subject
?:
string
;
audience
?:
string
}
Returns
Promise
<
ListExternalCredentialsResponse
>
delete
Credential
deleteCredential
(
id
:
string
)
:
Promise
<
void
>
Parameters
id
:
string
Returns
Promise
<
void
>
delete
Credential
Raw
deleteCredentialRaw
(
request
:
{
id
?:
string
}
)
:
Promise
<
void
>
Parameters
request
:
{
id
?:
string
}
Returns
Promise
<
void
>
validate
Credential
Config
validateCredentialConfig
(
provider
:
string
,
connection
:
string
,
connectionId
:
string
,
mode
:
string
,
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
,
)
:
Promise
<
void
>
Parameters
provider
:
string
connection
:
string
connectionId
:
string
mode
:
string
Optional
auth
:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
Returns
Promise
<
void
>
validate
Credential
Config
Raw
validateCredentialConfigRaw
(
request
:
{
provider
?:
string
;
connection
?:
string
;
connectionId
?:
string
;
mode
?:
string
;
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
;
connectionParams
?:
{
[
key
:
string
]:
string
}
;
}
,
)
:
Promise
<
void
>
Parameters
request
:
{
provider
?:
string
;
connection
?:
string
;
connectionId
?:
string
;
mode
?:
string
;
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
;
connectionParams
?:
{
[
key
:
string
]:
string
}
;
}
Returns
Promise
<
void
>
resolve
Credential
resolveCredential
(
provider
:
string
,
connection
:
string
,
connectionId
:
string
,
mode
:
string
,
credentialSubjectId
:
string
,
actorSubjectId
:
string
,
instance
:
string
,
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
,
)
:
Promise
<
ResolveExternalCredentialResponse
>
Parameters
provider
:
string
connection
:
string
connectionId
:
string
mode
:
string
credentialSubjectId
:
string
actorSubjectId
:
string
instance
:
string
Optional
auth
:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
Returns
Promise
<
ResolveExternalCredentialResponse
>
resolve
Credential
Raw
resolveCredentialRaw
(
request
:
{
provider
?:
string
;
connection
?:
string
;
connectionId
?:
string
;
mode
?:
string
;
credentialSubjectId
?:
string
;
actorSubjectId
?:
string
;
instance
?:
string
;
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
;
connectionParams
?:
{
[
key
:
string
]:
string
}
;
}
,
)
:
Promise
<
ResolveExternalCredentialResponse
>
Parameters
request
:
{
provider
?:
string
;
connection
?:
string
;
connectionId
?:
string
;
mode
?:
string
;
credentialSubjectId
?:
string
;
actorSubjectId
?:
string
;
instance
?:
string
;
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
;
connectionParams
?:
{
[
key
:
string
]:
string
}
;
}
Returns
Promise
<
ResolveExternalCredentialResponse
>
exchange
Credential
exchangeCredential
(
provider
:
string
,
connection
:
string
,
connectionId
:
string
,
credentialSubjectId
:
string
,
actorSubjectId
:
string
,
instance
:
string
,
credentialJson
:
string
,
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
,
)
:
Promise
<
ExternalCredentialTokenResponse
|
undefined
>
Parameters
provider
:
string
connection
:
string
connectionId
:
string
credentialSubjectId
:
string
actorSubjectId
:
string
instance
:
string
credentialJson
:
string
Optional
auth
:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
Returns
Promise
<
ExternalCredentialTokenResponse
|
undefined
>
exchange
Credential
Raw
exchangeCredentialRaw
(
request
:
{
provider
?:
string
;
connection
?:
string
;
connectionId
?:
string
;
credentialSubjectId
?:
string
;
actorSubjectId
?:
string
;
instance
?:
string
;
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
;
credentialJson
?:
string
;
connectionParams
?:
{
[
key
:
string
]:
string
}
;
}
,
)
:
Promise
<
ExchangeExternalCredentialResponse
>
Parameters
request
:
{
provider
?:
string
;
connection
?:
string
;
connectionId
?:
string
;
credentialSubjectId
?:
string
;
actorSubjectId
?:
string
;
instance
?:
string
;
auth
?:
{
type
?:
string
;
token
?:
string
;
tokenPrefix
?:
string
;
grantType
?:
string
;
tokenUrl
?:
string
;
clientId
?:
string
;
clientSecret
?:
string
;
clientAuth
?:
string
;
tokenExchange
?:
string
;
scopes
?:
string
[]
;
scopeParam
?:
string
;
scopeSeparator
?:
string
;
tokenParams
?:
{
[
key
:
string
]:
string
}
;
refreshParams
?:
{
[
key
:
string
]:
string
}
;
acceptHeader
?:
string
;
accessTokenPath
?:
string
;
tokenExchangeDrivers
?:
{
type
?:
string
;
targetPrincipal
?:
string
;
scopes
?:
string
[]
;
lifetimeSeconds
?:
number
;
endpoint
?:
string
;
params
?:
{
[
key
:
string
]:
string
}
;
}
[]
;
refreshToken
?:
string
;
}
;
credentialJson
?:
string
;
connectionParams
?:
{
[
key
:
string
]:
string
}
;
}
Returns
Promise
<
ExchangeExternalCredentialResponse
>
Settings
Member Visibility
Inherited
Theme
OS
Light
Dark
On This Page
Constructors
constructor
Methods
connect
create
Credential
create
Credential
Raw
upsert
Credential
upsert
Credential
Raw
get
Credential
get
Credential
Raw
list
Credentials
list
Credentials
Raw
delete
Credential
delete
Credential
Raw
validate
Credential
Config
validate
Credential
Config
Raw
resolve
Credential
resolve
Credential
Raw
exchange
Credential
exchange
Credential
Raw
@valon-technologies/gestalt
Loading...