Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type OAuthAccessToken ¶
type OAuthAccessToken struct {
unversioned.TypeMeta `json:",inline"`
kapi.ObjectMeta `json:"metadata,omitempty"`
// ClientName references the client that created this token.
ClientName string `json:"clientName,omitempty" description:"references the client that created this token"`
// ExpiresIn is the seconds from CreationTime before this token expires.
ExpiresIn int64 `json:"expiresIn,omitempty" description:"is the seconds from creation time before this token expires"`
// Scopes is an array of the requested scopes.
Scopes []string `json:"scopes,omitempty" description:"list of requested scopes"`
// RedirectURI is the redirection associated with the token.
RedirectURI string `json:"redirectURI,omitempty" description:"redirection URI associated with the token"`
// UserName is the user name associated with this token
UserName string `json:"userName,omitempty" description:"user name associated with this token"`
// UserUID is the unique UID associated with this token
UserUID string `json:"userUID,omitempty" description:"unique UID associated with this token"`
// AuthorizeToken contains the token that authorized this token
AuthorizeToken string `json:"authorizeToken,omitempty" description:"contains the token that authorized this token"`
// RefreshToken is the value by which this token can be renewed. Can be blank.
RefreshToken string `json:"refreshToken,omitempty" description:"optional value by which this token can be renewed"`
}
func (*OAuthAccessToken) IsAnAPIObject ¶
func (*OAuthAccessToken) IsAnAPIObject()
type OAuthAccessTokenList ¶
type OAuthAccessTokenList struct {
unversioned.TypeMeta `json:",inline"`
unversioned.ListMeta `json:"metadata,omitempty"`
Items []OAuthAccessToken `json:"items" description:"list of oauth access tokens"`
}
func (*OAuthAccessTokenList) IsAnAPIObject ¶
func (*OAuthAccessTokenList) IsAnAPIObject()
type OAuthAuthorizeToken ¶
type OAuthAuthorizeToken struct {
unversioned.TypeMeta `json:",inline"`
kapi.ObjectMeta `json:"metadata,omitempty"`
// ClientName references the client that created this token.
ClientName string `json:"clientName,omitempty" description:"references the client that created this token"`
// ExpiresIn is the seconds from CreationTime before this token expires.
ExpiresIn int64 `json:"expiresIn,omitempty" description:"seconds from creation time before this token expires"`
// Scopes is an array of the requested scopes.
Scopes []string `json:"scopes,omitempty" description:"list of requested scopes"`
// RedirectURI is the redirection associated with the token.
RedirectURI string `json:"redirectURI,omitempty" description:"redirection URI associated with the token"`
// State data from request
State string `json:"state,omitempty" description:"state data from request"`
// UserName is the user name associated with this token
UserName string `json:"userName,omitempty" description:"user name associated with this token"`
// UserUID is the unique UID associated with this token. UserUID and UserName must both match
// for this token to be valid.
UserUID string `` /* 142-byte string literal not displayed */
}
func (*OAuthAuthorizeToken) IsAnAPIObject ¶
func (*OAuthAuthorizeToken) IsAnAPIObject()
type OAuthAuthorizeTokenList ¶
type OAuthAuthorizeTokenList struct {
unversioned.TypeMeta `json:",inline"`
unversioned.ListMeta `json:"metadata,omitempty"`
Items []OAuthAuthorizeToken `json:"items" description:"list of oauth authorization tokens"`
}
func (*OAuthAuthorizeTokenList) IsAnAPIObject ¶
func (*OAuthAuthorizeTokenList) IsAnAPIObject()
type OAuthClient ¶
type OAuthClient struct {
unversioned.TypeMeta `json:",inline"`
kapi.ObjectMeta `json:"metadata,omitempty"`
// Secret is the unique secret associated with a client
Secret string `json:"secret,omitempty" description:"unique secret associated with a client"`
// RespondWithChallenges indicates whether the client wants authentication needed responses made in the form of challenges instead of redirects
RespondWithChallenges bool `` /* 171-byte string literal not displayed */
// RedirectURIs is the valid redirection URIs associated with a client
RedirectURIs []string `json:"redirectURIs,omitempty" description:"valid redirection URIs associated with a client"`
}
func (*OAuthClient) IsAnAPIObject ¶
func (*OAuthClient) IsAnAPIObject()
type OAuthClientAuthorization ¶
type OAuthClientAuthorization struct {
unversioned.TypeMeta `json:",inline"`
kapi.ObjectMeta `json:"metadata,omitempty"`
// ClientName references the client that created this authorization
ClientName string `json:"clientName,omitempty" description:"references the client that created this authorization"`
// UserName is the user name that authorized this client
UserName string `json:"userName,omitempty" description:"user name that authorized this client"`
// UserUID is the unique UID associated with this authorization. UserUID and UserName
// must both match for this authorization to be valid.
UserUID string `` /* 157-byte string literal not displayed */
// Scopes is an array of the granted scopes.
Scopes []string `json:"scopes,omitempty" description:"list of granted scopes"`
}
func (*OAuthClientAuthorization) IsAnAPIObject ¶
func (*OAuthClientAuthorization) IsAnAPIObject()
type OAuthClientAuthorizationList ¶
type OAuthClientAuthorizationList struct {
unversioned.TypeMeta `json:",inline"`
unversioned.ListMeta `json:"metadata,omitempty"`
Items []OAuthClientAuthorization `json:"items" description:"list of oauth client authorizations"`
}
func (*OAuthClientAuthorizationList) IsAnAPIObject ¶
func (*OAuthClientAuthorizationList) IsAnAPIObject()
type OAuthClientList ¶
type OAuthClientList struct {
unversioned.TypeMeta `json:",inline"`
unversioned.ListMeta `json:"metadata,omitempty"`
Items []OAuthClient `json:"items" description:"list of oauth clients"`
}
func (*OAuthClientList) IsAnAPIObject ¶
func (*OAuthClientList) IsAnAPIObject()
Click to show internal directories.
Click to hide internal directories.