Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,382 changes: 1,138 additions & 244 deletions api/wasm/cpp/proxy_wasm_intrinsics.pb.cc

Large diffs are not rendered by default.

774 changes: 769 additions & 5 deletions api/wasm/cpp/proxy_wasm_intrinsics.pb.h

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions api/wasm/cpp/proxy_wasm_intrinsics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,25 @@ message GrpcService {
google.protobuf.Any typed_config = 3;
}
}
message StsService {
string token_exchange_service_uri = 1;
string resource = 2;
string audience = 3;
string scope = 4;
string requested_token_type = 5;
string subject_token_path = 6;
string subject_token_type = 7;
string actor_token_path = 8;
string actor_token_type = 9;
}
oneof credential_specifier {
string access_token = 1;
google.protobuf.Empty google_compute_engine = 2;
string google_refresh_token = 3;
ServiceAccountJWTAccessCredentials service_account_jwt_access = 4;
GoogleIAMCredentials google_iam = 5;
MetadataCredentialsFromPlugin from_plugin = 6;
StsService sts_service = 7;
}
}
repeated CallCredentials call_credentials = 3;
Expand Down
Loading