api

package
v1.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 20, 2015 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type OAuthAccessToken

type OAuthAccessToken struct {
	kapi.TypeMeta
	kapi.ObjectMeta

	// ClientName references the client that created this token.
	ClientName string

	// ExpiresIn is the seconds from CreationTime before this token expires.
	ExpiresIn int64

	// Scopes is an array of the requested scopes.
	Scopes []string

	// RedirectURI is the redirection associated with the token.
	RedirectURI string

	// UserName is the user name associated with this token
	UserName string

	// UserUID is the unique UID associated with this token
	UserUID string

	// AuthorizeToken contains the token that authorized this token
	AuthorizeToken string

	// RefreshToken is the value by which this token can be renewed. Can be blank.
	RefreshToken string
}

func (*OAuthAccessToken) IsAnAPIObject

func (*OAuthAccessToken) IsAnAPIObject()

type OAuthAccessTokenList

type OAuthAccessTokenList struct {
	kapi.TypeMeta
	kapi.ListMeta
	Items []OAuthAccessToken
}

func (*OAuthAccessTokenList) IsAnAPIObject

func (*OAuthAccessTokenList) IsAnAPIObject()

type OAuthAuthorizeToken

type OAuthAuthorizeToken struct {
	kapi.TypeMeta
	kapi.ObjectMeta

	// ClientName references the client that created this token.
	ClientName string

	// ExpiresIn is the seconds from CreationTime before this token expires.
	ExpiresIn int64

	// Scopes is an array of the requested scopes.
	Scopes []string

	// RedirectURI is the redirection associated with the token.
	RedirectURI string

	// State data from request
	State string

	// UserName is the user name associated with this token
	UserName string

	// UserUID is the unique UID associated with this token. UserUID and UserName must both match
	// for this token to be valid.
	UserUID string
}

func (*OAuthAuthorizeToken) IsAnAPIObject

func (*OAuthAuthorizeToken) IsAnAPIObject()

type OAuthAuthorizeTokenList

type OAuthAuthorizeTokenList struct {
	kapi.TypeMeta
	kapi.ListMeta
	Items []OAuthAuthorizeToken
}

func (*OAuthAuthorizeTokenList) IsAnAPIObject

func (*OAuthAuthorizeTokenList) IsAnAPIObject()

type OAuthClient

type OAuthClient struct {
	kapi.TypeMeta
	kapi.ObjectMeta

	// Secret is the unique secret associated with a client
	Secret string

	// RespondWithChallenges indicates whether the client wants authentication needed responses made in the form of challenges instead of redirects
	RespondWithChallenges bool

	// RedirectURIs is the valid redirection URIs associated with a client
	RedirectURIs []string
}

func (*OAuthClient) IsAnAPIObject

func (*OAuthClient) IsAnAPIObject()

type OAuthClientAuthorization

type OAuthClientAuthorization struct {
	kapi.TypeMeta
	kapi.ObjectMeta

	// ClientName references the client that created this authorization
	ClientName string

	// UserName is the user name that authorized this client
	UserName string

	// UserUID is the unique UID associated with this authorization. UserUID and UserName
	// must both match for this authorization to be valid.
	UserUID string

	// Scopes is an array of the granted scopes.
	Scopes []string
}

func (*OAuthClientAuthorization) IsAnAPIObject

func (*OAuthClientAuthorization) IsAnAPIObject()

type OAuthClientAuthorizationList

type OAuthClientAuthorizationList struct {
	kapi.TypeMeta
	kapi.ListMeta
	Items []OAuthClientAuthorization
}

func (*OAuthClientAuthorizationList) IsAnAPIObject

func (*OAuthClientAuthorizationList) IsAnAPIObject()

type OAuthClientList

type OAuthClientList struct {
	kapi.TypeMeta
	kapi.ListMeta
	Items []OAuthClient
}

func (*OAuthClientList) IsAnAPIObject

func (*OAuthClientList) IsAnAPIObject()

Directories

Path Synopsis
Package validation has functions for validating the correctness of api objects and explaining what is wrong with them when they aren't valid.
Package validation has functions for validating the correctness of api objects and explaining what is wrong with them when they aren't valid.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL