Struct openshift_openapi::api::oauth::v1::OAuthAuthorizeToken[][src]

pub struct OAuthAuthorizeToken {
    pub client_name: Option<String>,
    pub code_challenge: Option<String>,
    pub code_challenge_method: Option<String>,
    pub expires_in: Option<i64>,
    pub metadata: ObjectMeta,
    pub redirect_uri: Option<String>,
    pub scopes: Option<Vec<String>>,
    pub state: Option<String>,
    pub user_name: Option<String>,
    pub user_uid: Option<String>,
}

OAuthAuthorizeToken describes an OAuth authorization token

Fields

client_name: Option<String>

ClientName references the client that created this token.

code_challenge: Option<String>

CodeChallenge is the optional code_challenge associated with this authorization code, as described in rfc7636

code_challenge_method: Option<String>

CodeChallengeMethod is the optional code_challenge_method associated with this authorization code, as described in rfc7636

expires_in: Option<i64>

ExpiresIn is the seconds from CreationTime before this token expires.

metadata: ObjectMeta

Standard object's metadata.

redirect_uri: Option<String>

RedirectURI is the redirection associated with the token.

scopes: Option<Vec<String>>

Scopes is an array of the requested scopes.

state: Option<String>

State data from request

user_name: Option<String>

UserName is the user name associated with this token

user_uid: Option<String>

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

Implementations

impl OAuthAuthorizeToken[src]

pub fn create_o_auth_authorize_token(
    body: &OAuthAuthorizeToken,
    optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>
[src]

create an OAuthAuthorizeToken

Use the returned k8s_openapi::ResponseBody<k8s_openapi::CreateResponse<Self>> constructor, or k8s_openapi::CreateResponse<Self> directly, to parse the HTTP response.

Arguments

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl OAuthAuthorizeToken[src]

pub fn delete_collection_o_auth_authorize_token(
    delete_optional: DeleteOptional<'_>,
    list_optional: ListOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteResponse<List<Self>>>), RequestError>
[src]

delete collection of OAuthAuthorizeToken

Use the returned k8s_openapi::ResponseBody<k8s_openapi::DeleteResponse<k8s_openapi::List<Self>>> constructor, or k8s_openapi::DeleteResponse<k8s_openapi::List<Self>> directly, to parse the HTTP response.

Arguments

  • delete_optional

    Delete options. Use Default::default() to not pass any.

  • list_optional

    List options. Use Default::default() to not pass any.

impl OAuthAuthorizeToken[src]

pub fn delete_o_auth_authorize_token(
    name: &str,
    optional: DeleteOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteResponse<Self>>), RequestError>
[src]

delete an OAuthAuthorizeToken

Use the returned k8s_openapi::ResponseBody<k8s_openapi::DeleteResponse<Self>> constructor, or k8s_openapi::DeleteResponse<Self> directly, to parse the HTTP response.

Arguments

  • name

    name of the OAuthAuthorizeToken

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl OAuthAuthorizeToken[src]

pub fn list_o_auth_authorize_token(
    optional: ListOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ListResponse<Self>>), RequestError>
[src]

list or watch objects of kind OAuthAuthorizeToken

This operation only supports listing all items of this type.

Use the returned k8s_openapi::ResponseBody<k8s_openapi::ListResponse<Self>> constructor, or k8s_openapi::ListResponse<Self> directly, to parse the HTTP response.

Arguments

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl OAuthAuthorizeToken[src]

pub fn patch_o_auth_authorize_token(
    name: &str,
    body: &Patch,
    optional: PatchOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<PatchResponse<Self>>), RequestError>
[src]

partially update the specified OAuthAuthorizeToken

Use the returned k8s_openapi::ResponseBody<k8s_openapi::PatchResponse<Self>> constructor, or k8s_openapi::PatchResponse<Self> directly, to parse the HTTP response.

Arguments

  • name

    name of the OAuthAuthorizeToken

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl OAuthAuthorizeToken[src]

pub fn read_o_auth_authorize_token(
    name: &str,
    optional: ReadOAuthAuthorizeTokenOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReadOAuthAuthorizeTokenResponse>), RequestError>
[src]

read the specified OAuthAuthorizeToken

Use the returned k8s_openapi::ResponseBody<ReadOAuthAuthorizeTokenResponse> constructor, or ReadOAuthAuthorizeTokenResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the OAuthAuthorizeToken

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl OAuthAuthorizeToken[src]

pub fn replace_o_auth_authorize_token(
    name: &str,
    body: &OAuthAuthorizeToken,
    optional: ReplaceOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReplaceResponse<Self>>), RequestError>
[src]

replace the specified OAuthAuthorizeToken

Use the returned k8s_openapi::ResponseBody<k8s_openapi::ReplaceResponse<Self>> constructor, or k8s_openapi::ReplaceResponse<Self> directly, to parse the HTTP response.

Arguments

  • name

    name of the OAuthAuthorizeToken

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl OAuthAuthorizeToken[src]

pub fn watch_o_auth_authorize_token(
    optional: WatchOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<WatchResponse<Self>>), RequestError>
[src]

list or watch objects of kind OAuthAuthorizeToken

This operation only supports watching one item, or a list of items, of this type for changes.

Use the returned k8s_openapi::ResponseBody<k8s_openapi::WatchResponse<Self>> constructor, or k8s_openapi::WatchResponse<Self> directly, to parse the HTTP response.

Arguments

  • optional

    Optional parameters. Use Default::default() to not pass any.

Trait Implementations

impl Clone for OAuthAuthorizeToken[src]

impl Debug for OAuthAuthorizeToken[src]

impl Default for OAuthAuthorizeToken[src]

impl<'de> Deserialize<'de> for OAuthAuthorizeToken[src]

impl ListableResource for OAuthAuthorizeToken[src]

impl Metadata for OAuthAuthorizeToken[src]

type Ty = ObjectMeta

The type of the metadata object.

impl PartialEq<OAuthAuthorizeToken> for OAuthAuthorizeToken[src]

impl Resource for OAuthAuthorizeToken[src]

impl Serialize for OAuthAuthorizeToken[src]

impl StructuralPartialEq for OAuthAuthorizeToken[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.