Struct k8s_openapi::api::authentication::v1::TokenRequest [−][src]
pub struct TokenRequest {
pub metadata: ObjectMeta,
pub spec: TokenRequestSpec,
pub status: Option<TokenRequestStatus>,
}Expand description
TokenRequest requests a token for a given service account.
Fields
metadata: ObjectMetaspec: TokenRequestSpecstatus: Option<TokenRequestStatus>Implementations
pub fn create_namespaced_service_account_token(
name: &str,
namespace: &str,
body: &TokenRequest,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]
pub fn create_namespaced_service_account_token(
name: &str,
namespace: &str,
body: &TokenRequest,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]create token of a ServiceAccount
Use the returned crate::ResponseBody<crate::CreateResponse<Self>> constructor, or crate::CreateResponse<Self> directly, to parse the HTTP response.
Arguments
-
namename of the TokenRequest
-
namespaceobject name and auth scope, such as for teams and projects
-
body -
optionalOptional parameters. Use
Default::default()to not pass any.
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
type Ty = ObjectMeta
type Ty = ObjectMetaThe type of the metadata object.
Gets a reference to the metadata of this resource value.
Gets a mutable reference to the metadata of this resource value.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
The API version of the resource. This is a composite of Resource::GROUP and Resource::VERSION (eg "apiextensions.k8s.io/v1beta1")
or just the version for resources without a group (eg "v1"). Read more
The group of the resource, or the empty string if the resource doesn’t have a group.
The URL path segment used to construct URLs related to this resource. Read more
type Scope = SubResourceScope
type Scope = SubResourceScopeIndicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
Auto Trait Implementations
impl RefUnwindSafe for TokenRequestimpl Send for TokenRequestimpl Sync for TokenRequestimpl Unpin for TokenRequestimpl UnwindSafe for TokenRequestBlanket Implementations
Mutably borrows from an owned value. Read more