Struct grpcio_sys::grpc_sts_credentials_options [−][src]
#[repr(C)]pub struct grpc_sts_credentials_options {
pub token_exchange_service_uri: *const c_char,
pub resource: *const c_char,
pub audience: *const c_char,
pub scope: *const c_char,
pub requested_token_type: *const c_char,
pub subject_token_path: *const c_char,
pub subject_token_type: *const c_char,
pub actor_token_path: *const c_char,
pub actor_token_type: *const c_char,
}
Expand description
Options for creating STS Oauth Token Exchange credentials following the IETF draft https://tools.ietf.org/html/draft-ietf-oauth-token-exchange-16. Optional fields may be set to NULL or empty string. It is the responsibility of the caller to ensure that the subject and actor tokens are refreshed on disk at the specified paths. This API is used for experimental purposes for now and may change in the future.
Fields
token_exchange_service_uri: *const c_char
resource: *const c_char
audience: *const c_char
scope: *const c_char
requested_token_type: *const c_char
subject_token_path: *const c_char
subject_token_type: *const c_char
actor_token_path: *const c_char
actor_token_type: *const c_char
Trait Implementations
Auto Trait Implementations
impl !Send for grpc_sts_credentials_options
impl !Sync for grpc_sts_credentials_options
impl Unpin for grpc_sts_credentials_options
impl UnwindSafe for grpc_sts_credentials_options
Blanket Implementations
Mutably borrows from an owned value. Read more