Struct grpcio_sys::grpc_sts_credentials_options
source · #[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§
source§impl Clone for grpc_sts_credentials_options
impl Clone for grpc_sts_credentials_options
source§fn clone(&self) -> grpc_sts_credentials_options
fn clone(&self) -> grpc_sts_credentials_options
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more